@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800&display=swap');

/* =============================================
   BASE COLORS via color-mix()
   ============================================= */
:root {
  --base-primary: #4a7c59;
  --base-amber: #c8860a;
  --base-dark: #1a2318;

  --primary: var(--base-primary);
  --primary-light: color-mix(in oklch, var(--base-primary), white 40%);
  --primary-lighter: color-mix(in oklch, var(--base-primary), white 70%);
  --primary-dark: color-mix(in oklch, var(--base-primary), black 25%);
  --primary-xdark: color-mix(in oklch, var(--base-primary), black 50%);

  --amber: var(--base-amber);
  --amber-light: color-mix(in oklch, var(--base-amber), white 50%);
  --amber-lighter: color-mix(in oklch, var(--base-amber), white 75%);
  --amber-dark: color-mix(in oklch, var(--base-amber), black 20%);

  --dark: var(--base-dark);
  --dark-mid: color-mix(in oklch, var(--base-dark), white 30%);
  --dark-soft: color-mix(in oklch, var(--base-dark), white 60%);

  --bg-page: color-mix(in oklch, var(--base-primary), white 96%);
  --bg-alt: color-mix(in oklch, var(--base-amber), white 92%);
  --bg-card: color-mix(in oklch, white, var(--base-primary) 2%);

  --text-primary: color-mix(in oklch, var(--base-dark), white 5%);
  --text-secondary: color-mix(in oklch, var(--base-dark), white 40%);
  --text-muted: color-mix(in oklch, var(--base-dark), white 60%);
  --text-on-dark: color-mix(in oklch, white, var(--base-primary) 8%);

  --border: color-mix(in oklch, var(--base-primary), white 80%);
  --border-strong: color-mix(in oklch, var(--base-primary), white 60%);

  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--base-dark), transparent 88%), 0 1px 2px color-mix(in oklch, var(--base-dark), transparent 94%);
  --shadow-md: 0 4px 6px color-mix(in oklch, var(--base-dark), transparent 88%), 0 2px 4px color-mix(in oklch, var(--base-dark), transparent 92%);
  --shadow-lg: 0 10px 25px color-mix(in oklch, var(--base-dark), transparent 82%), 0 4px 10px color-mix(in oklch, var(--base-dark), transparent 90%);
  --shadow-xl: 0 20px 40px color-mix(in oklch, var(--base-dark), transparent 78%), 0 8px 16px color-mix(in oklch, var(--base-dark), transparent 88%);

  --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;

  --nav-height: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Urbanist', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.65;
  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(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

address { font-style: normal; }

/* =============================================
   COOKIE CONSENT (inline-above-nav)
   ============================================= */
.CookieConsent {
  background: var(--dark);
  color: var(--text-on-dark);
  overflow: hidden;
  transition: max-height var(--transition-slow), opacity var(--transition-slow);
  max-height: 120px;
}

.CookieConsent.is-hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.CookieConsent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 10px var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.CookieConsent-text {
  font-size: 0.82rem;
  color: color-mix(in oklch, white, var(--base-dark) 15%);
  line-height: 1.4;
}

.CookieConsent-text a { color: var(--amber-light); }
.CookieConsent-text a:hover { color: white; }

.CookieConsent-actions { display: flex; gap: 8px; flex-shrink: 0; }

.CookieConsent-btn {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  min-height: 44px;
}

.CookieConsent-btn--accept {
  background: var(--amber);
  color: white;
}
.CookieConsent-btn--accept:hover { background: var(--amber-dark); transform: translateY(-1px); }

.CookieConsent-btn--reject {
  background: transparent;
  color: color-mix(in oklch, white, var(--base-dark) 20%);
  border: 1px solid color-mix(in oklch, white, var(--base-dark) 50%);
}
.CookieConsent-btn--reject:hover { background: color-mix(in oklch, white, var(--base-dark) 80%); color: var(--dark); }

/* =============================================
   NAVIGATION
   ============================================= */
.SiteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.SiteHeader[data-theme="light"] {
  background: color-mix(in oklch, var(--bg-page), transparent 8%);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.SiteHeader[data-theme="dark"] {
  background: color-mix(in oklch, var(--base-dark), transparent 10%);
  backdrop-filter: blur(12px);
}

.SiteHeader-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
}

.SiteHeader-navLeft,
.SiteHeader-navRight {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex: 1;
}

.SiteHeader-navRight { justify-content: flex-end; }

.SiteHeader-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition), opacity var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.SiteHeader-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  border-radius: var(--radius-full);
  transition: width var(--transition);
}

