:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-soft: #f8fafc;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-text-soft: #64748b;
  --color-border: #e2e8f0;
  --color-border-strong: #cbd5e1;
  --color-primary: #2dc4c7;
  --color-primary-dark: #1ea8ac;
  --color-primary-soft: rgba(45, 196, 199, 0.1);
  --section-divider-color: rgba(45, 196, 199, 0.34);
  --color-success-bg: #ecfdf5;
  --color-success-text: #166534;
  --color-error-bg: #fef2f2;
  --color-error-text: #b91c1c;
  --color-on-primary: #ffffff;
  --color-header-border: rgba(226, 232, 240, 0.8);
  --color-header-bg: rgba(255, 255, 255, 0.92);
  --color-lang-active-border: rgba(45, 196, 199, 0.4);
  --color-lang-active-shadow: 0 0 0 3px rgba(45, 196, 199, 0.08);
  --color-flag-border: rgba(15, 23, 42, 0.12);
  --color-flag-shadow: inset 0 0 0 0.02rem rgba(255, 255, 255, 0.35);
  --color-primary-hover-border: rgba(45, 196, 199, 0.45);
  --color-primary-soft-hover: rgba(45, 196, 199, 0.08);
  --color-hero-border: #f1f5f9;
  --color-hero-bg: linear-gradient(180deg, #f9feff 0%, #ffffff 72%);
  --hero-backdrop:
    radial-gradient(circle at top right, rgba(45, 196, 199, 0.16), transparent 30%),
    radial-gradient(circle at top left, rgba(45, 196, 199, 0.1), transparent 28%);
  --color-heading-strong: #020617;
  --color-card-accent-border: rgba(45, 196, 199, 0.2);
  --color-surface-overlay: rgba(255, 255, 255, 0.95);
  --color-focus-ring: 0 0 0 3px rgba(15, 23, 42, 0.06);
  --color-footer-bg: #edf4f7;
  --font-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 24px 70px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 26px rgba(15, 23, 42, 0.05);
  --container: 1280px;
  --container-narrow: 1100px;
  --radius-lg: 2rem;
  --radius-md: 1.75rem;
  --transition: 180ms ease;
}

html[data-theme="dark"] {
  --color-bg: #0b1220;
  --color-surface: #111a2d;
  --color-surface-soft: #172238;
  --color-text: #e6edf8;
  --color-text-muted: #c0cde0;
  --color-text-soft: #9eafc8;
  --color-border: #28374f;
  --color-border-strong: #374a67;
  --color-primary-soft: rgba(45, 196, 199, 0.18);
  --section-divider-color: rgba(45, 196, 199, 0.46);
  --color-success-bg: #052e21;
  --color-success-text: #86efac;
  --color-error-bg: #3f0f16;
  --color-error-text: #fca5a5;
  --color-header-border: rgba(55, 74, 103, 0.88);
  --color-header-bg: rgba(11, 18, 32, 0.9);
  --color-lang-active-border: rgba(45, 196, 199, 0.55);
  --color-lang-active-shadow: 0 0 0 3px rgba(45, 196, 199, 0.22);
  --color-flag-border: rgba(203, 213, 225, 0.35);
  --color-flag-shadow: inset 0 0 0 0.02rem rgba(15, 23, 42, 0.55);
  --color-primary-hover-border: rgba(45, 196, 199, 0.72);
  --color-primary-soft-hover: rgba(45, 196, 199, 0.2);
  --color-hero-border: #1f2c43;
  --color-hero-bg: linear-gradient(180deg, #111b2f 0%, #0b1220 72%);
  --hero-backdrop:
    radial-gradient(circle at top right, rgba(45, 196, 199, 0.22), transparent 35%),
    radial-gradient(circle at top left, rgba(45, 196, 199, 0.14), transparent 33%);
  --color-heading-strong: #f8fbff;
  --color-card-accent-border: rgba(45, 196, 199, 0.34);
  --color-surface-overlay: rgba(17, 26, 45, 0.94);
  --color-focus-ring: 0 0 0 3px rgba(45, 196, 199, 0.28);
  --color-footer-bg: #111b2c;
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.48);
  --shadow-card: 0 12px 26px rgba(0, 0, 0, 0.36);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
textarea { resize: vertical; }

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

.container { width: min(100% - 3rem, var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-header-border);
  background: var(--color-header-bg);
  backdrop-filter: blur(16px);
}

.header-bar,
.header-actions,
.main-nav,
.hero__actions,
.footer-bar,
.footer-links { display: flex; align-items: center; }

.header-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 1.25rem;
  padding: 0.3rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 0.25rem 0.5rem;
}
.brand__logo { width: 86.4px; height: auto; }

