:root {
  --ink: #06111f;
  --ink-2: #0a1829;
  --ink-3: #10243a;
  --white: #ffffff;
  --soft: #f4f7fa;
  --soft-2: #e9eef3;
  --text: #0b1726;
  --muted: #657383;
  --muted-dark: rgba(255, 255, 255, 0.68);
  --line: rgba(11, 23, 38, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --green: #20c767;
  --green-dark: #13964b;
  --cyan: #00a6d6;
  --shadow: 0 28px 90px rgba(6, 17, 31, 0.18);
  --header: 82px;
  --wide: 1540px;
  --inner: 1240px;
  --page: clamp(22px, 4vw, 72px);
  --section: clamp(82px, 9vw, 132px);
}

/* Reset */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 28px);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #03110a;
  background: var(--green);
}

/* Accessibility */

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 9999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 17, 31, 0.08);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(100%, var(--wide));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page);
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  align-items: center;
  gap: 34px;
}

.brand {
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand img {
  width: auto;
  max-width: clamp(190px, 16vw, 260px);
  max-height: 66px;
  object-fit: contain;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links > a,
.dropdown-toggle {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  color: var(--text);
  background: transparent;
  transition: color 0.18s ease;
}

.nav-links > a::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.nav-links > a:hover,
.nav-links > a.active,
.dropdown-toggle:hover,
.dropdown.active .dropdown-toggle,
.dropdown:focus-within .dropdown-toggle {
  color: var(--ink);
}

.nav-links > a:hover::after,
.nav-links > a.active::after,
.dropdown-toggle:hover::after,
.dropdown.active .dropdown-toggle::after,
.dropdown:focus-within .dropdown-toggle::after {
  transform: scaleX(1);
}

.dropdown {
  position: relative;
}

.dropdown::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 16px;
}

.dropdown-toggle span {
  color: var(--muted);
  font-size: 0.78rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -18px;
  min-width: 290px;
  padding: 12px;
  border: 1px solid rgba(6, 17, 31, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(6, 17, 31, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 14px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 680;
  border-bottom: 1px solid rgba(6, 17, 31, 0.06);
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.dropdown-menu a::after {
  content: "→";
  color: var(--green-dark);
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.dropdown-menu a:hover {
  color: var(--green-dark);
}

.dropdown-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(6, 17, 31, 0.22);
  background: transparent;
  font-weight: 750;
}

.nav-cta:hover {
  color: var(--white) !important;
  background: var(--ink);
  border-color: var(--ink);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  justify-self: end;
  border: 1px solid rgba(6, 17, 31, 0.14);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Shared */

.section {
  width: min(100%, var(--inner));
  margin: 0 auto;
  padding: var(--section) 22px;
}

.section-label,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label::before,
.kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 920px;
  margin-top: 22px;
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  font-weight: 740;
}

h2 {
  font-size: clamp(2rem, 3.15vw, 3.55rem);
  font-weight: 720;
}

h3 {
  font-size: clamp(1.05rem, 1.3vw, 1.32rem);
  font-weight: 760;
}

p {
  color: var(--muted);
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  color: inherit;
  font-size: 0.94rem;
  font-weight: 760;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(6, 17, 31, 0.14);
}

.btn-light:hover {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 780;
}

.text-link::after {
  content: "→";
  color: var(--green-dark);
  transition: transform 0.18s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 31, 0.94) 0%, rgba(6, 17, 31, 0.78) 42%, rgba(6, 17, 31, 0.38) 100%),
    linear-gradient(0deg, rgba(6, 17, 31, 0.74), rgba(6, 17, 31, 0.1));
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--wide));
  min-height: calc(100vh - var(--header));
  margin: 0 auto;
  padding: clamp(90px, 9vw, 150px) var(--page);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: 48px;
}

.hero__lead {
  max-width: 690px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.62;
}

.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__panel {
  padding: 28px;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.panel-number {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  line-height: 0.9;
  font-weight: 760;
  letter-spacing: -0.06em;
}

.hero__panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 650;
}

/* Signal Strip */

.signal-strip {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 2 * var(--page)), var(--wide));
  margin: -54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
}

.signal-strip div {
  min-height: 118px;
  padding: 26px 28px;
  border-right: 1px solid rgba(6, 17, 31, 0.1);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signal-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 760;
}

/* Intro */

.intro {
  padding-top: clamp(110px, 11vw, 170px);
}

.intro__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.6fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.intro__headline h2 {
  max-width: 840px;
}

.intro__text p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

/* Services */

.services {
  padding-top: 0;
}