.SiteHeader-link:hover::after,
.SiteHeader-link--active::after { width: 100%; }

.SiteHeader[data-theme="light"] .SiteHeader-link { color: var(--text-primary); }
.SiteHeader[data-theme="light"] .SiteHeader-link:hover { color: var(--primary); }
.SiteHeader[data-theme="dark"] .SiteHeader-link { color: var(--text-on-dark); opacity: 0.88; }
.SiteHeader[data-theme="dark"] .SiteHeader-link:hover { color: var(--amber-light); opacity: 1; }

.SiteHeader-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.SiteHeader-logoImg { width: 36px; height: 36px; }

.SiteHeader-logoText {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.SiteHeader[data-theme="light"] .SiteHeader-logoText { color: var(--text-primary); }
.SiteHeader[data-theme="dark"] .SiteHeader-logoText { color: var(--text-on-dark); }

.SiteHeader-cta {
  padding: 9px 22px;
  background: var(--amber);
  color: white !important;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 2px 8px color-mix(in oklch, var(--base-amber), transparent 60%);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.SiteHeader-cta:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px color-mix(in oklch, var(--base-amber), transparent 50%);
  color: white !important;
}

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

.SiteHeader-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.SiteHeader[data-theme="dark"] .SiteHeader-hamburger span { background: var(--text-on-dark); }

/* =============================================
   MOBILE MENU (curtain drop)
   ============================================= */
.MobileMenu {
  position: fixed;
  inset: 0;
  background: var(--primary-xdark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}

.MobileMenu.is-open {
  transform: translateY(0);
  pointer-events: all;
}

.MobileMenu-list { text-align: center; }

.MobileMenu-item {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.MobileMenu.is-open .MobileMenu-item { opacity: 1; transform: translateY(0); }
.MobileMenu.is-open .MobileMenu-item:nth-child(1) { transition-delay: 0.15s; }
.MobileMenu.is-open .MobileMenu-item:nth-child(2) { transition-delay: 0.22s; }
.MobileMenu.is-open .MobileMenu-item:nth-child(3) { transition-delay: 0.29s; }
.MobileMenu.is-open .MobileMenu-item:nth-child(4) { transition-delay: 0.36s; }
.MobileMenu.is-open .MobileMenu-item:nth-child(5) { transition-delay: 0.43s; }

.MobileMenu-link {
  display: block;
  color: var(--text-on-dark);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  padding: 14px 32px;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.MobileMenu-link:hover { color: var(--amber-light); }

.MobileMenu-link--cta {
  color: var(--amber-light);
  border: 2px solid color-mix(in oklch, var(--amber-light), transparent 50%);
  border-radius: var(--radius-full);
  margin-top: var(--space-sm);
}

.MobileMenu-close {
  position: absolute;
  bottom: 48px;
  background: none;
  border: 2px solid color-mix(in oklch, white, var(--primary-xdark) 60%);
  color: var(--text-on-dark);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}

.MobileMenu-close:hover {
  background: color-mix(in oklch, white, var(--primary-xdark) 85%);
  color: var(--primary-xdark);
}

/* =============================================
   UTILITIES
   ============================================= */
.Container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.SectionLabel {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-lighter);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.SectionLabel--light {
  color: var(--amber-light);
  background: color-mix(in oklch, var(--amber), transparent 80%);
}

.SectionHeading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.Btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  min-height: 48px;
}

.Btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 10px color-mix(in oklch, var(--base-primary), transparent 60%);
}
.Btn--primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in oklch, var(--base-primary), transparent 50%);
}

.Btn--secondary {
  background: var(--primary-lighter);
  color: var(--primary-dark);
}
.Btn--secondary:hover {
  background: var(--primary-light);
  color: var(--primary-xdark);
  transform: translateY(-2px);
}

.Btn--outline {
  background: transparent;
  color: white;
  border: 2px solid color-mix(in oklch, white, transparent 40%);
}
.Btn--outline:hover {
  background: color-mix(in oklch, white, transparent 85%);
  color: white;
  border-color: white;
}

