/* =============================================
   NOLVARIDOS - Global Stylesheet
   Design: Retro Modern | BEM Naming
   ============================================= */


:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE8DF;
  --mustard: #C8952A;
  --mustard-light: #E8B84B;
  --mustard-pale: rgba(200,149,42,0.1);
  --terracotta: #C4603A;
  --olive: #6B7A3A;
  --olive-light: #8A9B4E;
  --dusty-rose: #C4867A;
  --charcoal: #2C2416;
  --charcoal-mid: #3E3425;
  --warm-brown: #5C4A2A;
  --warm-brown-light: #7A6040;
  --nav-bg: rgba(245, 240, 232, 0.85);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  --shadow-xs: 0 1px 3px rgba(44,36,22,0.08);
  --shadow-sm: 0 2px 8px rgba(44,36,22,0.1), 0 1px 3px rgba(44,36,22,0.06);
  --shadow-md: 0 4px 16px rgba(44,36,22,0.12), 0 2px 6px rgba(44,36,22,0.08);
  --shadow-lg: 0 8px 32px rgba(44,36,22,0.15), 0 4px 12px rgba(44,36,22,0.08);
  --shadow-xl: 0 16px 48px rgba(44,36,22,0.18), 0 6px 20px rgba(44,36,22,0.1);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-md: 1.125rem;
  --font-lg: 1.25rem;
  --font-xl: 1.5rem;
  --font-2xl: 2rem;
  --font-3xl: clamp(2rem, 4vw, 3rem);
  --font-hero: clamp(2.8rem, 5vw, 4.5rem);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--mustard);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--terracotta);
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background: var(--cream-dark);
}

.section--dark {
  background: var(--charcoal);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: var(--font-3xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section__intro {
  font-size: var(--font-md);
  color: var(--warm-brown);
  max-width: 560px;
  line-height: 1.7;
}

.section__body {
  font-size: var(--font-base);
  color: var(--warm-brown);
  line-height: 1.75;
  margin-bottom: 1rem;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Instrument Sans', sans-serif;
  min-height: 44px;
  letter-spacing: -0.01em;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: var(--mustard);
  border-color: var(--mustard);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.nav--scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,149,42,0.15);
  box-shadow: 0 2px 24px rgba(44,36,22,0.08);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav__logo-img {
  width: 36px;
  height: 36px;
}

.nav__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mustard);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}

.nav__link:hover {
  color: var(--mustard);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link--active {
  color: var(--mustard);
}

.nav__link--active::after {
  transform: scaleX(1);
}

.nav__cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav__cta:hover {
  background: var(--mustard) !important;
  color: var(--charcoal) !important;
  transform: translateY(-1px);
}

.nav__cta::after {
  display: none !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
  border-radius: 2px;
}


.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  pointer-events: none;
  overflow: hidden;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  clip-path: circle(0px at calc(100% - 2.5rem) 2.5rem);
  transition: clip-path 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.is-open {
  pointer-events: all;
}

.mobile-menu.is-open .mobile-menu__overlay {
  clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem);
}

.mobile-menu__nav {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
}

.mobile-menu.is-open .mobile-menu__nav {
  opacity: 1;
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.mobile-menu__close:hover {
  color: var(--mustard);
}

.mobile-menu__list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu__link {
  display: block;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
  min-height: 44px;
  line-height: 1.2;
}

.mobile-menu__link:hover {
  color: var(--mustard);
}

.mobile-menu__link--cta {
  background: var(--mustard);
  color: var(--charcoal) !important;
  border-radius: var(--radius-md);
  margin-top: 0.75rem;
  font-size: 1.1rem;
}

.mobile-menu__link--cta:hover {
  background: var(--mustard-light);
  color: var(--charcoal) !important;
}


.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,149,42,0.12);
  border: 1px solid rgba(200,149,42,0.3);
  color: var(--mustard);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: var(--font-hero);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: normal;
  color: var(--terracotta);
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--warm-brown);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 2px 8px rgba(44,36,22,0.05);
  position: relative;
}

.hero__img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero__float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--cream);
  border: 1px solid rgba(200,149,42,0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__float-card-dot {
  width: 10px;
  height: 10px;
  background: var(--olive);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(107,122,58,0.2);
}

.hero__float-card-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}


.intro-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-section__img-col {
  position: relative;
}

.intro-section__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-section__img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.intro-section__accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 120px;
  height: 120px;
  background: var(--mustard-pale);
  border: 2px solid rgba(200,149,42,0.3);
  border-radius: var(--radius-lg);
  z-index: -1;
}


.features-section__header {
  margin-bottom: 3rem;
}

