/* ============================================
   POBEXI ZAPOPE – MAIN STYLESHEET
   Design Concept: Stacked Paper
   ============================================ */


:root {
  
  --c-bg: #f9f7f4;
  --c-bg-warm: #f4f1ec;
  --c-bg-paper: #fdfcfa;
  --c-nav-bg: #1c1a17;
  --c-nav-text: #f0ece4;
  --c-nav-link-hover: #d4b896;

  --c-primary: #3d6b52;
  --c-primary-dark: #2e5140;
  --c-primary-light: #e8f0eb;
  --c-secondary: #7a5c3e;
  --c-accent: #c8854a;
  --c-accent-light: #f5e8d8;

  --c-text: #2a2520;
  --c-text-mid: #4a4540;
  --c-text-muted: #7a7570;
  --c-text-light: #a8a4a0;

  --c-border: #e2ddd7;
  --c-border-strong: #c8c0b5;

  
  --grad-hero: linear-gradient(135deg, #3d6b52 0%, #5a8a6a 40%, #c8854a 100%);
  --grad-cta: linear-gradient(135deg, #2e5140 0%, #3d6b52 50%, #7a5c3e 100%);
  --grad-accent: linear-gradient(135deg, #c8854a, #e8a870);
  --grad-label: linear-gradient(90deg, #3d6b52, #5a8a6a);

  
  --shadow-xs: 0 1px 2px rgba(44,38,30,0.06);
  --shadow-sm: 0 2px 6px rgba(44,38,30,0.08), 0 1px 2px rgba(44,38,30,0.04);
  --shadow-md: 0 4px 16px rgba(44,38,30,0.10), 0 2px 4px rgba(44,38,30,0.06);
  --shadow-lg: 0 8px 32px rgba(44,38,30,0.12), 0 4px 8px rgba(44,38,30,0.07), 0 1px 2px rgba(44,38,30,0.04);
  --shadow-xl: 0 16px 48px rgba(44,38,30,0.14), 0 8px 16px rgba(44,38,30,0.08), 0 2px 4px rgba(44,38,30,0.04);
  --shadow-paper: 0 -2px 0 rgba(44,38,30,0.04), 0 -6px 20px rgba(44,38,30,0.07), 0 -1px 0 rgba(200,180,160,0.3);
  --shadow-inset: inset 0 1px 3px rgba(44,38,30,0.08);

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

  
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 999px;

  
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  
  --t-fast: 150ms ease;
  --t-mid: 250ms ease;
  --t-slow: 400ms ease;
  --t-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover { color: var(--c-primary-dark); }

ul { list-style: none; }

address { font-style: normal; }


h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--c-text);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--c-text-mid); max-width: 65ch; }


.u-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.u-hidden { display: none !important; }
.u-text-center { text-align: center; }
.u-full-width { width: 100%; }


.c-cursor-trail {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--grad-accent);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, opacity 0.3s ease;
  box-shadow: 0 0 8px rgba(200, 133, 74, 0.5), 0 0 20px rgba(200, 133, 74, 0.2);
  mix-blend-mode: multiply;
}


.c-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--c-nav-bg);
  transform: translateY(-100%);
  transition: transform var(--t-slow);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.c-nav.is-visible {
  transform: translateY(0);
}

.c-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem clamp(1rem, 4vw, 2.5rem);
  max-width: 1200px;
  margin-inline: auto;
}

.c-nav__logo img {
  transition: opacity var(--t-fast);
}
.c-nav__logo:hover img { opacity: 0.85; }

.c-nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.c-nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(240,236,228,0.8);
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--t-fast);
}

.c-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--c-nav-link-hover);
  transform: scaleX(0);
  transition: transform var(--t-mid);
  transform-origin: left;
}

.c-nav__link:hover,
.c-nav__link.is-active {
  color: var(--c-nav-link-hover);
}

.c-nav__link:hover::after,
.c-nav__link.is-active::after {
  transform: scaleX(1);
}

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