.Btn--light {
  background: white;
  color: var(--primary-dark);
}
.Btn--light:hover {
  background: var(--primary-lighter);
  color: var(--primary-xdark);
  transform: translateY(-2px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.PageHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.PageHero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.PageHero-bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.PageHero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    color-mix(in oklch, var(--base-dark), transparent 20%) 0%,
    color-mix(in oklch, var(--primary-xdark), transparent 30%) 50%,
    color-mix(in oklch, var(--base-dark), transparent 40%) 100%
  );
}

.PageHero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
  padding-bottom: var(--space-lg);
}

.PageHero-badge {
  display: inline-block;
  background: color-mix(in oklch, var(--amber), transparent 75%);
  border: 1px solid color-mix(in oklch, var(--amber-light), transparent 40%);
  color: var(--amber-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.PageHero-heading {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: var(--space-md);
  max-width: 700px;
}

.PageHero-subheading {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: color-mix(in oklch, white, var(--base-dark) 20%);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.PageHero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

.PageHero-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-xl);
}

.HeroCard {
  background: color-mix(in oklch, white, transparent 10%);
  backdrop-filter: blur(16px);
  border: 1px solid color-mix(in oklch, white, transparent 70%);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  transition: all var(--transition);
}

.HeroCard:hover {
  background: color-mix(in oklch, white, transparent 5%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.HeroCard-icon {
  font-size: 1.6rem;
  color: var(--amber-light);
  margin-bottom: var(--space-xs);
}

.HeroCard-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.HeroCard-text {
  font-size: 0.85rem;
  color: color-mix(in oklch, white, var(--base-dark) 25%);
  line-height: 1.5;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.IntroSection {
  padding: var(--space-2xl) 0;
  background: var(--bg-page);
}

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

.IntroSection-text p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
  line-height: 1.7;
}

.IntroSection-text .Btn { margin-top: var(--space-sm); }

.IntroSection-visual { position: relative; }

.IntroSection-imgWrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--border);
}

.IntroSection-img { width: 100%; height: 420px; object-fit: cover; }

.IntroSection-stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--amber);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.IntroSection-stat i { font-size: 1.2rem; }

/* =============================================
   FEATURES GRID
   ============================================= */
.FeaturesSection {
  padding: var(--space-2xl) 0;
  background: var(--bg-alt);
}

.FeaturesSection-header {
  margin-bottom: var(--space-xl);
}

.FeaturesGrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-md);
  align-items: start;
}

.FeaturesGrid-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.ContentCard {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.ContentCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-strong);
}

.ContentCard--featured { height: 100%; }

.ContentCard-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

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

.ContentCard-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-lighter);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.ContentCard-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.ContentCard-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ContentCard-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.ContentCard-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.ContentCard-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

/* =============================================
   TWO COLUMN FEATURES
   ============================================= */
.TwoColFeatures {
  padding: var(--space-2xl) 0;
  background: var(--bg-page);
}

.TwoColFeatures-header { margin-bottom: var(--space-xl); }

.TwoColFeatures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.FeatureItem {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.FeatureItem:nth-child(odd) { border-right: 1px solid var(--border); }

.FeatureItem:hover { background: var(--primary-lighter); }

.FeatureItem-icon {
  font-size: 1.6rem;
  color: var(--primary);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--primary-lighter);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.FeatureItem:hover .FeatureItem-icon {
  background: var(--primary);
  color: white;
}

.FeatureItem-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.FeatureItem-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   GRADIENT SECTION
   ============================================= */
.GradientSection {
  padding: var(--space-2xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-xdark) 0%,
    color-mix(in oklch, var(--primary-xdark), var(--amber-dark) 30%) 50%,
    var(--primary-dark) 100%
  );
  position: relative;
  overflow: hidden;
}

.GradientSection::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: color-mix(in oklch, var(--amber), transparent 85%);
  border-radius: 50%;
  filter: blur(80px);
}

.GradientSection-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.GradientSection-inner--reverse { direction: rtl; }
.GradientSection-inner--reverse > * { direction: ltr; }

.GradientSection-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.GradientSection-desc {
  color: color-mix(in oklch, white, var(--primary-xdark) 20%);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-size: 1.02rem;
}

.GradientSection-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 3px solid color-mix(in oklch, white, transparent 80%);
}

/* =============================================
   TIMELINE
   ============================================= */
.TimelineSection {
  padding: var(--space-2xl) 0;
  background: var(--bg-alt);
}

