@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap');

:root {
  --clr-primary: #2C6E49;
  --clr-primary-dark: #1e5035;
  --clr-primary-light: #4a9467;
  --clr-secondary: #4D908E;
  --clr-accent: #F4A261;
  --clr-accent-warm: #E76F51;
  --clr-bg: #F7F5F0;
  --clr-bg-alt: #EFF3EF;
  --clr-bg-card: #FDFCF9;
  --clr-text: #1F2D24;
  --clr-text-muted: #5A6B60;
  --clr-text-light: #8FA496;
  --clr-border: #DDE5DC;
  --clr-white: #FFFFFF;

  --shadow-sm: 0 1px 3px rgba(44,110,73,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(44,110,73,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 32px rgba(44,110,73,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 56px rgba(44,110,73,0.14), 0 8px 20px rgba(0,0,0,0.08);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-blob: 60% 40% 70% 30% / 40% 60% 40% 60%;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  --font-head: 'DM Sans', sans-serif;
  --font-body: 'Satoshi', 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--clr-primary-dark); }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


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

.sectionTitle {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.sectionLabel {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(44,110,73,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.sectionSubtitle {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.sectionHead {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.textLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--clr-primary);
  transition: gap 0.2s ease;
}
.textLink:hover { gap: 10px; }
.textLink::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  transition: width 0.2s ease;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}
.btn--outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 8px 20px; font-size: 0.875rem; }


.siteHeader {
  background: rgba(247,245,240,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  z-index: 100;
}

.siteHeader_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.siteHeader_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.siteHeader_logoText {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--clr-text);
  font-weight: 500;
}
.siteHeader_logoText strong {
  color: var(--clr-primary);
  font-weight: 700;
}

.siteHeader_nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navPill {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: all 0.2s ease;
  text-decoration: none;
}
.navPill:hover {
  background: rgba(44,110,73,0.08);
  color: var(--clr-primary);
}
.navPill--active {
  background: rgba(44,110,73,0.12);
  color: var(--clr-primary);
  font-weight: 600;
}
.navPill--cta {
  background: var(--clr-primary);
  color: var(--clr-white) !important;
  box-shadow: var(--shadow-sm);
}
.navPill--cta:hover {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.siteHeader_hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.siteHeader_hamburger:hover { background: rgba(44,110,73,0.08); }
.siteHeader_hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}


.mobileTabBar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  z-index: 200;
  padding: 0 0 env(safe-area-inset-bottom, 0);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.mobileTabBar_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  color: var(--clr-text-muted);
  font-size: 0.65rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 56px;
}
.mobileTabBar_item i { font-size: 1.1rem; }
.mobileTabBar_item--active {
  color: var(--clr-primary);
}
.mobileTabBar_item--active i {
  background: rgba(44,110,73,0.1);
  padding: 4px 12px;
  border-radius: 100px;
}


.heroSection {
  background: linear-gradient(135deg, #2C6E49 0%, #1e5035 60%, #16402b 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0 0;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.heroSection_blobA {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(244,162,97,0.15) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
  animation: blobFloat 8s ease-in-out infinite;
}

.heroSection_blobB {
  position: absolute;
  bottom: 100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(77,144,142,0.2) 0%, transparent 70%);
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.97); }
}

.heroSection_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  flex: 1;
  padding-bottom: var(--space-xl);
}

.heroSection_greeting {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(244,162,97,0.9);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.heroSection_title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}
.heroSection_title em {
  font-style: normal;
  background: linear-gradient(120deg, #F4A261, #E76F51);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heroSection_lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  line-height: 1.7;
}

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

.heroSection_actions .btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--clr-white);
}
.heroSection_actions .btn--outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.7);
}

.heroSection_visual {
  position: relative;
}

.heroSection_imgWrap {
  position: relative;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.heroSection_img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.heroSection_imgBadge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--clr-white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text);
}
.heroSection_imgBadge i { color: var(--clr-primary); font-size: 1.1rem; }

.heroSection_wave {
  width: 100%;
  line-height: 0;
}
.heroSection_wave svg { width: 100%; height: 80px; }