.main-nav {
  grid-column: 2;
  justify-self: center;
  gap: 2rem;
}
.main-nav a,
.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color var(--transition);
}

.main-nav a:hover,
.footer-links a:hover,
.back-link:hover { color: var(--color-primary); }

.header-actions {
  grid-column: 3;
  justify-self: end;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.45rem;
}

.lang-switch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  flex: 0 0 auto;
  min-width: 3.55rem;
  height: 2.05rem;
  padding: 0 0.62rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  transition: border-color var(--transition), transform var(--transition), opacity var(--transition);
}

.lang-switch__item:hover {
  transform: translateY(-1px);
  border-color: var(--color-border-strong);
}

.lang-switch__item--inactive {
  opacity: 0.72;
}

.lang-switch__item--active {
  border-color: var(--color-lang-active-border);
  box-shadow: var(--color-lang-active-shadow);
}

.lang-switch__flag {
  position: relative;
  width: 1.22rem;
  height: 0.82rem;
  border-radius: 0.14rem;
  border: 1px solid var(--color-flag-border);
  box-shadow: var(--color-flag-shadow);
  overflow: hidden;
}

.lang-switch__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-text-muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.lang-switch__flag--de {
  background: linear-gradient(180deg, #111111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.lang-switch__flag--en {
  background:
    repeating-linear-gradient(
      180deg,
      #b22234 0 7.69%,
      #ffffff 7.69% 15.38%
    );
}

.lang-switch__flag--en::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 46%;
  height: 54%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 0.045rem, transparent 0.05rem) 0.09rem 0.08rem / 0.18rem 0.16rem repeat,
    #3c3b6e;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover { transform: translateY(-1px); }
.button--small { padding: 0.8rem 1.25rem; font-size: 0.88rem; }
.button--primary { background: var(--color-primary); color: var(--color-on-primary); }
.button--primary:hover { background: var(--color-primary-dark); }
.button--secondary { border-color: var(--color-border-strong); background: var(--color-surface); color: var(--color-text-muted); }
.button--secondary:hover { border-color: var(--color-primary-hover-border); color: var(--color-primary); }

.icon-inline { width: 1rem; height: 1rem; }
.icon-inline--left { transform: rotate(180deg); }

.lang-toggle,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.lang-toggle:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--color-border-strong);
  color: var(--color-primary);
}

.lang-toggle:focus-visible,
.theme-toggle:focus-visible {
  outline: none;
  box-shadow: var(--color-lang-active-shadow);
}

.theme-toggle__icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
}

.theme-toggle__icon svg {
  width: 100%;
  height: 100%;
}

.theme-toggle__icon--light {
  display: none;
}

.theme-toggle__icon--dark {
  display: inline-flex;
}

html[data-theme="dark"] .theme-toggle__icon--dark {
  display: none;
}

html[data-theme="dark"] .theme-toggle__icon--light {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  background: var(--color-surface);
  color: var(--color-text-muted);
}

.menu-toggle__icon { width: 1.25rem; height: 1.25rem; }
.menu-toggle__icon--close { display: none; }
.menu-open .menu-toggle__icon--open { display: none; }
.menu-open .menu-toggle__icon--close { display: block; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.mobile-menu__inner { display: grid; gap: 0.5rem; padding: 1rem 0 1.25rem; }
.mobile-menu a:not(.button) {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.mobile-menu a:not(.button):hover { background: var(--color-primary-soft-hover); color: var(--color-primary); }
.menu-open .mobile-menu { display: block; }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-hero-border);
  background: var(--color-hero-bg);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background: var(--hero-backdrop);
}

.hero__content { position: relative; padding: 5rem 0 7rem; }
.hero__intro { width: min(100%, 54rem); margin: 0 auto; text-align: center; }

.display-title {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.65rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--color-heading-strong);
}

.hero__lead,
.section-heading p {
  margin: 1.75rem auto 0;
  max-width: 52rem;
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--color-text-soft);
}

.hero__actions { justify-content: center; gap: 1rem; margin-top: 2.5rem; }