.section-top {
  max-width: 860px;
  margin-bottom: 46px;
}

.section-top h2 {
  margin-top: 20px;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-auto-rows: 305px;
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.feature-card--large {
  grid-row: span 2;
}

.feature-card a {
  position: relative;
  min-height: 100%;
  display: block;
  color: var(--white);
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.001);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.feature-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 31, 0.04), rgba(6, 17, 31, 0.84)),
    linear-gradient(90deg, rgba(6, 17, 31, 0.45), transparent 64%);
}

.feature-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.08);
}

.feature-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.feature-card__content span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card__content h3 {
  max-width: 420px;
  color: var(--white);
  font-size: clamp(1.25rem, 1.65vw, 1.85rem);
}

.feature-card__content p {
  max-width: 520px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.58;
}

/* Dark Showcase */

.dark-showcase {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.dark-showcase__media {
  position: absolute;
  inset: 0;
}

.dark-showcase__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 31, 0.94), rgba(6, 17, 31, 0.58), rgba(6, 17, 31, 0.32)),
    linear-gradient(0deg, rgba(6, 17, 31, 0.76), transparent);
}

.dark-showcase__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--wide));
  min-height: 650px;
  margin: 0 auto;
  padding: var(--section) var(--page);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dark-showcase__content h2 {
  max-width: 760px;
  margin-top: 22px;
}

.dark-showcase__content p:not(.section-label) {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.68;
}

/* Operators */

