/* ============================================
   HOSEJO CUCOSI – Dark Vibrant Design System
   Page-scoped CSS class naming convention
   ============================================ */


:root {
  --color-bg: #0d0f14;
  --color-surface-1: #13161e;
  --color-surface-2: #181c27;
  --color-surface-3: #1e2333;
  --color-surface-4: #252b3d;

  --color-primary: #6c63ff;
  --color-primary-glow: rgba(108, 99, 255, 0.35);
  --color-primary-dark: #4f48cc;
  --color-secondary: #00d4ff;
  --color-secondary-glow: rgba(0, 212, 255, 0.25);
  --color-accent: #ff6b9d;
  --color-accent-glow: rgba(255, 107, 157, 0.25);

  --color-text-primary: #e8eaf2;
  --color-text-secondary: #9ba3bf;
  --color-text-muted: #5c6480;
  --color-text-inverse: #0d0f14;

  --color-border: rgba(108, 99, 255, 0.18);
  --color-border-subtle: rgba(255, 255, 255, 0.07);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 0 1px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
  --shadow-glow-primary: 0 0 20px var(--color-primary-glow), 0 4px 16px rgba(0,0,0,0.5);
  --shadow-glow-secondary: 0 0 20px var(--color-secondary-glow), 0 4px 16px rgba(0,0,0,0.5);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

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

  --nav-height: 72px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;

  --font-heading: 'Newsreader', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}


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

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

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  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(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-secondary); }

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

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { color: var(--color-text-secondary); line-height: 1.8; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { list-style: none; }

address { font-style: normal; }
address a { color: var(--color-text-secondary); }
address a:hover { color: var(--color-primary); }


body > header, body > footer, body > main, body > nav { max-width: none; }
nav { max-width: none; width: 100%; }
article, section, aside { max-width: none; }
hr { display: none; }


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


.global-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-full);
  background: rgba(0, 212, 255, 0.06);
}


.global-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.global-btn--primary {
  background: linear-gradient(135deg, var(--color-primary), #8b82ff);
  color: #fff;
  box-shadow: var(--shadow-glow-primary);
}
.global-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px var(--color-primary-glow), 0 8px 24px rgba(0,0,0,0.5);
  color: #fff;
}

.global-btn--ghost {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}
.global-btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(108, 99, 255, 0.08);
}

.global-btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.global-btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-glow-primary);
}

.global-btn--large { padding: 1rem 2.25rem; font-size: 1rem; }
.global-btn--full { width: 100%; justify-content: center; }


.global-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.global-link-arrow:hover { gap: 0.7rem; color: var(--color-secondary); }

/* ============================================
   GLOBAL HEADER & NAVIGATION
   ============================================ */

.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-slow), backdrop-filter var(--transition-slow), border-color var(--transition-slow);
}

.global-header.scrolled {
  background: rgba(13, 15, 20, 0.82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--color-border-subtle);
}

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

.global-nav__logo img { display: block; }

.global-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.global-nav__links a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.global-nav__links a:hover,
.global-nav__links a.active {
  color: var(--color-text-primary);
  background: rgba(108, 99, 255, 0.1);
}

.global-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.global-nav__search-btn,
.global-nav__hamburger {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-secondary);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  font-size: 1rem;
}
.global-nav__search-btn:hover,
.global-nav__hamburger:hover {
  color: var(--color-text-primary);
  background: rgba(255,255,255,0.07);
}

.global-nav__hamburger {
  flex-direction: column;
  gap: 4px;
  display: none;
}
.global-nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text-secondary);
  border-radius: 2px;
  transition: all var(--transition-base);
}


.global-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,15,20,0.95);
  backdrop-filter: blur(12px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.global-search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.global-search-overlay__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 640px;
  padding-inline: 2rem;
}