.TimelineSection-header { margin-bottom: var(--space-xl); }

.Timeline {
  position: relative;
  padding-left: 60px;
}

.Timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--amber), var(--primary-light));
  border-radius: var(--radius-full);
}

.Timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.Timeline-item:last-child { padding-bottom: 0; }

.Timeline-marker {
  position: absolute;
  left: -48px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--bg-alt), var(--shadow-md);
  transition: all var(--transition);
}

.Timeline-item:hover .Timeline-marker {
  background: var(--amber);
  transform: scale(1.1);
}

.Timeline-number {
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
}

.Timeline-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: all var(--transition);
}

.Timeline-item:hover .Timeline-content {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.Timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  display: block;
  margin-bottom: 6px;
}

.Timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.Timeline-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   PRACTICE SECTION
   ============================================= */
.PracticeSection {
  padding: var(--space-2xl) 0;
  background: var(--bg-page);
}

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

.PracticeSection-visual { position: relative; }

.PracticeSection-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.PracticeSection-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--primary);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.PracticeSection-text p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  font-size: 1.02rem;
  line-height: 1.7;
}

.PracticeSection-text .Btn { margin-top: var(--space-sm); }

/* =============================================
   FLOATING SIDEBAR
   ============================================= */
.FloatingSidebar {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 90;
}

.FloatingSidebar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--amber);
  color: white;
  width: 56px;
  padding: 14px 8px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  text-decoration: none;
}

.FloatingSidebar-btn:hover {
  background: var(--amber-dark);
  color: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.FloatingSidebar-btn i { font-size: 1.3rem; }

.FloatingSidebar-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =============================================
   INNER HERO (subpages)
   ============================================= */
.InnerHero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}

.InnerHero-bg {
  position: absolute;
  inset: 0;
}

.InnerHero-bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.InnerHero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in oklch, var(--base-dark), transparent 40%) 0%,
    color-mix(in oklch, var(--base-dark), transparent 20%) 100%
  );
}

.InnerHero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-height) + var(--space-xl));
}

.InnerHero-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
  max-width: 700px;
}

.InnerHero-heading--dark { color: var(--text-primary); }

.InnerHero-sub {
  font-size: 1.1rem;
  color: color-mix(in oklch, white, var(--base-dark) 20%);
  max-width: 580px;
  line-height: 1.6;
}

.InnerHero-sub--dark { color: var(--text-secondary); }

.InnerHero--compact {
  min-height: 280px;
  background: var(--bg-alt);
  padding: var(--space-2xl) 0 var(--space-xl);
  display: block;
}

.InnerHero-content--light { padding-top: calc(var(--nav-height) + var(--space-lg)); }

/* =============================================
   ABOUT SECTION (nasz-sposob)
   ============================================= */
.AboutSection {
  padding: var(--space-2xl) 0;
  background: var(--bg-page);
}

.AboutSection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.AboutSection-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  font-size: 1.02rem;
}

.AboutCard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-left: 4px solid var(--primary);
}

.AboutCard:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--amber);
}

.AboutCard-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.AboutCard-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.AboutCard p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.ProcessSection {
  padding: var(--space-2xl) 0;
  background: var(--bg-alt);
}

.ProcessSection > .Container > .SectionLabel { display: block; margin-bottom: 8px; }

.ProcessGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.ProcessStep {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition);
}

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

.ProcessStep-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-lighter);
  line-height: 1;
  margin-bottom: var(--space-sm);
  display: block;
}

.ProcessStep-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.ProcessStep-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   PRACTICE PAGE
   ============================================= */
.PracticeIntro {
  padding: var(--space-2xl) 0;
  background: var(--bg-page);
}

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

.PracticeIntro-text p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  font-size: 1.02rem;
}

.PracticeIntro-cards { display: flex; flex-direction: column; gap: var(--space-sm); }

.InfoCard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.InfoCard-icon {
  font-size: 1.4rem;
  color: var(--amber);
  margin-bottom: 10px;
}

.InfoCard-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.InfoCard p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.CurriculumSection {
  padding: var(--space-2xl) 0;
  background: var(--bg-alt);
}

.CurriculumSection > .Container > .SectionLabel { display: block; margin-bottom: 8px; }

.CurriculumGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.CurriculumItem {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.CurriculumItem:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--amber-light);
}