.c-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-nav-text);
  border-radius: 2px;
  transition: all var(--t-mid);
}


.c-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
}

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

.c-mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,26,23,0.6);
  opacity: 0;
  transition: opacity var(--t-slow);
  z-index: 940;
  pointer-events: none;
  backdrop-filter: blur(2px);
}

.c-mobile-menu__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.c-mobile-menu__sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--c-bg-paper);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  padding: 1rem 1.5rem 2.5rem;
  transform: translateY(100%);
  transition: transform var(--t-slow) cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 960;
  box-shadow: 0 -8px 40px rgba(28,26,23,0.25);
}

.c-mobile-menu__sheet.is-open {
  transform: translateY(0);
}

.c-mobile-menu__handle {
  width: 36px;
  height: 4px;
  background: var(--c-border-strong);
  border-radius: var(--r-full);
  margin: 0 auto 1.5rem;
}

.c-mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.c-mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--r-lg);
  color: var(--c-text);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
  min-height: 52px;
}

.c-mobile-menu__link i {
  width: 20px;
  color: var(--c-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.c-mobile-menu__link:hover {
  background: var(--c-primary-light);
  color: var(--c-primary-dark);
}


.s-paper-layer {
  position: relative;
  background: var(--c-bg-paper);
  box-shadow: var(--shadow-paper);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  margin-top: -12px;
  padding-top: calc(var(--sp-xl) + 12px);
  padding-bottom: var(--sp-xl);
}

.s-paper-layer:nth-child(even) {
  background: var(--c-bg-warm);
}


.c-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-light);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  margin-bottom: 0.875rem;
}

.c-label--light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
}


.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-mid);
  white-space: nowrap;
  min-height: 48px;
  justify-content: center;
}

.c-btn:active { transform: scale(0.97); }

.c-btn--primary {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  box-shadow: 0 4px 14px rgba(61,107,82,0.3);
}

.c-btn--primary:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(61,107,82,0.4);
  transform: translateY(-1px);
}

.c-btn--secondary {
  background: var(--c-accent-light);
  color: var(--c-secondary);
  border-color: var(--c-accent-light);
}

.c-btn--secondary:hover {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(200,133,74,0.35);
}

.c-btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border-strong);
}

.c-btn--ghost:hover {
  background: var(--c-bg-warm);
  border-color: var(--c-text-mid);
  color: var(--c-text);
  transform: translateY(-1px);
}

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

.c-btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(61,107,82,0.3);
}

.c-btn--cta {
  background: #fff;
  color: var(--c-primary-dark);
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

.c-btn--cta:hover {
  background: var(--c-primary-light);
  color: var(--c-primary-dark);
  border-color: var(--c-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}


.c-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: gap var(--t-fast), color var(--t-fast);
}

.c-link-arrow:hover {
  gap: 0.75rem;
  color: var(--c-primary-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.s-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--c-bg);
  position: relative;
}

.s-hero__top {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 8rem clamp(1rem, 4vw, 2.5rem) 2.5rem;
}

.s-hero__top-inner {
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

.s-hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
}

.s-hero__heading {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-text);
  max-width: 16ch;
}

.s-hero__image-strip {
  position: relative;
  height: clamp(200px, 30vh, 380px);
  overflow: hidden;
  flex-shrink: 0;
}

.s-hero__strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.s-hero__strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(249,247,244,0.4) 0%,
    transparent 30%,
    transparent 70%,
    rgba(249,247,244,0.4) 100%
  );
}

.s-hero__bottom {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 4rem;
}

.s-hero__bottom-inner {
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.s-hero__description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-text-mid);
  max-width: 50ch;
  line-height: 1.65;
}

.s-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

#heroSentinel {
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.s-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.s-intro__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.s-intro__heading {
  margin-bottom: 0.5rem;
}

.s-intro__text p { max-width: 48ch; }


.c-stacked-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.c-stacked-card__back,
.c-stacked-card__mid {
  position: absolute;
  border-radius: var(--r-xl);
  background: var(--c-bg-warm);
}