.global-search-overlay__input {
  flex: 1;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.global-search-overlay__input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.global-search-overlay__close {
  background: none;
  border: none;
  color: var(--color-text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}
.global-search-overlay__close:hover { color: var(--color-text-primary); }


.global-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.global-mobile-overlay.active {
  opacity: 1;
}

.global-mobile-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  padding-bottom: env(safe-area-inset-bottom, 1rem);
  max-height: 80vh;
  overflow-y: auto;
}
.global-mobile-sheet.open {
  transform: translateY(0);
}

.global-mobile-sheet__handle {
  width: 40px;
  height: 4px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  margin: 1rem auto 0.5rem;
}

.global-mobile-sheet__nav {
  padding: 0.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.global-mobile-sheet__nav a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  color: var(--color-text-secondary);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.global-mobile-sheet__nav a:hover {
  color: var(--color-text-primary);
  background: rgba(108, 99, 255, 0.1);
}
.global-mobile-sheet__nav a i {
  width: 20px;
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* ============================================
   HERO SECTION (HOME)
   ============================================ */

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

.home-hero__diagonal-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, var(--color-bg) 55%, transparent 55%);
  z-index: 2;
  pointer-events: none;
}

.home-hero__image-side {
  position: absolute;
  right: 0;
  top: 0;
  width: 52%;
  height: 100%;
  z-index: 1;
}

.home-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-bg) 0%, rgba(13,15,20,0.4) 40%, transparent 70%);
}

.home-hero__content-side {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
}

.home-hero__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  width: 100%;
  padding-block: var(--space-3xl);
  max-width: 640px;
}

.home-hero__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-full);
  background: rgba(0, 212, 255, 0.06);
  animation: fadeSlideUp 0.7s ease both;
}

.home-hero__headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  animation: fadeSlideUp 0.7s 0.1s ease both;
}

.home-hero__headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 520px;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}

.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}


.global-wave-divider {
  position: relative;
  line-height: 0;
  overflow: hidden;
}
.global-wave-divider svg {
  display: block;
  width: 100%;
}

.global-wave-divider--hero { margin-top: -2px; }

/* ============================================
   INTRO SECTION (HOME)
   ============================================ */

.home-intro {
  background: var(--color-surface-2);
  padding-block: var(--space-3xl);
}

.home-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.home-intro__text h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.home-intro__text p { margin-bottom: 1.1rem; }

.home-intro__image-wrap {
  position: relative;
}

.home-intro__image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-subtle);
}

.home-intro__image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, var(--color-primary-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================
   FEATURES SECTION (HOME)
   ============================================ */

.home-features {
  background: var(--color-surface-2);
  padding-block: var(--space-2xl);
}

.home-features__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.home-features__header h2 { margin-top: var(--space-xs); }

.home-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.home-features__item {
  display: flex;
  gap: 1.5rem;
  padding: var(--space-lg) var(--space-lg);
  border-right: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background var(--transition-base);
  background: var(--color-surface-3);
}

.home-features__item:nth-child(even) { border-right: none; }
.home-features__item:nth-child(n+3) { border-bottom: none; }

.home-features__item:hover { background: var(--color-surface-4); }

.home-features__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--shadow-glow-primary);
}

.home-features__text h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.home-features__text p { font-size: 0.9rem; color: var(--color-text-secondary); }

/* ============================================
   HIGHLIGHTS SECTION (HOME)
   ============================================ */

.home-highlights {
  background: var(--color-surface-3);
  padding-block: var(--space-3xl);
}

.home-highlights__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.home-highlights__header h2 { margin-top: var(--space-xs); }
.home-highlights__sub {
  color: var(--color-text-secondary);
  max-width: 560px;
  margin-inline: auto;
  margin-top: var(--space-sm);
}

.home-highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.home-highlights__card {
  background: var(--color-surface-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(108,99,255,0);
}

.home-highlights__card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md), 0 0 24px var(--color-primary-glow);
  transform: translateY(-3px);
}

.home-highlights__card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.home-highlights__card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}
.home-highlights__card p { font-size: 0.875rem; }

/* ============================================
   ARTICLES SECTION (HOME)
   ============================================ */

.home-articles {
  background: var(--color-bg);
  padding-block: var(--space-3xl);
}

.home-articles__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.home-articles__header h2 { margin-top: var(--space-xs); }

.home-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.home-articles__card {
  background: var(--color-surface-1);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.home-articles__card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 20px var(--color-primary-glow);
}

.home-articles__card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.home-articles__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-articles__card:hover .home-articles__card-img { transform: scale(1.05); }

.home-articles__card-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.home-articles__card-body {
  padding: var(--space-md);
}