.features-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,36,22,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card--large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.feature-card--large .feature-card__img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
}

.feature-card--large .feature-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card--accent {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.feature-card--accent .feature-card__title {
  color: var(--cream);
}

.feature-card--accent .feature-card__body {
  color: rgba(245,240,232,0.75);
}

.feature-card--accent .feature-card__icon-wrap {
  background: rgba(200,149,42,0.2);
  color: var(--mustard);
}

.feature-card__icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--mustard-pale);
  color: var(--mustard);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.feature-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

.feature-card__body {
  font-size: 0.9rem;
  color: var(--warm-brown);
  line-height: 1.7;
}


.checklist-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.checklist-section::before {
  content: '';
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 300px;
  height: 300px;
  background: rgba(200,149,42,0.06);
  border-radius: 50%;
}

.checklist-section__inner {
  position: relative;
  z-index: 1;
}

.checklist-section__header {
  margin-bottom: 3rem;
}

.checklist-section__header .section__label {
  color: var(--mustard);
}

.checklist-section__header .section__title {
  color: var(--cream);
}

.checklist-section__header .section__body {
  color: rgba(245,240,232,0.65);
}

.checklist-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

.checklist__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.5;
}

.checklist__icon {
  width: 22px;
  height: 22px;
  background: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: white;
  margin-top: 0.1rem;
}


.process-section__header {
  margin-bottom: 3rem;
}

.process-section__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  position: relative;
}

.process-step__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--mustard);
  line-height: 1;
  opacity: 0.4;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.process-step__content {
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,36,22,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.process-step__content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.process-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.process-step__body {
  font-size: 0.9rem;
  color: var(--warm-brown);
  line-height: 1.65;
}

.process-step__connector {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--mustard), var(--terracotta));
  margin-top: 4.5rem;
  flex-shrink: 0;
}


.visual-break-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.visual-break-section__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.visual-break-section__img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.visual-break-section__badge {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  background: var(--olive);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}


.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem;
  background: var(--cream-dark);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(200,149,42,0.15);
}

.section--dark .cta-section__inner {
  background: rgba(255,255,255,0.05);
  border-color: rgba(245,240,232,0.1);
}

.cta-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.cta-section__body {
  font-size: 1rem;
  color: var(--warm-brown);
  line-height: 1.6;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}


.footer {
  background: var(--charcoal);
  color: var(--cream);
}

.footer__top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}

.footer__top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer__logo span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer__address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.8;
}

.footer__address a {
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__address a:hover {
  color: var(--mustard);
}

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 1.25rem;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav-link {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer__nav-link:hover {
  color: var(--mustard);
  padding-left: 4px;
}

.footer__bottom {
  padding: 1.5rem 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__copy,
.footer__legal-note {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.35);
}

.footer--minimal {
  margin-top: auto;
  background: transparent;
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-grid__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-grid__img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}


.values-section__header {
  margin-bottom: 2.5rem;
}

.values-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(44,36,22,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  width: 44px;
  height: 44px;
  background: var(--mustard-pale);
  color: var(--mustard);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.value-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.value-card__body {
  font-size: 0.9rem;
  color: var(--warm-brown);
  line-height: 1.65;
}


.expertise-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.expertise-section__img-col img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.expertise-section__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag {
  background: rgba(107,122,58,0.12);
  color: var(--olive);
  border: 1px solid rgba(107,122,58,0.25);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}


.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  position: relative;
}

.timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline__number {
  width: 48px;
  height: 48px;
  background: var(--mustard);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline__line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--mustard), rgba(200,149,42,0.1));
  margin: 0.5rem 0;
  min-height: 40px;
}

.timeline__content {
  padding-bottom: 2.5rem;
}

.timeline__card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,36,22,0.06);
  transition: box-shadow 0.25s ease;
}

.timeline__card:hover {
  box-shadow: var(--shadow-md);
}

.timeline__icon {
  width: 40px;
  height: 40px;
  background: var(--mustard-pale);
  color: var(--mustard);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.timeline__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.timeline__body {
  font-size: 0.9rem;
  color: var(--warm-brown);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.timeline__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--mustard);
  font-weight: 600;
}