.hero-card {
  width: min(100%, 64rem);
  margin: 4rem auto 0;
  padding: 2rem;
  border: 1px solid var(--color-card-accent-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface-overlay);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-card__primary,
.info-tile,
.card,
.feature-card,
.benefit-card,
.contact-links a,
.contact-links div,
.legal-card {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.hero-card__primary { padding: 1.75rem; border-radius: 1.5rem; text-align: center; }
.hero-card__primary h2 { margin: 0.75rem 0 0; font-size: 1.9rem; line-height: 1.2; }
.hero-card__primary p { margin: 0.75rem auto 0; max-width: 44rem; font-size: 0.95rem; line-height: 1.9; color: var(--color-text-soft); }

.hero-card__grid,
.card-grid,
.pill-grid,
.tag-list,
.stacked-cards,
.check-list,
.contact-links,
.form-grid,
.product-card__benefits { display: grid; }

.hero-card__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; margin-top: 1.25rem; }
.info-tile { padding: 1.5rem; border-radius: 1.5rem; text-align: center; }
.info-tile h3 { margin: 0; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.12em; }
.info-tile p { margin: 0.75rem 0 0; font-size: 0.95rem; line-height: 1.9; color: var(--color-text-soft); }

.content-section {
  position: relative;
  padding: 5rem 0 6rem;
  scroll-margin-top: 5rem;
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 4rem), var(--container-narrow));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(45, 196, 199, 0) 0%,
    var(--section-divider-color) 14%,
    rgba(45, 196, 199, 0.48) 50%,
    var(--section-divider-color) 86%,
    rgba(45, 196, 199, 0) 100%
  );
}
.section-heading { width: min(100%, 64rem); margin: 0 auto; text-align: center; }

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-label {
  margin: 0 0 0.8rem;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.legal-card h1 { margin: 0; font-size: clamp(2rem, 4vw, 2.5rem); line-height: 1.12; }

.card-grid { gap: 1.5rem; width: min(100%, var(--container-narrow)); margin: 3rem auto 0; }
.card-grid--services { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid--tech,
.card-grid--career { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.card-grid--services .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.1rem 2rem 1.85rem;
}

.card-grid--services .card .icon-badge {
  margin-bottom: 1.1rem;
}

.card-grid--services .card h3 {
  max-width: 18ch;
}

.card-grid--services .card p {
  width: 100%;
  margin-top: 0.95rem;
}

.card h3, .product-card h3, .feature-card h4, .benefit-card h4 { margin: 0; font-size: 1.25rem; line-height: 1.35; }
.card p, .feature-card p, .benefit-card p, .contact-info__text, .form-meta, .form-note, .legal-text { color: var(--color-text-soft); }
.card p { margin: 0.85rem 0 0; font-size: 0.95rem; line-height: 1.9; }

.icon-badge,
.contact-links__icon,
.list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon-badge { width: 3rem; height: 3rem; border-radius: 1rem; background: var(--color-primary-soft); color: var(--color-primary); }
.icon-badge svg, .contact-links__icon svg, .list-icon svg { width: 1.35rem; height: 1.35rem; }

.pill-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; width: min(100%, var(--container-narrow)); margin: 3rem auto 0; }
.project-pill {
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  background: var(--color-surface-soft);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.tag-list { grid-template-columns: repeat(auto-fit, minmax(120px, max-content)); gap: 0.65rem; margin-top: 1rem; }
.tag { display: inline-flex; align-items: center; padding: 0.45rem 0.8rem; border: 1px solid var(--color-border); border-radius: 999px; background: var(--color-surface-soft); font-size: 0.9rem; color: var(--color-text-muted); }

.product-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: min(100%, var(--container-narrow));
  margin: 3rem auto 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.product-card__main { padding: 2.5rem; border-right: 1px solid var(--color-border); }
.product-card__aside { padding: 2.5rem; background: var(--color-surface-soft); }
.rich-text p { margin: 1rem 0 0; font-size: 1rem; line-height: 2; color: var(--color-text-soft); }
.stacked-cards { gap: 1rem; margin-top: 1.25rem; }
.feature-card, .benefit-card { padding: 1.25rem; border-radius: 1rem; }
.feature-card p, .benefit-card p { margin: 0.5rem 0 0; font-size: 0.92rem; line-height: 1.7; }
.product-card__benefits {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--color-border);
}

.product-card__cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2.5rem 2rem;
}

.product-card__cta p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.product-card__cta .button {
  white-space: nowrap;
}

.check-list { list-style: none; margin: 1.25rem 0 0; padding: 0; gap: 0.8rem; }
.check-list li { display: flex; gap: 0.75rem; font-size: 0.95rem; line-height: 1.8; color: var(--color-text-soft); }
.list-icon { color: var(--color-primary); margin-top: 0.2rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  width: min(100%, var(--container-narrow));
  margin: 3rem auto 0;
}

.contact-info { padding: 2rem; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface-soft); }
.contact-links { gap: 1rem; margin-top: 1.5rem; }
.contact-links a, .contact-links div { display: flex; align-items: center; gap: 0.85rem; padding: 1rem; border-radius: 1rem; }
.contact-links a:hover { border-color: var(--color-border-strong); }
.contact-links__icon { color: var(--color-primary); }