.home-articles__card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.home-articles__card-body p { font-size: 0.875rem; margin-bottom: 1rem; }

.home-articles__more {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   CTA SECTION (HOME)
   ============================================ */

.home-cta {
  background: linear-gradient(135deg, var(--color-surface-2), var(--color-surface-3));
  padding-block: var(--space-3xl);
  border-top: 1px solid var(--color-border-subtle);
}

.home-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  background: var(--color-surface-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  box-shadow: var(--shadow-lg), 0 0 40px var(--color-primary-glow);
}

.home-cta__text h2 { margin-top: var(--space-xs); font-size: clamp(1.4rem, 2.5vw, 2rem); }
.home-cta__text p { max-width: 480px; }

/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */

.global-page-hero {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  background: linear-gradient(180deg, var(--color-surface-1) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border-subtle);
  position: relative;
  overflow: hidden;
}

.global-page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, var(--color-primary-glow) 0%, transparent 60%);
  pointer-events: none;
}

.global-page-hero h1 { margin-top: var(--space-xs); }
.global-page-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.global-page-hero__sub {
  font-size: 1.05rem;
  max-width: 600px;
  margin-top: var(--space-md);
}

/* ============================================
   GLOBAL CTA SECTION
   ============================================ */

.global-cta-section {
  background: var(--color-bg);
  padding-block: var(--space-3xl);
}

.global-cta-inner {
  background: linear-gradient(135deg, var(--color-surface-2), var(--color-surface-3));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.global-cta-inner h2 { margin-bottom: var(--space-sm); }
.global-cta-inner p { max-width: 520px; margin-inline: auto; margin-bottom: var(--space-lg); }

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-story {
  background: var(--color-bg);
  padding-block: var(--space-3xl);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-story__text h2 { margin-bottom: var(--space-md); margin-top: var(--space-xs); }
.about-story__text p { margin-bottom: 1rem; }

.about-story__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 30px var(--color-primary-glow);
  border: 1px solid var(--color-border);
}

.about-values {
  background: var(--color-surface-2);
  padding-block: var(--space-3xl);
}

.about-values h2 { margin-bottom: var(--space-2xl); margin-top: var(--space-xs); }

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.about-values__item {
  background: var(--color-surface-3);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.about-values__item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 24px var(--color-primary-glow);
  transform: translateY(-2px);
}

.about-values__item i {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.about-values__item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.about-values__item p { font-size: 0.875rem; }

.about-approach {
  background: var(--color-bg);
  padding-block: var(--space-3xl);
}

.about-approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-approach__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-subtle);
}

.about-approach__text h2 { margin-bottom: var(--space-md); margin-top: var(--space-xs); }
.about-approach__text p { margin-bottom: 1rem; }

/* ============================================
   CASES PAGE
   ============================================ */

.cases-intro {
  background: var(--color-surface-1);
  padding-block: var(--space-lg);
  border-bottom: 1px solid var(--color-border-subtle);
}

.cases-intro__lead {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 760px;
  font-style: italic;
}

.cases-list {
  background: var(--color-bg);
  padding-block: var(--space-2xl);
}

.cases-item {
  border-bottom: 1px solid var(--color-border-subtle);
  padding-block: var(--space-2xl);
}

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

.cases-item__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}

.cases-item__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(255,107,157,0.3);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  background: rgba(255,107,157,0.06);
}

.cases-item__category {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cases-item__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.cases-item__body--reversed { }
.cases-item__body--reversed .cases-item__image { order: -1; }

.cases-item__text h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: var(--space-md);
}

.cases-item__text p {
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.cases-item__text p strong { color: var(--color-text-primary); }

.cases-item__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-subtle);
}

/* ============================================
   ARTICLES PAGE
   ============================================ */

.articles-filter {
  background: var(--color-surface-1);
  padding-block: var(--space-md);
  border-bottom: 1px solid var(--color-border-subtle);
}