.introSection {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

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

.introSection_text {
  padding-top: var(--space-md);
}

.introSection_text p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

.introSection_text h2 {
  margin-bottom: var(--space-md);
}

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

.statCard {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.statCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary);
}
.statCard--accent { background: linear-gradient(135deg, #EFF8F3, #DAEEE4); }
.statCard--warm { background: linear-gradient(135deg, #FFF6EF, #FFE8D4); }

.statCard_icon {
  font-size: 1.4rem;
  color: var(--clr-primary);
  margin-bottom: var(--space-xs);
  display: block;
}
.statCard--warm .statCard_icon { color: var(--clr-accent-warm); }

.statCard_title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.statCard_text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}


.platformSection {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-alt);
  position: relative;
  overflow: hidden;
}

.platformSection_blob {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(44,110,73,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.platformSection_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.platformCard {
  background: var(--clr-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  transition: all 0.3s ease;
}
.platformCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.platformCard_imgWrap {
  height: 220px;
  overflow: hidden;
}
.platformCard_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.platformCard:hover .platformCard_img { transform: scale(1.05); }

.platformCard_body {
  padding: var(--space-md);
}
.platformCard_title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  color: var(--clr-primary);
}
.platformCard_text {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  line-height: 1.65;
}
.platformCard_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.platformCard_list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}
.platformCard_list li i { color: var(--clr-primary); font-size: 0.8rem; }


.featuresSection {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

.featuresSection_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
}

.featureItem {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--clr-bg-card);
  border-bottom: 1px solid var(--clr-border);
  transition: background 0.2s ease;
}
.featureItem:hover { background: #EFF8F3; }
.featureItem:nth-child(odd) { border-right: 1px solid var(--clr-border); }
.featureItem:nth-last-child(-n+2) { border-bottom: none; }

.featureItem_iconWrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(44,110,73,0.1), rgba(77,144,142,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-primary);
}

.featureItem_title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.featureItem_text {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}


.benefitsSection {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-alt);
  position: relative;
  overflow: hidden;
}

.benefitsSection_blobLeft {
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(244,162,97,0.08) 0%, transparent 70%);
  border-radius: var(--radius-blob);
  pointer-events: none;
}

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

.benefitCard {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.benefitCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(44,110,73,0.3);
}
.benefitCard--featured {
  grid-row: span 2;
  background: linear-gradient(160deg, #EFF8F3 0%, #D4EEDE 100%);
  border-color: rgba(44,110,73,0.2);
}

.benefitCard_top {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.benefitCard_iconCircle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--clr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 0.95rem;
}

.benefitCard_title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.benefitCard_text {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.benefitCard_img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
}


.audienceSection {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

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

.audienceSection_imgStack {
  position: relative;
  height: 480px;
}

.audienceSection_img1 {
  width: 80%;
  height: 360px;
  object-fit: cover;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  box-shadow: var(--shadow-xl);
}

.audienceSection_img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--clr-white);
}

.audienceSection_textCol p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
}

.audienceSection_roleList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: var(--space-md) 0;
}

.roleTag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(44,110,73,0.08);
  color: var(--clr-primary);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.roleTag:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}


.ctaSection {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-alt);
  position: relative;
  overflow: hidden;
}

.ctaSection_blob {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(44,110,73,0.1) 0%, transparent 70%);
  border-radius: var(--radius-blob);
  pointer-events: none;
}

.ctaSection_inner {
  background: linear-gradient(135deg, #2C6E49 0%, #1e5035 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  box-shadow: var(--shadow-xl);
}

.ctaSection_img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.ctaSection_content {
  padding: var(--space-xl);
}

.ctaSection_content .sectionLabel {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.ctaSection_title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.ctaSection_content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-md);
}

.ctaSection_content .btn--primary {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}
.ctaSection_content .btn--primary:hover {
  background: var(--clr-accent-warm);
  border-color: var(--clr-accent-warm);
}

.ctaSection--compact { padding: var(--space-lg) 0; }
.ctaSection_inner--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(135deg, #2C6E49, #4D908E);
  border-radius: var(--radius-xl);
}
.ctaSection_btns {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}
.ctaSection_inner--row .ctaSection_title {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.ctaSection_inner--row p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.ctaSection_inner--row .btn--outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--clr-white);
}
.ctaSection_inner--row .btn--outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--clr-white);
}


.pageHero {
  padding: var(--space-xl) 0 0;
  position: relative;
  overflow: hidden;
}