.faq-section__header {
  margin-bottom: 2.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.faq-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(44,36,22,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq-card__q {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.faq-card__a {
  font-size: 0.88rem;
  color: var(--warm-brown);
  line-height: 1.7;
}


.kpi-intro {
  margin-bottom: 1rem;
}

.kpi-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.kpi-category {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(44,36,22,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kpi-category:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.kpi-category__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.kpi-category__icon {
  width: 44px;
  height: 44px;
  background: var(--mustard-pale);
  color: var(--mustard);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.kpi-category__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
}

.kpi-category__desc {
  font-size: 0.88rem;
  color: var(--warm-brown);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.kpi-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.kpi-list__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--warm-brown);
}

.kpi-list__item i {
  color: var(--olive);
  font-size: 0.5rem;
  flex-shrink: 0;
}

.kpi-visual-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.kpi-visual-section__img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}


.contact-hero {
  padding: 9rem 0 4rem;
}

.contact-hero__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.contact-hero__sub {
  font-size: 1.1rem;
  color: var(--warm-brown);
  line-height: 1.7;
  max-width: 520px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(44,36,22,0.06);
}

.contact-form-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group__required {
  color: var(--terracotta);
}

.form-group__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(44,36,22,0.15);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: 'Instrument Sans', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  min-height: 44px;
}

.form-group__input:focus {
  border-color: var(--mustard);
  box-shadow: 0 0 0 3px rgba(200,149,42,0.12);
}

.form-group__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235C4A2A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group__textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-group__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--warm-brown);
  cursor: pointer;
  line-height: 1.5;
}

.form-group__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--mustard);
  cursor: pointer;
}

.form-group__link {
  color: var(--mustard);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.contact-info-card,
.contact-tips-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(44,36,22,0.06);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.contact-info-card__title,
.contact-tips-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-tips-card__title i {
  color: var(--mustard);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item__icon {
  width: 36px;
  height: 36px;
  background: var(--mustard-pale);
  color: var(--mustard);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.contact-info-item p {
  font-size: 0.88rem;
  color: var(--warm-brown);
  line-height: 1.5;
}

.contact-info-item a {
  color: var(--warm-brown);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-item a:hover {
  color: var(--mustard);
}

.contact-tips-card__intro {
  font-size: 0.85rem;
  color: var(--warm-brown);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-tips-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--warm-brown);
  line-height: 1.5;
}

.contact-tips-list__num {
  width: 22px;
  height: 22px;
  background: var(--mustard);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.map-section__wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}


.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
}

.thanks-card {
  background: rgba(245,240,232,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.thanks-card__icon {
  font-size: 3rem;
  color: var(--olive-light);
  margin-bottom: 1.5rem;
}

.thanks-card__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.thanks-card__text {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.thanks-card__btn {
  background: var(--mustard);
  color: var(--charcoal);
  border-color: var(--mustard);
}

.thanks-card__btn:hover {
  background: var(--mustard-light);
  border-color: var(--mustard-light);
  color: var(--charcoal);
}


.legal-main {
  padding-top: 6rem;
  min-height: 100vh;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 6rem;
}

.legal-sidebar__toc-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid rgba(44,36,22,0.1);
  margin-bottom: 0.5rem;
}

.legal-sidebar__nav {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,36,22,0.06);
}

.legal-sidebar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-sidebar__link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  color: var(--warm-brown);
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.legal-sidebar__link:hover,
.legal-sidebar__link.is-active {
  background: var(--mustard-pale);
  color: var(--mustard);
  padding-left: 1rem;
}

.legal-content__header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(44,36,22,0.1);
}

.legal-content__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.legal-content__date {
  font-size: 0.85rem;
  color: var(--warm-brown-light);
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(44,36,22,0.06);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.legal-section p {
  font-size: 0.92rem;
  color: var(--warm-brown);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.legal-list li {
  font-size: 0.9rem;
  color: var(--warm-brown);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.legal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--mustard);
}


.cookie-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(44,36,22,0.1);
  margin: 1rem 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cookie-table th {
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(44,36,22,0.06);
  color: var(--warm-brown);
  vertical-align: top;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table tr:nth-child(even) td {
  background: rgba(245,240,232,0.5);
}

.cookie-table code {
  background: rgba(200,149,42,0.1);
  color: var(--terracotta);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.85em;
}


.impressum-main {
  padding: 7rem 0 6rem;
}

.impressum-content {
  max-width: 860px;
}

.impressum-content__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.impressum-content__sub {
  font-size: 0.88rem;
  color: var(--warm-brown-light);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(44,36,22,0.1);
}

.impressum-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(44,36,22,0.06);
}

.impressum-section:last-child {
  border-bottom: none;
}

.impressum-section__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.impressum-section p {
  font-size: 0.92rem;
  color: var(--warm-brown);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.impressum-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(44,36,22,0.1);
}

.impressum-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(44,36,22,0.06);
  vertical-align: top;
  line-height: 1.6;
}

.impressum-table td:first-child {
  font-weight: 600;
  color: var(--charcoal);
  width: 220px;
  background: rgba(245,240,232,0.6);
  font-size: 0.83rem;
}

.impressum-table td:last-child {
  color: var(--warm-brown);
}

.impressum-table tr:last-child td {
  border-bottom: none;
}


.page-hero {
  padding: 9rem 2rem 5rem;
  text-align: center;
}

.page-hero__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.page-hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}


.collab-intro {
  padding-bottom: 0;
}


.cookie-pill {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(245,240,232,0.1);
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: calc(100vw - 2rem);
}

.cookie-pill.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(2rem);
}