.c-stacked-card__back {
  inset: 0;
  transform: translate(12px, 12px) rotate(3deg);
  background: var(--c-primary-light);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}

.c-stacked-card__mid {
  inset: 0;
  transform: translate(6px, 6px) rotate(1.5deg);
  background: var(--c-accent-light);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}

.c-stacked-card__front {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}

.c-stacked-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.c-stacked-card:hover .c-stacked-card__img {
  transform: scale(1.03);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.s-features__header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.s-features__sub {
  margin-inline: auto;
  font-size: 1.05rem;
}

.s-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-md);
}

.c-feature-card {
  background: var(--c-bg-paper);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  transition: all var(--t-mid);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.c-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-label);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
}

.c-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-primary-light);
}

.c-feature-card:hover::before {
  transform: scaleX(1);
}

.c-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: var(--c-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  color: var(--c-primary);
  font-size: 1.25rem;
  transition: background var(--t-fast), color var(--t-fast);
}

.c-feature-card:hover .c-feature-card__icon {
  background: var(--c-primary);
  color: #fff;
}

.c-feature-card__title {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.c-feature-card__text {
  font-size: 0.9375rem;
  max-width: none;
}

/* ============================================
   TOPICS SECTION
   ============================================ */
.s-topics__header {
  margin-bottom: var(--sp-xl);
}

.s-topics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-md);
}

.c-topic-card {
  background: var(--c-bg-paper);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  transition: all var(--t-mid);
}

.c-topic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.c-topic-card__img-wrap {
  height: 200px;
  overflow: hidden;
}

.c-topic-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.c-topic-card:hover .c-topic-card__img {
  transform: scale(1.06);
}

.c-topic-card__body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-topic-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent);
}

.c-topic-card__title {
  font-size: 1.125rem;
}

.c-topic-card__text {
  font-size: 0.9375rem;
  max-width: none;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.s-process__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.s-process__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  position: sticky;
  top: calc(var(--sp-xl) + 80px);
}

.s-process__heading { margin-bottom: 0.5rem; }
.s-process__text p { max-width: 46ch; }

.s-process__steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.c-step {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  padding: var(--sp-md);
  background: var(--c-bg-paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-mid);
}

.c-step:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.c-step__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary-light);
  min-width: 3rem;
  line-height: 1;
  background: var(--grad-label);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c-step__title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.c-step__text {
  font-size: 0.9375rem;
  max-width: none;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.s-about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.s-about-preview__img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--c-border);
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.s-about-preview__visual:hover .s-about-preview__img {
  transform: scale(1.02);
}

.s-about-preview__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.s-about-preview__heading { margin-bottom: 0.25rem; }
.s-about-preview__content p { max-width: 46ch; }

/* ============================================
   CTA SECTION
   ============================================ */
.s-cta {
  background: var(--grad-cta) !important;
  position: relative;
  overflow: hidden;
}

.s-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.s-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
}

.s-cta__heading {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.s-cta__text {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 48ch;
  text-align: center;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.s-faq__header {
  margin-bottom: var(--sp-xl);
}

.s-faq__list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.c-faq-item {
  background: var(--c-bg-paper);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-mid), border-color var(--t-mid);
}

.c-faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-border-strong);
}

.c-faq-item.is-open {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-md);
}

.c-faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem var(--sp-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  min-height: 48px;
  transition: background var(--t-fast);
}

.c-faq-item__question:hover {
  background: var(--c-primary-light);
}

.c-faq-item__question i {
  color: var(--c-primary);
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: transform var(--t-mid);
}

.c-faq-item.is-open .c-faq-item__question i {
  transform: rotate(180deg);
}

.c-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) cubic-bezier(0.4, 0, 0.2, 1);
}

.c-faq-item.is-open .c-faq-item__answer {
  max-height: 400px;
}