.pageHero--soft {
  background: linear-gradient(135deg, #2C6E49 0%, #3a8a5e 100%);
}
.pageHero--green {
  background: linear-gradient(135deg, #4D908E 0%, #2C6E49 100%);
}
.pageHero--coral {
  background: linear-gradient(135deg, #E76F51 0%, #2C6E49 80%);
}

.pageHero_blob {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: var(--radius-blob);
}

.pageHero_content {
  padding-bottom: var(--space-xl);
  max-width: 700px;
}

.pageHero_title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.pageHero_lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.pageHero_wave { width: 100%; line-height: 0; }
.pageHero_wave svg { width: 100%; height: 60px; }

.pageHero .sectionLabel {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}


.rolesSection {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

.rolesSection_intro {
  max-width: 700px;
  margin-bottom: var(--space-lg);
}
.rolesSection_intro p {
  color: var(--clr-text-muted);
  margin-top: var(--space-sm);
}

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

.roleCard {
  background: var(--clr-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
}
.roleCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.roleCard--accent { background: linear-gradient(145deg, #EFF8F3, #F7F5F0); }

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

.roleCard_iconWrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.1rem;
}

.roleCard_title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.roleCard_img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.roleCard_text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.roleCard_topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.topicTag {
  background: rgba(44,110,73,0.08);
  color: var(--clr-primary);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 500;
}


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

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

.notForSection_text h2 { margin-bottom: var(--space-sm); }
.notForSection_text p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
}

.infoBox {
  background: linear-gradient(135deg, #FFF6EF, #FFE8D4);
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.infoBox_icon {
  font-size: 1.3rem;
  color: var(--clr-accent-warm);
  margin-top: 2px;
}

.infoBox p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}


.modulesSection {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

.modulesList {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.moduleItem {
  background: var(--clr-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  align-items: start;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.moduleItem:hover {
  border-color: rgba(44,110,73,0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.moduleItem--alt { background: linear-gradient(145deg, #F0F8F3, #F7F5F0); }

.moduleItem_number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(44,110,73,0.2);
  line-height: 1;
  font-family: var(--font-head);
  padding-top: 4px;
}

.moduleItem_title {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.moduleItem_text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.moduleItem_img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.moduleItem_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}


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

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

.formatCard {
  background: var(--clr-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--clr-border);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.formatCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--clr-primary);
}
.formatCard--featured {
  background: linear-gradient(145deg, #2C6E49, #1e5035);
  border-color: transparent;
  color: var(--clr-white);
}
.formatCard--featured h3 { color: var(--clr-white); }
.formatCard--featured p { color: rgba(255,255,255,0.8); }

.formatCard_icon {
  font-size: 2.2rem;
  color: var(--clr-primary);
  margin-bottom: var(--space-sm);
  display: block;
}
.formatCard--featured .formatCard_icon { color: var(--clr-accent); }

.formatCard_title {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.formatCard p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}


.hrIntroSection {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

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

.hrIntroSection_imgWrap {
  border-radius: 60% 40% 40% 60% / 50% 50% 50% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.hrIntroSection_text p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
}

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

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

.hrTopic {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--clr-border);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.hrTopic:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(44,110,73,0.3);
}

.hrTopic_icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(44,110,73,0.12), rgba(77,144,142,0.12));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-primary);
  margin-bottom: var(--space-sm);
}

.hrTopic_title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hrTopic p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.hrLegalSection {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

.hrLegalSection_inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  align-items: start;
  background: var(--clr-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
}

.hrLegalSection_icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.4rem;
}

.hrLegalSection_content p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}


.contactMain {
  min-height: 100vh;
}

.contactSection {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

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

.contactSection_title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: var(--space-sm);
}

.contactSection_lead {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

.contactInfoBlock {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contactInfoItem {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contactInfoItem_icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(44,110,73,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: 1rem;
  margin-top: 2px;
}

.contactInfoItem strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contactInfoItem p { margin: 0; font-size: 0.9rem; color: var(--clr-text-muted); }

.contactMapWrap {
  margin-top: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}


.contactForm {
  background: var(--clr-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
}

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

.contactForm_label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--clr-text);
}

.contactForm_input,
.contactForm_textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-white);
  transition: all 0.2s ease;
  outline: none;
  display: block;
}
.contactForm_input:focus,
.contactForm_textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(44,110,73,0.1);
}
.contactForm_textarea { resize: vertical; min-height: 120px; }

.contactForm_helper {
  display: block;
  font-size: 0.78rem;
  color: var(--clr-text-light);
  margin-top: 4px;
}

.contactForm_field--checkbox .contactForm_checkboxLabel {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.contactForm_field--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--clr-primary);
  cursor: pointer;
}

.contactForm_submit {
  margin-top: var(--space-sm);
  font-size: 1rem;
  padding: 14px 32px;
}


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

.newsletterSection_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: linear-gradient(135deg, #2C6E49, #4D908E);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
}

.newsletterSection_title {
  font-size: 1.6rem;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.newsletterSection_text .sectionLabel {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.newsletterSection_text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.newsletterSection_inputGroup {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.newsletterSection_inputGroup .contactForm_input {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: var(--clr-white);
}
.newsletterSection_inputGroup .contactForm_input::placeholder { color: rgba(255,255,255,0.6); }
.newsletterSection_inputGroup .contactForm_input:focus {
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.newsletterSection_inputGroup .btn--primary {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  white-space: nowrap;
}

.newsletterSection_note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}


.legalSection {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--clr-bg);
  min-height: 80vh;
}

.legalSection_container { max-width: 800px; }

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

.legalSection_title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-xs);
}

.legalSection_meta {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.legalSection_body p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legalSection_body h2 {
  font-size: 1.2rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--clr-text);
}


.thanksPage main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.thanksMain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: var(--space-xl);
}

.thanksContent {
  text-align: center;
  max-width: 480px;
}

.thanksDot {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  animation: dotExpand 0.8s ease forwards;
}

@keyframes dotExpand {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.4); }
  100% { transform: scale(1); opacity: 1; }
}

.thanksTitle {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.5s forwards;
}

.thanksText {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.8s forwards;
}

.thanksLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-primary);
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.1s forwards;
  transition: gap 0.2s ease;
}
.thanksLink:hover { gap: 12px; }

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


.pageFooter {
  background: var(--clr-text);
  color: rgba(255,255,255,0.75);
}

.pageFooter_newsletterRow {
  background: var(--clr-primary-dark);
  padding: var(--space-lg) 0;
}

.pageFooter_newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.pageFooter_newsletterText h4 {
  color: var(--clr-white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.pageFooter_newsletterText p { font-size: 0.875rem; color: rgba(255,255,255,0.65); }

.pageFooter_newsletterForm {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.pageFooter_newsletterForm input {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  min-width: 240px;
  transition: border-color 0.2s;
}
.pageFooter_newsletterForm input::placeholder { color: rgba(255,255,255,0.5); }
.pageFooter_newsletterForm input:focus { border-color: rgba(255,255,255,0.6); }

.pageFooter_main {
  padding: var(--space-xl) 0 var(--space-lg);
}

.pageFooter_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
}

.pageFooter_logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: var(--space-sm);
}
.pageFooter_logo span {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--clr-white);
}
.pageFooter_logo strong { color: var(--clr-accent); }

.pageFooter_desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

.pageFooter_colTitle {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-sm);
}

.pageFooter_links li {
  margin-bottom: 8px;
}
.pageFooter_links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.pageFooter_links a:hover { color: var(--clr-white); }
.pageFooter_links a::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: width 0.2s ease;
}
.pageFooter_links a:hover::before { width: 100%; }