.operator-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.operator-item {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.operator-item:hover {
  background: var(--soft);
}

.operator-item span {
  display: block;
  margin-bottom: 46px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.operator-item h3 {
  margin-bottom: 16px;
  color: var(--ink);
}

.operator-item p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

/* Process */

.process {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0%, rgba(32, 199, 103, 0.16), transparent 34%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
}

.process__inner {
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding: var(--section) var(--page);
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 7vw, 110px);
}

.process__copy h2 {
  margin-top: 22px;
  max-width: 560px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.process__steps article {
  min-height: 240px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.process__steps span {
  display: block;
  margin-bottom: 44px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.process__steps h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.process__steps p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
  line-height: 1.62;
}

/* Insight */

.insight {
  padding-top: 0;
}

.insight__box {
  padding: clamp(34px, 6vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(16, 36, 58, 0.96)),
    radial-gradient(circle at top right, rgba(32, 199, 103, 0.2), transparent 34%);
}

.insight__box h2 {
  max-width: 980px;
  margin-top: 22px;
  font-size: clamp(1.9rem, 3vw, 3.25rem);
}

.insight__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.insight .btn-primary {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.insight .btn-primary:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

/* Contact */

.contact-section {
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding: 0 var(--page) var(--section);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.68fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: start;
}

.contact-copy {
  padding-top: 14px;
}

.contact-copy h2 {
  margin-top: 22px;
  max-width: 650px;
}

.contact-copy p:not(.section-label) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.contact-box {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.contact-box strong {
  color: var(--ink);
}

.contact-box span,
.contact-box a {
  color: var(--muted);
}

.contact-box a:hover {
  color: var(--green-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 40px);
  background: var(--soft);
  border: 1px solid rgba(6, 17, 31, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(6, 17, 31, 0.14);
  outline: none;
  color: var(--text);
  background: var(--white);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(32, 199, 103, 0.12);
}

.privacy-check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 4px;
  accent-color: var(--green-dark);
}

.privacy-check a {
  color: var(--green-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-check a:hover {
  color: var(--ink);
}

.form-message {
  min-height: 22px;
  color: var(--green-dark);
  font-weight: 750;
}

/* Footer */

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(160px, 0.5fr));
  gap: clamp(32px, 5vw, 82px);
  padding: clamp(52px, 7vw, 86px) var(--page) 34px;
  color: var(--white);
  background: var(--ink);
}

.footer-main {
  max-width: 560px;
}

.footer-logo img {
  width: min(100%, 260px);
  height: auto;
  margin-bottom: 26px;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.72;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 780;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
  line-height: 1.55;
}

.footer-column a:hover {
  color: var(--green);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 34px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--green);
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 1180px) {
  .navbar {
    grid-template-columns: minmax(210px, 285px) 1fr;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.86rem;
  }

  .service-layout {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .operator-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__inner {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  :root {
    --header: 76px;
  }

  .site-header {
    height: var(--header);
  }

  .navbar {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    max-width: 190px;
    max-height: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header);
    max-height: calc(100vh - var(--header));
    overflow-y: auto;
    padding: 22px var(--page) 32px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(6, 17, 31, 0.08);
    box-shadow: 0 28px 80px rgba(6, 17, 31, 0.18);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links > a,
  .dropdown-toggle,
  .nav-cta {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(6, 17, 31, 0.08);
  }

  .nav-links > a::after,
  .dropdown-toggle::after {
    display: none;
  }

  .dropdown::before {
    display: none;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 10px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    background: transparent;
  }

  .dropdown.active .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding-left: 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero__panel {
    max-width: 380px;
  }

  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    width: 100%;
  }

  .signal-strip div:nth-child(2) {
    border-right: 0;
  }

  .intro__grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-layout {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --page: 20px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .hero__inner {
    padding-top: 82px;
    padding-bottom: 58px;
  }

  .hero__actions,
  .insight__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(6, 17, 31, 0.1);
  }

  .operator-list {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

/* Logo-Feinschliff Header + Footer */

:root {
  --header: 92px;
}

.navbar {
  grid-template-columns: minmax(260px, 360px) 1fr;
}

.brand img {
  max-width: clamp(240px, 20vw, 340px);
  max-height: 78px;
}

.footer-logo img {
  width: min(100%, 150px);
  height: auto;
  margin-bottom: 20px;
}

@media (max-width: 920px) {
  :root {
    --header: 82px;
  }

  .brand img {
    max-width: 220px;
    max-height: 64px;
  }

  .footer-logo img {
    width: 130px;
  }
}

@media (max-width: 640px) {
  .brand img {
    max-width: 205px;
    max-height: 60px;
  }

  .footer-logo img {
    width: 120px;
  }
}

/* =========================================================
   MOBILE FIX: verhindert abgeschnittene Überschriften/Texte
   ========================================================= */

@media (max-width: 768px) {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  section,
  article,
  div {
    min-width: 0;
  }

  .hero,
  .dguv-hero,
  .thermo-hero,
  .network-hero,
  .quality-hero,
  .protection-hero,
  .ups-hero,
  .about-hero,
  .faq-hero,
  .career-hero,
  .legal-hero,
  .bayreuth-hero {
    overflow: visible !important;
  }

  .hero__inner,
  .dguv-hero__inner,
  .thermo-hero__inner,
  .network-hero__inner,
  .quality-hero__inner,
  .protection-hero__inner,
  .ups-hero__inner,
  .about-hero__inner,
  .faq-hero__inner,
  .career-hero__inner,
  .legal-hero__inner,
  .bayreuth-hero__inner {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    padding-top: 52px !important;
    padding-bottom: 56px !important;
    overflow: visible !important;
  }

  h1,
  .hero h1,
  .dguv-hero h1,
  .thermo-hero h1,
  .network-hero h1,
  .quality-hero h1,
  .protection-hero h1,
  .ups-hero h1,
  .about-hero h1,
  .faq-hero h1,
  .career-hero h1,
  .legal-hero h1,
  .bayreuth-hero h1 {
    max-width: 100% !important;
    font-size: clamp(2rem, 9vw, 2.85rem) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.035em !important;
    overflow: visible !important;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  h2 {
    max-width: 100% !important;
    font-size: clamp(1.55rem, 7vw, 2.25rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.03em !important;
    overflow: visible !important;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  h3 {
    max-width: 100% !important;
    line-height: 1.28 !important;
    overflow: visible !important;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  p,
  li,
  a,
  span,
  strong {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero__lead,
  .dguv-hero__lead,
  .thermo-hero__lead,
  .network-hero__lead,
  .quality-hero__lead,
  .protection-hero__lead,
  .ups-hero__lead,
  .about-hero__lead,
  .faq-hero__lead,
  .career-hero__lead,
  .bayreuth-hero__lead {
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.68 !important;
    overflow: visible !important;
  }

  .section-label {
    line-height: 1.35 !important;
    white-space: normal !important;
  }

  .btn,
  .button,
  .hero__actions,
  .dguv-hero__actions,
  .thermo-hero__actions,
  .network-hero__actions,
  .quality-hero__actions,
  .protection-hero__actions,
  .ups-hero__actions,
  .about-hero__actions,
  .faq-hero__actions,
  .career-hero__actions,
  .bayreuth-hero__actions {
    max-width: 100%;
  }

  img,
  video,
  svg {
    max-width: 100%;
    height: auto;
  }

  .thermo-main-image,
  .ups-main-image,
  .protection-main-image,
  .founder-image,
  .bayreuth-image-card,
  .network-main-panel,
  .quality-visual-main,
  .dguv-action-panel,
  .faq-hero-card,
  .career-job-card {
    max-width: 100% !important;
    min-width: 0 !important;
  }
}