.c-faq-item__answer p {
  padding: 0 var(--sp-md) 1.25rem;
  font-size: 0.9375rem;
  max-width: none;
  color: var(--c-text-mid);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.s-page-hero {
  padding-top: calc(var(--sp-3xl) + 60px);
  padding-bottom: var(--sp-2xl);
}

.s-page-hero__heading {
  margin-bottom: 0.75rem;
}

.s-page-hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 55ch;
  color: var(--c-text-mid);
}

/* ============================================
   WER WIR SIND PAGE
   ============================================ */
.s-mission__grid,
.s-about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.s-mission__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.s-mission__heading { margin-bottom: 0.25rem; }
.s-mission__content p { max-width: 48ch; }

.s-mission__img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--c-border);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.s-values__header {
  margin-bottom: var(--sp-xl);
}

.s-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-md);
}

.c-value-card {
  background: var(--c-bg-paper);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  text-align: center;
  transition: all var(--t-mid);
  box-shadow: var(--shadow-sm);
}

.c-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-primary-light);
}

.c-value-card__icon {
  font-size: 2rem;
  color: var(--c-primary);
  margin-bottom: var(--sp-md);
  display: block;
}

.c-value-card__title {
  margin-bottom: 0.5rem;
}

.c-value-card p { font-size: 0.9375rem; max-width: none; }

.s-story__inner {
  max-width: 760px;
}

.s-story__heading { margin-bottom: var(--sp-md); }

.s-story__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.s-story__text p { max-width: none; }

/* ============================================
   PRICING PAGE
   ============================================ */
.s-pricing__intro {
  margin-bottom: var(--sp-xl);
  max-width: 680px;
}
.s-pricing__intro p { max-width: none; }

.s-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-md);
  align-items: start;
}

.c-pricing-card {
  background: var(--c-bg-paper);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-mid);
}

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

.c-pricing-card--featured {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--c-primary);
  position: relative;
}

.c-pricing-card--featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-label);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.875rem;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
}

.c-pricing-card__header {
  border-bottom: 1px solid var(--c-border);
  padding-bottom: var(--sp-md);
}

.c-pricing-card__tier {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 0.5rem;
}

.c-pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-text);
}

.c-pricing-card__period {
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

.c-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.c-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--c-text-mid);
}

.c-pricing-card__features li i {
  color: var(--c-primary);
  font-size: 0.875rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.c-pricing-card__no { color: var(--c-text-light) !important; }
.c-pricing-card__features li:has(.c-pricing-card__no) { opacity: 0.6; }

.s-modules__header {
  margin-bottom: var(--sp-xl);
}

.s-modules__sub {
  max-width: 55ch;
  font-size: 1rem;
}

.s-modules__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-md);
}

.c-module-item {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  padding: var(--sp-md);
  background: var(--c-bg-paper);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-mid);
}

.c-module-item:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.c-module-item__number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  min-width: 2.5rem;
  background: var(--grad-label);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.c-module-item__content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.c-module-item__content p {
  font-size: 0.9375rem;
  max-width: none;
  margin-bottom: 0.5rem;
}

.c-module-item__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-accent);
  background: var(--c-accent-light);
  padding: 0.2rem 0.5rem;
  border-radius: var(--r-sm);
}

/* ============================================
   KARRIERE PAGE
   ============================================ */
.s-work-culture__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.s-work-culture__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.s-work-culture__heading { margin-bottom: 0.25rem; }
.s-work-culture__content p { max-width: 46ch; }

.s-work-culture__perks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.c-perk {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  padding: var(--sp-md);
  background: var(--c-bg-paper);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-mid);
}

.c-perk:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary-light);
}

.c-perk i {
  font-size: 1.25rem;
  color: var(--c-primary);
  min-width: 24px;
  margin-top: 0.2rem;
}

.c-perk h3 { font-size: 0.9375rem; margin-bottom: 0.25rem; }
.c-perk p { font-size: 0.875rem; max-width: none; }

.s-openings__header {
  margin-bottom: var(--sp-xl);
}