.pageFooter_contactList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pageFooter_contactList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}
.pageFooter_contactList li i {
  color: var(--clr-accent);
  margin-top: 3px;
  width: 14px;
  flex-shrink: 0;
}
.pageFooter_contactList a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.pageFooter_contactList a:hover { color: var(--clr-white); }
.pageFooter_contactList span { color: rgba(255,255,255,0.65); }

.pageFooter_bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) 0;
}
.pageFooter_bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.pageFooter_copyright { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.pageFooter_note { font-size: 0.8rem; color: rgba(255,255,255,0.3); }


.backToTop {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s ease;
  z-index: 150;
  font-size: 1rem;
}
.backToTop.visible {
  opacity: 1;
  transform: translateY(0);
}
.backToTop:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}


.cookieTrigger {
  position: fixed;
  bottom: 80px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 150;
  transition: all 0.2s ease;
}
.cookieTrigger:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}
.cookieTrigger i { color: var(--clr-accent); font-size: 0.9rem; }
.cookieTrigger.pulse {
  animation: cookiePulse 2s ease 1s 3;
}
@keyframes cookiePulse {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50% { box-shadow: 0 0 0 6px rgba(244,162,97,0.2), var(--shadow-md); }
}

.cookieModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  max-width: 460px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow-xl);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.cookieModal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.cookieModal_close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.06);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
  color: var(--clr-text);
}
.cookieModal_close:hover { background: rgba(0,0,0,0.12); }