.articles-filter__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.articles-filter__tag {
  background: var(--color-surface-3);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.articles-filter__tag:hover,
.articles-filter__tag.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.articles-grid-section {
  background: var(--color-bg);
  padding-block: var(--space-3xl);
}

.articles-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.articles-card {
  background: var(--color-surface-1);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.articles-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 20px var(--color-primary-glow);
}

.articles-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.articles-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.articles-card--featured .articles-card__img-wrap {
  aspect-ratio: auto;
}

.articles-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.articles-card:hover .articles-card__img { transform: scale(1.04); }

.articles-card__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.articles-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.articles-card__date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.articles-card__body h2 {
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.3;
}

.articles-card__body p { font-size: 0.875rem; flex: 1; }

.articles-newsletter {
  background: var(--color-surface-2);
  padding-block: var(--space-3xl);
  border-top: 1px solid var(--color-border-subtle);
}

.articles-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.articles-newsletter__text h2 { margin-top: var(--space-xs); font-size: 1.6rem; }
.articles-newsletter__text p { margin-top: var(--space-sm); }

.articles-newsletter__field-row {
  display: flex;
  gap: 0.75rem;
}

.articles-newsletter__field-row input {
  flex: 1;
  background: var(--color-surface-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-width: 0;
}
.articles-newsletter__field-row input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.articles-newsletter__note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}
.articles-newsletter__note a { color: var(--color-primary); }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-form-section {
  background: var(--color-bg);
  padding-block: var(--space-3xl);
}

.contact-form-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-section__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-subtle);
  aspect-ratio: 4/3;
}

.contact-form-section__map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: invert(0.9) hue-rotate(185deg) brightness(0.85) saturate(0.7);
}

.contact-form-section__info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form-section__info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.contact-form-section__info-item i {
  color: var(--color-primary);
  width: 20px;
  text-align: center;
}

.contact-form-section__info-item a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}
.contact-form-section__info-item a:hover { color: var(--color-primary); }

.contact-form-section__form-wrap {
  background: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.contact-form-section__field {
  margin-bottom: var(--space-md);
}

.contact-form-section__field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.contact-form-section__field input,
.contact-form-section__field textarea {
  width: 100%;
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  resize: vertical;
}

.contact-form-section__field input::placeholder,
.contact-form-section__field textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form-section__field input:focus,
.contact-form-section__field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.contact-form-section__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.contact-form-section__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  margin-top: 2px;
}

.contact-form-section__privacy label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.contact-form-section__privacy label a {
  color: var(--color-primary);
}

.contact-form-section__error {
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  min-height: 1.2em;
}

.contact-response-info {
  background: var(--color-surface-2);
  padding-block: var(--space-3xl);
  border-top: 1px solid var(--color-border-subtle);
}

.contact-response-info__inner h2 { margin-bottom: var(--space-2xl); margin-top: var(--space-xs); }

.contact-response-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.contact-response-info__item {
  background: var(--color-surface-3);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.contact-response-info__item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px var(--color-primary-glow);
}

.contact-response-info__item i {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: block;
}
.contact-response-info__item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.contact-response-info__item p { font-size: 0.875rem; }

/* ============================================
   THANKS PAGE
   ============================================ */

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  padding-block: var(--space-3xl);
  background: var(--color-bg);
}

.thanks-container {
  width: 100%;
}

.thanks-quote-card {
  max-width: 640px;
  margin-inline: auto;
  background: linear-gradient(135deg, var(--color-surface-2), var(--color-surface-3));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-lg), 0 0 40px var(--color-primary-glow);
}

.thanks-quote-card__icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  opacity: 0.6;
}

.thanks-quote-card__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.6;
  font-weight: 400;
}

.thanks-quote-card__attribution {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.thanks-content {
  text-align: center;
}

.thanks-content__icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.thanks-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: var(--space-sm);
}

.thanks-content p {
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-main {
  padding-top: var(--nav-height);
  background: var(--color-bg);
  min-height: 100vh;
}

.legal-container {
  padding-block: var(--space-3xl);
}

.legal-header {
  margin-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border-subtle);
  padding-bottom: var(--space-xl);
}

.legal-header h1 { margin-top: var(--space-xs); }

.legal-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.legal-body { max-width: 860px; }


.legal-body--faq .legal-faq-item {
  border-bottom: 1px solid var(--color-border-subtle);
  padding-block: var(--space-lg);
}

.legal-body--faq .legal-faq-item:last-child { border-bottom: none; }

.legal-body--faq h2 {
  font-size: 1.1rem;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.legal-body--faq p { font-size: 0.9rem; }


.legal-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-subtle);
}

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