.s-openings__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.c-job-card {
  background: var(--c-bg-paper);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-mid);
}

.c-job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-primary-light);
}

.c-job-card__meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.c-job-card__dept {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  background: var(--c-primary-light);
  padding: 0.2rem 0.625rem;
  border-radius: var(--r-full);
}

.c-job-card__type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-muted);
  background: var(--c-bg-warm);
  padding: 0.2rem 0.625rem;
  border-radius: var(--r-full);
}

.c-job-card__title { font-size: 1.25rem; }
.c-job-card__desc { font-size: 0.9375rem; max-width: none; }

.s-openings__spontaneous {
  background: var(--c-primary-light);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.s-openings__spontaneous p {
  max-width: 50ch;
  color: var(--c-primary-dark);
  font-size: 0.9375rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.s-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.s-contact__info-heading {
  font-size: 1.4rem;
  margin-bottom: var(--sp-lg);
}

.c-contact-detail {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  margin-bottom: var(--sp-md);
}

.c-contact-detail i {
  color: var(--c-primary);
  font-size: 1.1rem;
  min-width: 24px;
  margin-top: 0.2rem;
}

.c-contact-detail strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 0.2rem;
}

.c-contact-detail a,
.c-contact-detail p,
.c-contact-detail address {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  max-width: none;
}

.c-accessibility-note {
  margin-top: var(--sp-lg);
  background: var(--c-primary-light);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  border-left: 3px solid var(--c-primary);
}

.c-accessibility-note__heading {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-primary-dark);
}

.c-accessibility-note p {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  max-width: none;
}


.c-wizard {
  background: var(--c-bg-paper);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-md);
}

.c-wizard__steps {
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-lg);
  gap: 0;
}

.c-wizard__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  cursor: default;
}

.c-wizard__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-border);
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--t-mid);
}

.c-wizard__step.is-active .c-wizard__step-num {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(61,107,82,0.4);
}

.c-wizard__step.is-done .c-wizard__step-num {
  background: var(--c-primary-light);
  color: var(--c-primary);
}

.c-wizard__step-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.c-wizard__step.is-active .c-wizard__step-label {
  color: var(--c-primary);
  font-weight: 600;
}

.c-wizard__step-connector {
  flex: 1;
  height: 1px;
  background: var(--c-border);
  margin-bottom: 1.2rem;
  margin-inline: 0.5rem;
}

.c-wizard__panel {
  display: none;
}

.c-wizard__panel.is-active {
  display: block;
  animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.c-wizard__panel-title {
  font-size: 1.2rem;
  margin-bottom: var(--sp-md);
}

.c-wizard__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-md);
  gap: var(--sp-sm);
}


.c-form-group {
  margin-bottom: var(--sp-md);
}

.c-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.375rem;
}

.c-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--c-text);
  transition: all var(--t-fast);
  outline: none;
  box-shadow: var(--shadow-inset);
  min-height: 48px;
}

.c-form-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(61,107,82,0.12), var(--shadow-inset);
  background: var(--c-bg-paper);
}

.c-form-input::placeholder { color: var(--c-text-light); }

.c-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a7570' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.c-form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.c-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--c-text-mid);
  line-height: 1.5;
}

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

.c-form-checkbox a {
  color: var(--c-primary);
  text-decoration: underline;
}


.s-map__heading {
  margin-bottom: var(--sp-md);
}

.s-map__embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}

.s-map__embed iframe {
  display: block;
}

/* ============================================
   THANKS PAGE
   ============================================ */
.s-thanks-main {
  display: flex;
  flex-direction: column;
}

.s-thanks {
  padding-top: calc(var(--sp-3xl) + 60px);
}

.s-thanks__inner {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

.s-thanks__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.s-thanks__sub {
  font-size: 1.05rem;
  color: var(--c-text-mid);
  margin-bottom: var(--sp-lg);
  max-width: none;
}

.s-thanks__home-btn {
  margin-bottom: var(--sp-2xl);
}

.c-journey-timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
  max-width: 420px;
  margin-inline: auto;
}