.cookieModal_title {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookieModal_title i { color: var(--clr-accent); }

.cookieModal_desc {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.cookieModal_categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.cookieCategory {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--clr-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.cookieCategory_info strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.cookieCategory_info p {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin: 0;
}

.cookieToggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookieToggle input { opacity: 0; width: 0; height: 0; }
.cookieToggle_slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ccc;
  border-radius: 24px;
  transition: 0.3s;
}
.cookieToggle_slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}
.cookieToggle input:checked + .cookieToggle_slider { background: var(--clr-primary); }
.cookieToggle input:checked + .cookieToggle_slider::before { transform: translateX(20px); }
.cookieToggle--disabled { opacity: 0.6; pointer-events: none; }
.cookieToggle--disabled .cookieToggle_slider { background: var(--clr-primary); }
.cookieToggle--disabled input:checked + .cookieToggle_slider { background: var(--clr-primary); }

.cookieModal_actions {
  display: flex;
  gap: var(--space-xs);
  justify-content: flex-end;
}


@media (max-width: 1024px) {
  .benefitsSection_grid { grid-template-columns: 1fr 1fr; }
  .benefitCard--featured { grid-row: auto; }
  .pageFooter_grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .hrTopicsSection_grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .siteHeader_nav { display: none; }
  .siteHeader_hamburger { display: flex; }
  .mobileTabBar { display: flex; }

  body { padding-bottom: 56px; }

  .heroSection_inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
  }
  .heroSection_visual { display: none; }
  .heroSection { min-height: auto; padding: var(--space-lg) 0 0; }

  .introSection_grid { grid-template-columns: 1fr; }
  .introSection_cards { grid-template-columns: 1fr 1fr; }

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

  .featuresSection_grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }
  .featureItem:nth-child(odd) { border-right: none; }
  .featureItem:nth-last-child(-n+2) { border-bottom: 1px solid var(--clr-border); }
  .featureItem:last-child { border-bottom: none; }

  .benefitsSection_grid { grid-template-columns: 1fr; }
  .audienceSection_inner { grid-template-columns: 1fr; }
  .audienceSection_imgCol { display: none; }

  .ctaSection_inner {
    grid-template-columns: 1fr;
  }
  .ctaSection_img { display: none; }
  .ctaSection_content { padding: var(--space-lg); }
  .ctaSection_inner--row {
    flex-direction: column;
    align-items: flex-start;
  }

  .rolesSection_grid { grid-template-columns: 1fr; }
  .notForSection_inner { grid-template-columns: 1fr; }
  .formatSection_grid { grid-template-columns: 1fr; }
  .hrIntroSection_grid { grid-template-columns: 1fr; }
  .hrIntroSection_visual { display: none; }
  .hrTopicsSection_grid { grid-template-columns: 1fr; }
  .hrLegalSection_inner { grid-template-columns: 1fr; }

  .contactSection_container { grid-template-columns: 1fr; }
  .newsletterSection_inner { grid-template-columns: 1fr; padding: var(--space-lg); }
  .newsletterSection_inputGroup { flex-direction: column; }

  .moduleItem { grid-template-columns: 60px 1fr; }
  .moduleItem_number { font-size: 1.8rem; }

  .pageFooter_grid { grid-template-columns: 1fr; }
  .pageFooter_newsletter { flex-direction: column; align-items: flex-start; }
  .pageFooter_bottom .container { flex-direction: column; align-items: flex-start; }

  .cookieTrigger { bottom: 72px; }
  .backToTop { bottom: 72px; right: 16px; }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 32px;
    --space-xl: 56px;
  }
  .introSection_cards { grid-template-columns: 1fr; }
  .heroSection_actions { flex-direction: column; }
  .heroSection_actions .btn { width: 100%; justify-content: center; }
  .contactForm { padding: var(--space-md); }
  .pageFooter_newsletterForm { flex-direction: column; }
  .pageFooter_newsletterForm input { min-width: unset; width: 100%; }
}