.cookie-pill__text {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.8);
  white-space: normal;
}

.cookie-pill__text a {
  color: var(--mustard);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-pill__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-pill__btn {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Instrument Sans', sans-serif;
  transition: all 0.2s ease;
  min-height: 36px;
}

.cookie-pill__btn--accept {
  background: var(--mustard);
  color: var(--charcoal);
}

.cookie-pill__btn--accept:hover {
  background: var(--mustard-light);
  transform: scale(1.04);
}

.cookie-pill__btn--settings {
  background: rgba(245,240,232,0.1);
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.15);
}

.cookie-pill__btn--settings:hover {
  background: rgba(245,240,232,0.18);
}


.cookie-modal {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  z-index: 9999;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(245,240,232,0.1);
  width: min(520px, calc(100vw - 2rem));
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cookie-modal.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) scale(1);
}

.cookie-modal__header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(245,240,232,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}

.cookie-modal__close {
  background: none;
  border: none;
  color: rgba(245,240,232,0.5);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
  transition: color 0.2s ease;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal__close:hover {
  color: var(--cream);
}

.cookie-modal__body {
  padding: 1.25rem 1.5rem;
}

.cookie-modal__desc {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.cookie-modal__category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.06);
}

.cookie-modal__category:last-of-type {
  border-bottom: none;
}

.cookie-modal__cat-info {}

.cookie-modal__cat-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.cookie-modal__cat-desc {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.5;
}

.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: rgba(245,240,232,0.15);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--mustard);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal__footer {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-modal__btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Instrument Sans', sans-serif;
  transition: all 0.2s ease;
  min-height: 40px;
}

.cookie-modal__btn--save {
  background: var(--mustard);
  color: var(--charcoal);
}

.cookie-modal__btn--save:hover {
  background: var(--mustard-light);
}

.cookie-modal__btn--all {
  background: rgba(245,240,232,0.08);
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.15);
}

.cookie-modal__btn--all:hover {
  background: rgba(245,240,232,0.14);
}


@media (max-width: 1100px) {
  .features-section__grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card--large {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .feature-card--large .feature-card__img-wrap {
    height: 220px;
  }
  .footer__top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .nav__list {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    gap: 2.5rem;
    min-height: auto;
  }
  .hero__visual {
    order: -1;
  }
  .hero__img-wrap img {
    height: 320px;
  }
  .hero__float-card {
    bottom: -1rem;
    left: -0.5rem;
  }
  .intro-section__grid,
  .about-grid,
  .expertise-section__inner,
  .visual-break-section__grid,
  .kpi-visual-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .intro-section__img-wrap img,
  .about-grid__img-wrap img,
  .expertise-section__img-col img {
    height: 300px;
  }
  .visual-break-section__img-wrap img {
    height: 280px;
  }
  .visual-break-section__badge {
    right: 1rem;
  }
  .features-section__grid {
    grid-template-columns: 1fr;
  }
  .feature-card--large {
    grid-column: span 1;
    display: block;
  }
  .values-section__grid,
  .kpi-categories,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .checklist-section__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .process-section__steps {
    flex-direction: column;
    gap: 1.5rem;
  }
  .process-step__connector {
    width: 2px;
    height: 2rem;
    margin: 0 auto;
  }
  .cta-section__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .legal-sidebar {
    position: static;
  }
  .legal-sidebar__toc-toggle {
    display: flex;
  }
  .legal-sidebar__nav {
    display: none;
  }
  .legal-sidebar__nav.is-open {
    display: block;
  }
  .footer__top-inner {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 4rem 0;
  }
  .page-hero {
    padding: 7rem 1.5rem 3.5rem;
  }
  .timeline__item {
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.25rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .footer__top-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form-card {
    padding: 1.5rem;
  }
  .cta-section__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-section__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cookie-pill {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius-xl);
    white-space: normal;
    gap: 0.75rem;
  }
  .cookie-pill__actions {
    width: 100%;
  }
  .cookie-pill__btn {
    flex: 1;
    justify-content: center;
  }
  .impressum-table td:first-child {
    width: 140px;
    font-size: 0.78rem;
  }
  .thanks-card {
    padding: 2rem 1.5rem;
  }
  .kpi-visual-section__img-wrap img {
    height: 240px;
  }
}