.c-journey-step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md) 0;
  width: 100%;
}

.c-journey-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-border);
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--t-mid);
  box-shadow: var(--shadow-sm);
}

.c-journey-step.is-done .c-journey-step__icon {
  background: var(--c-primary-light);
  color: var(--c-primary);
}

.c-journey-step.is-done.is-current .c-journey-step__icon {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(61,107,82,0.35);
}

.c-journey-step.is-upcoming .c-journey-step__icon {
  background: var(--c-bg-warm);
  color: var(--c-text-light);
  border: 2px dashed var(--c-border-strong);
}

.c-journey-step__title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.c-journey-step.is-upcoming .c-journey-step__title {
  color: var(--c-text-muted);
}

.c-journey-step__desc {
  font-size: 0.875rem;
  max-width: none;
}

.c-journey-connector {
  width: 2px;
  height: 32px;
  background: var(--c-border);
  margin-left: 21px;
}

.c-journey-connector--done {
  background: var(--c-primary-light);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.s-legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-2xl);
  max-width: 1200px;
  margin-inline: auto;
  padding: calc(var(--sp-3xl) + 60px) clamp(1rem, 4vw, 2.5rem) var(--sp-2xl);
  align-items: start;
}

.s-legal-sidebar {
  position: sticky;
  top: calc(80px + var(--sp-md));
}

.s-legal-sidebar__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 0.875rem;
}

.s-legal-sidebar nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.s-legal-sidebar nav a {
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  color: var(--c-text-mid);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all var(--t-fast);
  border-left: 2px solid transparent;
}

.s-legal-sidebar nav a:hover {
  background: var(--c-primary-light);
  color: var(--c-primary);
  border-left-color: var(--c-primary);
}

.s-legal-content {
  min-width: 0;
}

.s-legal-header {
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--c-border);
}

.s-legal-header h1 {
  margin-bottom: 0.5rem;
}

.s-legal-meta {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  max-width: none;
}

.s-legal-content section {
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--c-border);
}

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

.s-legal-content h2 {
  font-size: 1.25rem;
  margin-bottom: var(--sp-md);
  color: var(--c-text);
}

.s-legal-content p {
  margin-bottom: var(--sp-sm);
  font-size: 0.9375rem;
  max-width: none;
  line-height: 1.75;
}

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

.s-legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--sp-sm);
}

.s-legal-content ul li {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  margin-bottom: 0.375rem;
  line-height: 1.6;
}

.s-legal-content a {
  color: var(--c-primary);
  text-decoration: underline;
}


.s-impressum {
  padding-top: calc(var(--sp-3xl) + 60px);
}

.s-impressum__header {
  margin-bottom: var(--sp-xl);
}

.s-impressum__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--sp-lg);
}

.c-impressum-section {
  background: var(--c-bg-paper);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-xs);
}

.c-impressum-section h2 {
  font-size: 1.05rem;
  margin-bottom: var(--sp-md);
  color: var(--c-primary-dark);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-border);
}

.c-impressum-section p {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  max-width: none;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.c-impressum-section ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.c-impressum-section ul li {
  font-size: 0.875rem;
  color: var(--c-text-mid);
  margin-bottom: 0.25rem;
}

.c-impressum-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.c-impressum-table th {
  text-align: left;
  padding: 0.5rem 0.75rem 0.5rem 0;
  font-weight: 600;
  color: var(--c-text);
  width: 40%;
  vertical-align: top;
}

.c-impressum-table td {
  padding: 0.5rem 0;
  color: var(--c-text-mid);
  vertical-align: top;
}

.c-impressum-table tr:not(:last-child) th,
.c-impressum-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--c-border);
}


.c-cookie-table-wrap {
  overflow-x: auto;
  margin: var(--sp-md) 0;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
}

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

.c-cookie-table th {
  background: var(--c-bg-warm);
  padding: 0.625rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
}