.contact-form-card {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
}

.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.form-grid label { display: block; }
.form-grid span { display: block; margin-bottom: 0.5rem; font-size: 0.94rem; font-weight: 600; color: var(--color-text-muted); }
.form-grid__full { grid-column: 1 / -1; }

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--color-text);
  box-shadow: var(--color-focus-ring);
}

.form-note { margin: 1rem 0 0; font-size: 0.79rem; line-height: 1.7; }
.form-note a { color: var(--color-text-muted); text-decoration: underline; text-underline-offset: 0.16em; }
.contact-form-card .button[type="submit"] {
  align-self: flex-start;
  margin-top: 1rem;
}

.form-meta { margin: 1rem 0 0; font-size: 0.75rem; line-height: 1.7; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-alert {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-alert--success { background: var(--color-success-bg); color: var(--color-success-text); }
.form-alert--error { background: var(--color-error-bg); color: var(--color-error-text); }

.legal-page { min-height: 70vh; background: var(--color-surface); }
.legal-page__content { width: min(100% - 3rem, 64rem); padding: 2rem 0 5rem; }
.back-link { display: flex; align-items: center; justify-content: center; gap: 0.25rem; width: fit-content; margin: 0 auto 2rem; color: var(--color-primary); font-size: 0.92rem; font-weight: 700; }
.legal-card { padding: 2rem 2.25rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.legal-text { margin-top: 1.75rem; font-size: 0.95rem; line-height: 1.85; }
.legal-text--small { font-size: 0.9rem; }
.legal-card > h1,
.legal-text h1 {
  color: var(--color-heading-strong);
  font-weight: 700;
}

.legal-text h2,
.legal-text h3,
.legal-text h4 {
  color: var(--color-text);
  font-weight: 700;
}

.legal-text h1 { margin: 0 0 1.5rem; font-size: clamp(2rem, 4vw, 2.5rem); line-height: 1.12; }
.legal-text h2 { margin: 1.9rem 0 0.95rem; font-size: 1.75rem; line-height: 1.2; }
.legal-text h3 { margin: 1.4rem 0 0.75rem; font-size: 1.15rem; line-height: 1.35; }
.legal-text h4 { margin: 1.15rem 0 0.55rem; font-size: 1rem; line-height: 1.45; }

.legal-text p,
.legal-text ul,
.legal-text li {
  color: var(--color-text-soft);
}

.legal-text p,
.legal-text ul {
  margin: 0 0 1rem;
}

.legal-text ul {
  padding-left: 1.25rem;
}

.legal-text a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--color-border);
  background: #f2fbfc;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 10rem;
  background:
    linear-gradient(0deg, #f9feff 0%, #ffffff 72%),
    radial-gradient(circle at bottom right, rgba(45, 196, 199, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(45, 196, 199, 0.10), transparent 28%);
  pointer-events: none;
}

.footer-bar {
  position: relative;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

.footer-title { color: var(--color-text); font-weight: 600; }
.footer-links { flex-wrap: wrap; gap: 1.25rem; }

/* Footer reset to original state */
.site-footer {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--color-border);
}

.site-footer::before {
  content: none;
}

.footer-bar {
  position: static;
  padding: 1.0rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease var(--reveal-delay, 0s), transform 500ms ease var(--reveal-delay, 0s);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .eyebrow { font-size: 0.875rem; }
  .card-grid--services,
  .card-grid--tech,
  .card-grid--career,
  .pill-grid,
  .product-card__benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card,
  .contact-layout { grid-template-columns: 1fr; }
  .product-card__main { border-right: 0; border-bottom: 1px solid var(--color-border); }
  .product-card__cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 820px) {
  .eyebrow { font-size: 0.8125rem; }
  .header-bar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .main-nav,
  .header-contact { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .brand__logo { width: 73.8px; }
  .hero__content, .content-section { padding-top: 4rem; padding-bottom: 4rem; }
  .legal-page__content { padding: 2rem 0 4rem; }
  .hero__actions, .footer-bar { flex-direction: column; align-items: flex-start; }
  .hero-card__grid, .form-grid, .product-card__benefits, .card-grid--services, .card-grid--tech, .card-grid--career, .pill-grid { grid-template-columns: 1fr; }
  .hero-card, .product-card__main, .product-card__aside, .product-card__benefits, .contact-info, .contact-form-card, .legal-card { padding: 1.5rem; }
  .hero-card__primary h2 {
    font-size: 1.55rem;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .product-card__cta { padding: 0 1.5rem 1.5rem; }
}

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