.CurriculumItem-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.CurriculumItem-num {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.CurriculumItem-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.CurriculumItem p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   KNOWLEDGE BASE PAGE
   ============================================= */
.KnowledgeSection {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--bg-page);
}

.KnowledgeBlock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.KnowledgeBlock-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--border);
}

.KnowledgeBlock-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-lighter);
  color: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.KnowledgeBlock-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
}

.KnowledgeBlock-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  margin-top: var(--space-md);
}

.KnowledgeBlock-text h3:first-child { margin-top: 0; }

.KnowledgeBlock-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.KnowledgeFact {
  background: var(--primary-lighter);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-left: 3px solid var(--primary);
}

.KnowledgeFact--warn {
  background: var(--amber-lighter);
  border-left-color: var(--amber);
}

.KnowledgeFact i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.KnowledgeFact--warn i { color: var(--amber); }

.KnowledgeFact p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.ContactHero {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  background: var(--bg-alt);
}

.ContactHero-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  max-width: 600px;
}

.ContactHero-sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.65;
}

.ContactSection {
  padding: var(--space-2xl) 0;
  background: var(--bg-page);
}

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

.ContactForm-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.ContactForm-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.ContactForm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.ContactForm-field { margin-bottom: var(--space-sm); }

.ContactForm-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.req { color: var(--amber); }

.ContactForm-input,
.ContactForm-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-page);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all var(--transition);
  outline: none;
}

.ContactForm-input:focus,
.ContactForm-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 80%);
}

.ContactForm-textarea { resize: vertical; min-height: 90px; }

.ContactForm-privacy { margin-bottom: var(--space-md); }

.ContactForm-checkLabel {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.ContactForm-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--primary);
  margin-top: 2px;
  cursor: pointer;
}

.ContactForm-submit { width: 100%; justify-content: center; }

.ContactInfo { padding-top: var(--space-sm); }

.ContactInfo-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.ContactInfo-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.ContactInfo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-lighter);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ContactInfo-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.ContactInfo-item p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }
.ContactInfo-item a { color: var(--primary); }

.ContactInfo-note {
  background: var(--primary-lighter);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border-left: 4px solid var(--primary);
  margin-top: var(--space-md);
}

.ContactInfo-note h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.ContactInfo-note p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ContactMap { margin-top: var(--space-xl); }

.ContactMap-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.ContactMap-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}

/* =============================================
   THANKS PAGE
   ============================================= */
.ThanksPage {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--bg-page);
  min-height: 80vh;
}

.ThanksPage-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.ThanksPage-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.ThanksPage-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}

.ThanksTimeline {
  margin-top: var(--space-2xl);
  text-align: left;
  position: relative;
}

.ThanksTimeline-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.ThanksTimeline-connector {
  width: 2px;
  height: 40px;
  background: var(--border);
  margin-left: 23px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.ThanksTimeline-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.ThanksTimeline-item--done .ThanksTimeline-marker {
  background: var(--primary);
  color: white;
}

.ThanksTimeline-item--current .ThanksTimeline-marker {
  background: var(--amber);
  color: white;
  box-shadow: 0 0 0 4px var(--amber-lighter), var(--shadow-md);
}

.ThanksTimeline-item--upcoming .ThanksTimeline-marker {
  background: var(--border);
  color: var(--text-muted);
}

.ThanksTimeline-content { padding-top: 10px; }

.ThanksTimeline-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.ThanksTimeline-item--upcoming h4 { color: var(--text-muted); }

.ThanksTimeline-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.ThanksTimeline-item--upcoming p { color: var(--text-muted); }

/* =============================================
   LEGAL PAGES
   ============================================= */
.LegalPage {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-2xl);
  background: var(--bg-page);
}

.LegalPage-header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--border);
}

.LegalPage-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.LegalPage-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.LegalCard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

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

.LegalCard h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.LegalCard p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

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

.LegalCard--intro {
  background: var(--primary-lighter);
  border-color: var(--primary-light);
  border-left: 4px solid var(--primary);
}

.LegalCard--highlight {
  background: var(--amber-lighter);
  border-color: var(--amber-light);
  border-left: 4px solid var(--amber);
}

.LegalCard strong { color: var(--text-primary); font-weight: 700; }

.CookieTable {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-sm);
}

.CookieTable-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr 1fr;
  gap: 0;
}