.c-cookie-table td {
  padding: 0.625rem 1rem;
  color: var(--c-text-mid);
  border-bottom: 1px solid var(--c-border);
}

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

/* ============================================
   FOOTER
   ============================================ */
.c-footer {
  background: var(--c-nav-bg);
  color: var(--c-nav-text);
  padding: var(--sp-2xl) 0 0;
  margin-top: auto;
}

.c-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.c-footer__logo {
  filter: brightness(0) invert(1);
  margin-bottom: var(--sp-md);
}

.c-footer__tagline {
  font-size: 0.9375rem;
  color: rgba(240,236,228,0.7);
  max-width: 36ch;
  margin-bottom: var(--sp-md);
}

.c-footer__address {
  font-size: 0.875rem;
  color: rgba(240,236,228,0.6);
  line-height: 1.8;
}

.c-footer__address a {
  color: rgba(240,236,228,0.6);
  text-decoration: none;
  transition: color var(--t-fast);
}

.c-footer__address a:hover {
  color: var(--c-nav-link-hover);
}

.c-footer__nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(240,236,228,0.5);
  margin-bottom: var(--sp-md);
}

.c-footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-footer__nav a {
  font-size: 0.9375rem;
  color: rgba(240,236,228,0.65);
  text-decoration: none;
  transition: color var(--t-fast);
  display: inline-block;
  padding: 0.125rem 0;
}

.c-footer__nav a:hover {
  color: var(--c-nav-link-hover);
}

.c-footer__bottom {
  padding: var(--sp-md) 0;
  text-align: center;
}

.c-footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(240,236,228,0.4);
  max-width: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .s-intro__grid,
  .s-about-preview__grid,
  .s-mission__grid,
  .s-process__inner,
  .s-work-culture__grid,
  .s-contact__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .s-process__text {
    position: static;
  }

  .c-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .c-footer__brand {
    grid-column: 1 / -1;
  }

  .s-legal-layout {
    grid-template-columns: 200px 1fr;
    gap: var(--sp-xl);
  }
}

@media (max-width: 768px) {
  .c-nav__links { display: none; }
  .c-nav__hamburger { display: flex; }

  .s-hero__top {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .s-features__grid {
    grid-template-columns: 1fr;
  }

  .s-topics__grid {
    grid-template-columns: 1fr;
  }

  .s-pricing__grid {
    grid-template-columns: 1fr;
  }

  .s-modules__grid {
    grid-template-columns: 1fr;
  }

  .s-values__grid {
    grid-template-columns: 1fr 1fr;
  }

  .c-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .s-legal-layout {
    grid-template-columns: 1fr;
    padding-top: calc(var(--sp-2xl) + 60px);
  }

  .s-legal-sidebar {
    position: static;
    background: var(--c-bg-warm);
    border-radius: var(--r-lg);
    padding: var(--sp-md);
    border: 1px solid var(--c-border);
  }

  .s-impressum__grid {
    grid-template-columns: 1fr;
  }

  .s-openings__spontaneous {
    flex-direction: column;
    text-align: center;
  }

  .s-openings__spontaneous p {
    max-width: none;
  }

  .c-wizard__steps {
    gap: 0;
  }

  .c-wizard__step-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .s-values__grid {
    grid-template-columns: 1fr;
  }

  .s-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .c-btn {
    width: 100%;
    justify-content: center;
  }

  .s-hero__actions .c-btn {
    max-width: 280px;
  }

  .c-stacked-card__back {
    transform: translate(8px, 8px) rotate(2deg);
  }

  .c-stacked-card__mid {
    transform: translate(4px, 4px) rotate(1deg);
  }

  .s-contact__grid {
    grid-template-columns: 1fr;
  }

  .c-wizard__nav {
    flex-direction: column-reverse;
    gap: 0.5rem;
  }

  .c-wizard__nav .c-btn {
    width: 100%;
  }
}


[data-animate] {
  opacity: 0;
  transform: translateY(24px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}