.legal-section h2 {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.legal-section p { font-size: 0.9rem; margin-bottom: 0.75rem; }


.legal-numbered-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid var(--color-border-subtle);
  padding-block: var(--space-xl);
  align-items: start;
}

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

.legal-numbered-item__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  padding-top: 0.25rem;
}

.legal-numbered-item__content h2 {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.legal-numbered-item__content p { font-size: 0.9rem; margin-bottom: 0.75rem; }


.impressum-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-subtle);
}

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

.impressum-section h2 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.impressum-section p { font-size: 0.875rem; margin-bottom: 0.5rem; }

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

.impressum-table th,
.impressum-table td {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-border-subtle);
  text-align: left;
  vertical-align: top;
}

.impressum-table th {
  background: var(--color-surface-2);
  color: var(--color-text-secondary);
  font-weight: 600;
  white-space: nowrap;
  width: 35%;
}

.impressum-table td {
  background: var(--color-surface-1);
  color: var(--color-text-primary);
}

.impressum-table a { color: var(--color-primary); }

.impressum-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.impressum-list li {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  padding: 0.2rem 0;
}


.legal-cookie-table-wrap {
  overflow-x: auto;
  margin-top: 0.75rem;
}

.legal-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  min-width: 560px;
}

.legal-cookie-table th,
.legal-cookie-table td {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-border-subtle);
  text-align: left;
}

.legal-cookie-table th {
  background: var(--color-surface-2);
  color: var(--color-text-secondary);
  font-weight: 600;
}

.legal-cookie-table td {
  background: var(--color-surface-1);
  color: var(--color-text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */

.global-footer {
  background: var(--color-surface-1);
  border-top: 1px solid var(--color-border-subtle);
}

.global-footer__stats-bar {
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-border-subtle);
  padding-block: 0.875rem;
}

.global-footer__stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.global-footer__stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.global-footer__stat i {
  color: var(--color-primary);
  font-size: 0.85rem;
}

.global-footer__main {
  padding-block: var(--space-2xl);
}

.global-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.global-footer__brand img { margin-bottom: 0.75rem; }

.global-footer__brand p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  max-width: 300px;
}

.global-footer__brand address {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.9;
}

.global-footer__nav h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.global-footer__nav ul { display: flex; flex-direction: column; gap: 0.4rem; }

.global-footer__nav a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}
.global-footer__nav a:hover { color: var(--color-primary); }

.global-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-subtle);
}

.global-footer__bottom p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


.text-highlight {
  background: linear-gradient(120deg, var(--color-primary-glow) 0%, transparent 100%);
  border-radius: 3px;
  padding: 0 3px;
  transition: background 0.5s ease;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: var(--shadow-glow-primary); }
  50% { box-shadow: 0 0 40px var(--color-primary-glow), 0 8px 24px rgba(0,0,0,0.5); }
}

/* ============================================
   COOKIE CONSENT
   ============================================ */

#hjc-consent-card {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.75rem;
  width: min(520px, calc(100vw - 2rem));
  z-index: 9999;
  box-shadow: var(--shadow-lg), 0 0 30px var(--color-primary-glow);
  display: none;
  transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

#hjc-consent-card.visible { display: block; }

#hjc-consent-card.expanded {
  width: min(620px, calc(100vw - 2rem));
}

.hjc-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.hjc-compact p {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.hjc-compact p a { color: var(--color-primary); }

.hjc-compact-btns {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.hjc-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.hjc-btn-accept {
  background: linear-gradient(135deg, var(--color-primary), #8b82ff);
  color: #fff;
  box-shadow: var(--shadow-glow-primary);
}
.hjc-btn-accept:hover { transform: translateY(-1px); }

.hjc-btn-settings {
  background: var(--color-surface-4);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}
.hjc-btn-settings:hover { color: var(--color-text-primary); border-color: var(--color-primary); }

.hjc-expanded-panel { display: none; }
.hjc-expanded-panel.active { display: block; }

.hjc-expanded-panel h3 {
  font-size: 0.9rem;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-subtle);
}

.hjc-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.hjc-category:last-child { border-bottom: none; }

.hjc-category-info { flex: 1; }
.hjc-category-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-primary);
}
.hjc-category-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.hjc-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.hjc-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-surface-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hjc-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--color-text-muted);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all var(--transition-fast);
}