.CookieTable-row > span {
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.CookieTable-row > span:last-child { border-right: none; }

.CookieTable-row--header > span {
  background: var(--primary-lighter);
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.CookieTable-row:last-child > span { border-bottom: none; }

/* =============================================
   FOOTER
   ============================================= */
.SiteFooter {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: var(--space-2xl) 0 0;
  margin-top: auto;
}

.SiteFooter-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid color-mix(in oklch, white, var(--base-dark) 80%);
}

.SiteFooter-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: var(--space-sm);
}

.SiteFooter-logoImg { width: 32px; height: 32px; filter: brightness(0) invert(1); }

.SiteFooter-logo span {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
}

.SiteFooter-tagline {
  font-size: 0.88rem;
  color: color-mix(in oklch, white, var(--base-dark) 35%);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.SiteFooter-address {
  font-size: 0.85rem;
  color: color-mix(in oklch, white, var(--base-dark) 40%);
  line-height: 1.8;
}

.SiteFooter-address a {
  color: color-mix(in oklch, white, var(--base-dark) 35%);
  transition: color var(--transition);
}

.SiteFooter-address a:hover { color: var(--amber-light); }

.SiteFooter-navTitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: var(--space-md);
}

.SiteFooter-navList li { margin-bottom: 10px; }

.SiteFooter-navList a {
  font-size: 0.9rem;
  color: color-mix(in oklch, white, var(--base-dark) 35%);
  transition: color var(--transition);
}

.SiteFooter-navList a:hover { color: white; }

.SiteFooter-bottom {
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.SiteFooter-bottom p {
  font-size: 0.82rem;
  color: color-mix(in oklch, white, var(--base-dark) 55%);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .ProcessGrid { grid-template-columns: repeat(2, 1fr); }
  .FeaturesGrid { grid-template-columns: 1fr; }
  .FeaturesGrid-main .ContentCard-img { height: 300px; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
  }

  .SiteHeader-navLeft,
  .SiteHeader-navRight { display: none; }

  .SiteHeader-hamburger { display: flex; }

  .SiteHeader-nav { justify-content: space-between; }

  .SiteHeader-logo { margin: 0 auto; position: absolute; left: 50%; transform: translateX(-50%); }

  .PageHero-cards { grid-template-columns: 1fr; }
  .PageHero-heading { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .IntroSection-grid,
  .AboutSection-grid,
  .PracticeSection-grid,
  .GradientSection-inner,
  .PracticeIntro-grid,
  .ContactSection-grid { grid-template-columns: 1fr; }

  .GradientSection-inner--reverse { direction: ltr; }

  .TwoColFeatures-grid { grid-template-columns: 1fr; }
  .FeatureItem:nth-child(odd) { border-right: none; }

  .ProcessGrid { grid-template-columns: 1fr; }

  .CurriculumGrid { grid-template-columns: 1fr; }

  .KnowledgeBlock-grid { grid-template-columns: 1fr; }
  .KnowledgeBlock { padding: var(--space-lg); }

  .SiteFooter-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .SiteFooter-bottom { flex-direction: column; text-align: center; }

  .ContactForm-row { grid-template-columns: 1fr; }

  .IntroSection-stat { left: 10px; bottom: 10px; font-size: 0.8rem; }

  .PracticeSection-badge { top: 10px; right: 10px; font-size: 0.78rem; }

  .Timeline { padding-left: 50px; }
  .Timeline-marker { left: -38px; width: 32px; height: 32px; }

  .CookieConsent-inner { flex-direction: column; align-items: flex-start; }

  .CookieTable-row { grid-template-columns: 1fr 1fr; }
  .CookieTable-row > span:nth-child(3),
  .CookieTable-row > span:nth-child(4) { display: none; }
  .CookieTable-row--header > span:nth-child(3),
  .CookieTable-row--header > span:nth-child(4) { display: none; }
}

@media (max-width: 480px) {
  .Container { padding: 0 var(--space-sm); }
  .PageHero-content { padding-left: var(--space-sm); padding-right: var(--space-sm); }
  .PageHero-cards { padding-left: var(--space-sm); padding-right: var(--space-sm); }
  .PageHero-actions { flex-direction: column; }
  .PageHero-actions .Btn { width: 100%; justify-content: center; }
  .LegalCard { padding: var(--space-md); }
  .KnowledgeBlock-header { flex-direction: column; }
}