.hjc-toggle input:checked + .hjc-toggle-slider {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.hjc-toggle input:checked + .hjc-toggle-slider::before {
  transform: translateX(18px);
  background: #fff;
}

.hjc-toggle input:disabled + .hjc-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.hjc-expanded-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  justify-content: flex-end;
}

/* ============================================
   INTL TEL INPUT OVERRIDE
   ============================================ */

.iti { display: block; }
.iti__selected-flag { background: var(--color-surface-3) !important; }
.iti__dropdown-content { background: var(--color-surface-2) !important; border-color: var(--color-border) !important; }
.iti__country-list { background: var(--color-surface-2) !important; color: var(--color-text-secondary) !important; }
.iti__country.iti__highlight { background: var(--color-surface-3) !important; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .home-hero__diagonal-bg { background: linear-gradient(135deg, var(--color-bg) 50%, transparent 50%); }
  .home-hero__image-side { width: 50%; }
  .home-features__grid { grid-template-columns: 1fr; }
  .home-features__item { border-right: none; }
  .home-features__item:nth-child(n+2) { border-bottom: 1px solid var(--color-border-subtle); }
  .home-features__item:last-child { border-bottom: none; }
  .articles-card--featured { grid-template-columns: 1fr; }
  .articles-card--featured .articles-card__img-wrap { aspect-ratio: 16/9; }
  .home-articles__grid { grid-template-columns: 1fr 1fr; }
  .home-articles__card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --space-3xl: 5rem; --space-2xl: 3.5rem; }

  .global-nav__links { display: none; }
  .global-nav__search-btn { display: none; }
  .global-nav__hamburger { display: flex; }

  .global-mobile-overlay { display: block; pointer-events: none; }
  .global-mobile-overlay.active { pointer-events: all; }

  .home-hero {
    min-height: 100svh;
    flex-direction: column;
  }

  .home-hero__diagonal-bg { display: none; }

  .home-hero__image-side {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 260px;
  }

  .home-hero__image-overlay {
    background: linear-gradient(to bottom, transparent 40%, var(--color-bg) 100%);
  }

  .home-hero__content-side {
    position: relative
; padding-top: 0; }

  .home-hero__inner {
    max-width: 100%;
    padding-block: var(--space-xl);
  }

  .home-intro__inner { grid-template-columns: 1fr; }
  .home-intro__image-wrap { display: none; }

  .home-highlights__grid { grid-template-columns: 1fr; }
  .home-articles__grid { grid-template-columns: 1fr; }
  .home-articles__card:last-child { grid-column: auto; }

  .home-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
  }

  .home-cta__text p { max-width: 100%; }

  .about-story__inner { grid-template-columns: 1fr; }
  .about-story__image-col { display: none; }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-approach__inner { grid-template-columns: 1fr; }
  .about-approach__image-col { display: none; }

  .cases-item__body { grid-template-columns: 1fr; }
  .cases-item__body--reversed .cases-item__image { order: 0; }
  .cases-item__image { display: none; }

  .articles-main-grid { grid-template-columns: 1fr; }
  .articles-card--featured { grid-column: auto; display: block; }
  .articles-newsletter__inner { grid-template-columns: 1fr; }
  .articles-newsletter__field-row { flex-direction: column; }

  .contact-form-section__grid { grid-template-columns: 1fr; }
  .contact-response-info__grid { grid-template-columns: 1fr; }

  .global-footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .global-footer__stats-inner { justify-content: center; }
  .global-footer__bottom { flex-direction: column; gap: 0.4rem; text-align: center; }

  .legal-numbered-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .legal-numbered-item__num { font-size: 1.2rem; }

  .impressum-table th { width: auto; }

  .hjc-compact { flex-direction: column; align-items: flex-start; }
  .hjc-compact-btns { width: 100%; }
  .hjc-btn { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }

  .home-hero__headline { font-size: 2.2rem; }
  .home-hero__ctas { flex-direction: column; }
  .home-hero__ctas .global-btn { width: 100%; justify-content: center; }

  .global-footer__stats-inner { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}