/* ========================================
   Vatibo Dumesa - Outline Everything
   ======================================== */

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

:root {
  --c-ink: #1c2430;
  --c-ink-soft: #4c5666;
  --c-paper: #faf8f3;
  --c-paper-alt: #f1ede3;
  --c-paper-card: #fffdf9;
  --c-line: rgba(28,36,48,0.16);
  --c-line-strong: rgba(28,36,48,0.32);
  --c-accent: #26594b;
  --c-accent-light: #3d8a72;
  --c-accent-soft: rgba(38,89,75,0.10);
  --c-accent-2: #b6762f;
  --c-dark: #131d26;
  --c-dark-alt: #1b2733;
  --c-dark-line: rgba(255,255,255,0.18);
  --c-dark-text: #eef1ee;
  --c-dark-text-soft: rgba(238,241,238,0.72);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(28,36,48,0.06), 0 1px 1px rgba(28,36,48,0.04);
  --shadow-md: 0 10px 28px -12px rgba(28,36,48,0.20), 0 3px 8px -2px rgba(28,36,48,0.08);
  --shadow-lg: 0 30px 70px -24px rgba(28,36,48,0.28), 0 10px 24px -10px rgba(28,36,48,0.14);
  --shadow-accent: 0 16px 36px -14px rgba(38,89,75,0.38);

  --space-section: clamp(4rem, 8vw, 7.5rem);
  --space-lg: clamp(2rem, 4vw, 3.5rem);
  --space-md: clamp(1.2rem, 2.4vw, 2rem);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

.u-container { width: min(1240px, 92%); margin-inline: auto; }
.u-text-center { text-align: center; }
.u-hidden { display: none !important; }


.skip-to-content {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 999;
  transform: translateY(-160%);
  transition: transform 0.25s ease;
}
.skip-to-content:focus { transform: translateY(0); }


.c-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1rem 0;
  transition: all 0.35s ease;
}
.c-nav__inner {
  width: min(1240px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  transition: all 0.35s ease;
}
.c-nav.is-floating .c-nav__inner {
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
}
.c-nav--dark .c-nav__inner {
  background: rgba(19, 29, 38, 0.85);
  border-color: var(--c-dark-line);
}
.c-nav--dark .c-nav__link,
.c-nav--dark .c-nav__logo span { color: var(--c-dark-text); }
.c-nav--dark .c-nav__toggle { color: var(--c-dark-text); }

.c-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}
.c-nav__links {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}
.c-nav__link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color 0.25s ease;
}
.c-nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 1.5px; width: 0;
  background: var(--c-accent);
  transition: width 0.3s ease;
}
.c-nav__link:hover, .c-nav__link.is-active { color: var(--c-ink); }
.c-nav__link:hover::after, .c-nav__link.is-active::after { width: 100%; }
.c-nav--dark .c-nav__link { color: var(--c-dark-text-soft); }
.c-nav--dark .c-nav__link:hover, .c-nav--dark .c-nav__link.is-active { color: var(--c-dark-text); }

.c-nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-sm);
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--c-ink);
  transition: all 0.25s ease;
}
.c-nav__toggle:hover { background: var(--c-ink); color: var(--c-paper); }


.c-tabbar {
  position: fixed;
  bottom: -100px;
  left: 12px; right: 12px;
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
  justify-content: space-around;
  padding: 0.6rem 0.3rem;
  z-index: 300;
  transition: bottom 0.35s ease;
}
.c-tabbar.is-active { bottom: 14px; }
.c-tabbar__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-md);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  transition: all 0.25s ease;
}
.c-tabbar__link i { font-size: 1.05rem; }
.c-tabbar__link.is-active { color: var(--c-accent); background: var(--c-accent-soft); }


.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--c-ink);
  background: transparent;
  color: var(--c-ink);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.c-btn--sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.c-btn--primary { border-color: var(--c-accent); color: var(--c-accent); }
.c-btn--primary:hover {
  background: var(--c-accent);
  color: var(--c-paper);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}
.c-btn--outline:hover {
  background: var(--c-ink);
  color: var(--c-paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.c-btn--light { border-color: rgba(238,241,238,0.6); color: var(--c-dark-text); }
.c-btn--light:hover { background: var(--c-dark-text); color: var(--c-dark); }
.c-nav__cta { display: inline-flex; }


.s-hero {
  padding: clamp(7rem, 14vw, 10rem) 0 var(--space-section);
  position: relative;
  overflow: hidden;
}
.s-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.s-hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-pill);
}
.s-hero__title {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  margin-bottom: 1.5rem;
}
.s-hero__title .char {
  display: inline-block;
  animation: charIn 0.6s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: calc(var(--char-index) * 18ms);
}
@keyframes charIn {
  from { opacity: 0; transform: translateY(0.5em) rotate(2deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}
.s-hero__lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--c-ink-soft);
  max-width: 52ch;
  margin-bottom: 2.2rem;
}
.s-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.s-hero__visual { position: relative; }
.s-hero__figure {
  margin: 0;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-paper-card);
}
.s-hero__figure img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }
.s-hero__figure figcaption {
  padding: 1rem 1.4rem;
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  border-top: 1px solid var(--c-line);
}
.s-hero__icon {
  position: absolute;
  top: -34px; right: -20px;
  width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.s-hero__orbit { width: 100%; animation: spin 16s linear infinite; }
.s-hero__orbit-ring { fill: none; stroke: var(--c-line-strong); stroke-width: 1.5; stroke-dasharray: 4 6; }
.s-hero__orbit-dot { fill: var(--c-accent); }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.s-hero__icon-label {
  font-size: 0.62rem;
  text-align: center;
  color: var(--c-ink-soft);
  background: var(--c-paper-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.6rem;
}


.highlight-statement {
  margin: 0 0 var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 3px solid var(--c-accent);
  border-top: 1px solid var(--c-line);
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: var(--c-paper-card);
  box-shadow: var(--shadow-sm);
}
.highlight-statement p {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.9rem;
}
.highlight-statement cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.s-mission { padding: var(--space-section) 0; }
.s-mission__text { max-width: 70ch; color: var(--c-ink-soft); font-size: 1.05rem; }


.s-benefits { padding: var(--space-section) 0; }
.s-benefits__head { max-width: 60ch; margin-bottom: var(--space-lg); }
.s-benefits__head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
.s-benefits__head p { color: var(--c-ink-soft); font-size: 1.05rem; }
.s-benefits__grid, .s-fields__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.c-benefit {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  background: var(--c-paper-card);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.c-benefit:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.c-benefit header, .c-benefit hgroup { margin-bottom: 0.8rem; }
.c-benefit i { font-size: 1.5rem; color: var(--c-accent); margin-bottom: 0.8rem; display: block; }
.c-benefit h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.c-benefit p { color: var(--c-ink-soft); font-size: 0.95rem; }
.c-benefit ul { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.6rem; }
.c-benefit ul li {
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  padding-left: 1.4rem;
  position: relative;
}
.c-benefit ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute; left: 0; top: 2px;
  color: var(--c-accent);
  font-size: 0.75rem;
}


.s-process { padding: var(--space-section) 0; background: var(--c-paper-alt); }
.s-process__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.s-process__sticky { position: sticky; top: 110px; }
.s-process__sticky figure { margin: 0; border: 1.5px solid var(--c-line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--c-paper-card); }
.s-process__sticky img { width: 100%; aspect-ratio: 5/6; object-fit: cover; }
.s-process__sticky figcaption { padding: 1rem 1.3rem; font-size: 0.85rem; color: var(--c-ink-soft); border-top: 1px solid var(--c-line); }
.s-process__steps h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 1rem; }
.s-process__intro { color: var(--c-ink-soft); font-size: 1.02rem; margin-bottom: 2rem; max-width: 60ch; }
.s-process__list { display: flex; flex-direction: column; gap: 1.6rem; }
.s-process__list li { display: flex; gap: 1.3rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--c-line); }
.s-process__list li:last-child { border-bottom: none; }
.s-process__num { font-size: 1.6rem; font-weight: 700; color: var(--c-accent); min-width: 3ch; }
.s-process__list h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.s-process__list p { color: var(--c-ink-soft); font-size: 0.95rem; }


.s-certs { padding: var(--space-section) 0; background: var(--c-dark); color: var(--c-dark-text); }
.s-certs__head { max-width: 60ch; margin-bottom: var(--space-lg); }
.s-certs__head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
.s-certs__head p { color: var(--c-dark-text-soft); font-size: 1.05rem; }
.s-certs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.c-badge {
  border: 1px solid var(--c-dark-line);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  transition: all 0.3s ease;
}
.c-badge:hover { background: rgba(61,138,114,0.16); border-color: var(--c-accent-light); transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5); }
.c-badge i { font-size: 1.6rem; color: var(--c-accent-light); margin-bottom: 0.8rem; display: block; }
.c-badge h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.c-badge p { font-size: 0.9rem; color: var(--c-dark-text-soft); }


.s-webinars { padding: var(--space-section) 0; }
.s-webinars__head { max-width: 60ch; margin-bottom: var(--space-lg); }
.s-webinars__head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
.s-webinars__head p { color: var(--c-ink-soft); }
.s-webinars__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-bottom: 2.5rem; }
.c-webinar-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-paper-card);
  transition: all 0.3s ease;
}
.c-webinar-card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.c-webinar-card header, .c-webinar-card figcaption { padding: 1.6rem; }
.c-webinar-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.c-webinar-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  border-radius: var(--radius-pill);
  margin-bottom: 0.7rem;
}
.c-webinar-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.c-webinar-card p { color: var(--c-ink-soft); font-size: 0.95rem; padding: 0 1.6rem 1.4rem; }
.c-webinar-card header + p, .c-webinar-card figcaption p { padding: 0; margin-bottom: 0.6rem; }
.c-webinar-card__date { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--c-ink-soft); padding: 0 1.6rem 1.6rem; }


.s-webinar-list { padding: var(--space-section) 0; }
.s-webinar-list__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.c-webinar {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  background: var(--c-paper-card);
  transition: all 0.3s ease;
}
.c-webinar:hover { border-color: var(--c-accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.c-webinar img { width: calc(100% + 3.6rem); margin: -1.8rem -1.8rem 1.2rem; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.c-webinar header { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-bottom: 0.6rem; }
.c-webinar h3 { font-size: 1.1rem; }
.c-webinar__format { font-size: 0.75rem; color: var(--c-accent); display: flex; gap: 0.4rem; align-items: center; white-space: nowrap; }
.c-webinar p { color: var(--c-ink-soft); font-size: 0.92rem; margin-bottom: 0.8rem; }
.c-webinar ul { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.c-webinar ul li { font-size: 0.9rem; color: var(--c-ink-soft); padding-left: 1.3rem; position: relative; }
.c-webinar ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--c-accent); font-size: 0.7rem; }
.c-webinar__meta { border-top: 1px solid var(--c-line); padding-top: 1rem; margin-top: 0.4rem; }
.c-webinar__meta p { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; margin-bottom: 0.7rem; }
.c-webinar__level { display: flex; flex-direction: column; gap: 0.4rem; }
.c-webinar__level span { font-size: 0.8rem; color: var(--c-ink-soft); }
meter { width: 100%; height: 8px; }
meter::-webkit-meter-bar { background: var(--c-paper-alt); border-radius: var(--radius-pill); border: 1px solid var(--c-line); }
meter::-webkit-meter-optimum-value { background: var(--c-accent); border-radius: var(--radius-pill); }


.s-format { padding: var(--space-section) 0; background: var(--c-paper-alt); }
.s-format h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: var(--space-lg); }
.s-format__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: var(--space-lg);
  position: relative;
}
.s-format__node {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  background: var(--c-paper-card);
  position: relative;
  transition: all 0.3s ease;
}
.s-format__node:hover { border-color: var(--c-accent); box-shadow: var(--shadow-md); }
.s-format__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1.5px solid var(--c-accent);
  border-radius: 50%;
  color: var(--c-accent);
  font-weight: 700;
  margin-bottom: 1rem;
}
.s-format__node h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.s-format__node p { color: var(--c-ink-soft); font-size: 0.88rem; }
.s-format__figure { margin-bottom: 2rem; }
.s-format__figure figure { margin: 0; border: 1px solid var(--c-line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.s-format__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.s-format__figure figcaption { padding: 1rem 1.4rem; font-size: 0.85rem; color: var(--c-ink-soft); background: var(--c-paper-card); }


.s-faq { padding: var(--space-section) 0; }
.s-faq h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: var(--space-lg); }
.s-faq__list { display: flex; flex-direction: column; gap: 1rem; }
details {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  background: var(--c-paper-card);
  transition: border-color 0.3s ease;
}
details[open] { border-color: var(--c-accent); }
summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--c-accent);
  transition: transform 0.3s ease;
}
details[open] summary::after { transform: rotate(180deg); }
details p { margin-top: 0.9rem; color: var(--c-ink-soft); font-size: 0.95rem; }


.s-cta { position: relative; padding: var(--space-section) 0; overflow: hidden; color: var(--c-dark-text); }
.s-cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.s-cta__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(19,29,38,0.92), rgba(19,29,38,0.75)); }
.s-cta__content { position: relative; z-index: 2; max-width: 60ch; }
.s-cta__content h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
.s-cta__content p { color: var(--c-dark-text-soft); font-size: 1.05rem; margin-bottom: 1.8rem; }
.s-cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; }


.s-page-hero { padding: clamp(7rem, 12vw, 9rem) 0 var(--space-lg); }
.s-page-hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
}
.s-page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1.2rem; }
.s-page-hero__lead { font-size: 1.08rem; color: var(--c-ink-soft); max-width: 65ch; }


.s-fields { padding: var(--space-section) 0; }
.s-method { padding: var(--space-section) 0; background: var(--c-paper-alt); }
.s-method__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.s-method__text h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 1.2rem; }
.s-method__text p { color: var(--c-ink-soft); font-size: 1.02rem; margin-bottom: 1.2rem; max-width: 60ch; }
.s-method__image { margin: 0; border: 1.5px solid var(--c-line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--c-paper-card); }
.s-method__image img { width: 100%; aspect-ratio: 5/6; object-fit: cover; }
.s-method__image figcaption { padding: 1rem 1.3rem; font-size: 0.85rem; color: var(--c-ink-soft); border-top: 1px solid var(--c-line); }

.s-mentor { padding: var(--space-section) 0; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.s-mentor__figure { margin: 0; position: relative; }
.s-mentor__figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-xl); border: 1.5px solid var(--c-line); box-shadow: var(--shadow-lg); }
.s-mentor__figure::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1.5px solid var(--c-accent);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.s-mentor__figure figcaption { font-size: 0.85rem; color: var(--c-ink-soft); margin-top: 1rem; }
.s-mentor__text .highlight-statement { margin-bottom: 1.5rem; }
.s-mentor__text > p { color: var(--c-ink-soft); font-size: 1.02rem; }


.s-audience { padding: var(--space-section) 0; }
.s-compare { padding: var(--space-section) 0; background: var(--c-paper-alt); }
.s-compare h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 1rem; }
.s-compare__intro { color: var(--c-ink-soft); max-width: 65ch; margin-bottom: var(--space-lg); }
.s-compare__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-bottom: var(--space-lg); }
.c-compare-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--c-paper-card);
}
.c-compare-card--accent { border-color: var(--c-accent); box-shadow: var(--shadow-accent); }
.c-compare-card h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.c-compare-card ul { display: flex; flex-direction: column; gap: 0.7rem; }
.c-compare-card li { font-size: 0.95rem; color: var(--c-ink-soft); padding-left: 1.4rem; position: relative; }
.c-compare-card li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--c-accent); font-size: 0.75rem; }

.s-journey { padding: var(--space-section) 0; }
.s-journey__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-bottom: var(--space-lg); }
.s-journey figure { margin: 0; border: 1px solid var(--c-line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--c-paper-card); }
.s-journey img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.s-journey figcaption { padding: 1rem 1.3rem; font-size: 0.85rem; color: var(--c-ink-soft); }


.s-contact-info { padding: 0 0 var(--space-section); }
.s-contact-info__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.c-info-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  text-align: center;
  background: var(--c-paper-card);
  transition: all 0.3s ease;
}
.c-info-card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.c-info-card i { font-size: 1.5rem; color: var(--c-accent); margin-bottom: 0.7rem; display: block; }
.c-info-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.c-info-card p { font-size: 0.92rem; color: var(--c-ink-soft); }
.c-info-card a:hover { color: var(--c-accent); }

.s-contact-form { padding: 0 0 var(--space-section); }
.s-contact-form h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: var(--space-md); }
.c-form--compact {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--c-paper-card);
  box-shadow: var(--shadow-sm);
}
.c-form__row { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.c-form__row--actions { grid-template-columns: 1fr auto; align-items: center; margin-bottom: 0; }
.c-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.c-form__field label { font-size: 0.82rem; font-weight: 500; color: var(--c-ink-soft); }
.c-form__field input, .c-form__field textarea {
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  background: var(--c-paper);
  color: var(--c-ink);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}
.c-form__field input:focus, .c-form__field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-soft);
}
.c-form__field input.is-invalid, .c-form__field textarea.is-invalid { border-color: #b3423a; }
.c-form__checkbox { display: flex; align-items: center; gap: 0.6rem; font-size: 0.86rem; color: var(--c-ink-soft); }
.c-form__checkbox input { width: 18px; height: 18px; accent-color: var(--c-accent); }
.c-form__checkbox a { color: var(--c-accent); text-decoration: underline; }
#form-status { display: block; margin-top: 1rem; font-size: 0.88rem; color: var(--c-accent); }

.s-team { padding: 0 0 var(--space-section); display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.s-team__figure { margin: 0; }
.s-team__figure img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius-xl); border: 1.5px solid var(--c-line); box-shadow: var(--shadow-lg); }
.s-team__figure figcaption { font-size: 0.85rem; color: var(--c-ink-soft); margin-top: 1rem; }
.s-team__text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.s-team__text p { color: var(--c-ink-soft); font-size: 1rem; margin-bottom: 1rem; }

.s-map { padding: 0 0 var(--space-section); }
.s-map h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: var(--space-md); }
.c-map-frame { border: 1px solid var(--c-line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }


.s-thanks { min-height: 68vh; display: flex; align-items: center; padding: 6rem 0; }
.s-thanks__inner { text-align: center; max-width: 640px; margin-inline: auto; }
.s-thanks__inner h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 1.2rem; }
.s-thanks__inner p { color: var(--c-ink-soft); font-size: 1.1rem; margin-bottom: 2.2rem; }


.s-legal { padding: clamp(7rem, 12vw, 9rem) 0 var(--space-section); max-width: 850px; }
.s-legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.6rem; }
.s-legal__updated { color: var(--c-ink-soft); font-size: 0.9rem; margin-bottom: 2.5rem; }
.s-legal h2 { font-size: 1.3rem; margin: 2.2rem 0 0.9rem; }
.s-legal p { color: var(--c-ink-soft); margin-bottom: 1rem; font-size: 0.98rem; }
.c-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.6rem; font-size: 0.9rem; }
.c-table caption { text-align: left; font-size: 0.85rem; color: var(--c-ink-soft); margin-bottom: 0.6rem; }
.c-table th, .c-table td { border: 1px solid var(--c-line-strong); padding: 0.7rem 0.9rem; text-align: left; }
.c-table th { background: var(--c-paper-alt); font-weight: 600; }
.c-deflist { margin: 1rem 0 1.6rem; }
.c-deflist dt { font-weight: 700; margin-top: 1rem; color: var(--c-ink); }
.c-deflist dd { margin: 0.3rem 0 0; color: var(--c-ink-soft); }


.c-footer { background: var(--c-dark); color: var(--c-dark-text); padding: var(--space-section) 0 0; margin-top: auto; }
.c-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-dark-line);
}
.c-footer__col h3 { font-size: 0.95rem; margin-bottom: 1rem; color: var(--c-dark-text); }
.c-footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.c-footer__col a { color: var(--c-dark-text-soft); font-size: 0.9rem; transition: color 0.25s ease; }
.c-footer__col a:hover { color: var(--c-accent-light); }
.c-footer__brand .c-nav__logo { color: var(--c-dark-text); margin-bottom: 1rem; }
.c-footer__brand p { color: var(--c-dark-text-soft); font-size: 0.9rem; max-width: 32ch; }
address { font-style: normal; color: var(--c-dark-text-soft); font-size: 0.9rem; line-height: 1.8; }
address a { color: var(--c-dark-text-soft); }
address a:hover { color: var(--c-accent-light); }
.c-footer__latest li { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 0.9rem; }
.c-footer__latest time { font-size: 0.75rem; color: var(--c-accent-light); }
.c-footer__bottom { padding: 1.6rem 0 2rem; text-align: center; }
.c-footer__bottom p { color: var(--c-dark-text-soft); font-size: 0.82rem; }


.c-cookie {
  position: fixed;
  top: 20px; left: -420px;
  width: min(320px, 88vw);
  background: var(--c-paper-card);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  z-index: 500;
  transition: left 0.5s cubic-bezier(.2,.8,.2,1);
}
.c-cookie.is-visible { left: 20px; }
.c-cookie__icon { font-size: 1.3rem; color: var(--c-accent); margin-bottom: 0.7rem; }
.c-cookie__text { font-size: 0.86rem; color: var(--c-ink-soft); margin-bottom: 0.5rem; }
.c-cookie__text--sub { font-size: 0.78rem; }
.c-cookie__actions { display: flex; gap: 0.7rem; margin-top: 1rem; }

.c-cookie-modal {
  position: fixed; inset: 0;
  background: rgba(19,29,38,0.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 600;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}
.c-cookie-modal.is-visible { opacity: 1; visibility: visible; }
.c-cookie-modal__panel {
  background: var(--c-paper-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  width: min(480px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
}
.c-cookie-modal__panel h2 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.c-cookie-modal__panel > p { color: var(--c-ink-soft); font-size: 0.9rem; margin-bottom: 1.4rem; }
.c-cookie-modal__close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px;
  border: 1px solid var(--c-line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--c-ink);
  transition: all 0.25s ease;
}
.c-cookie-modal__close:hover { background: var(--c-ink); color: var(--c-paper); }
.c-cookie-modal__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--c-line);
}
.c-cookie-modal__row h3 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.c-cookie-modal__row p { font-size: 0.82rem; color: var(--c-ink-soft); }
.c-cookie-modal__row input { width: 20px; height: 20px; accent-color: var(--c-accent); flex-shrink: 0; }
.c-cookie-modal__actions { display: flex; gap: 0.8rem; margin-top: 1.4rem; flex-wrap: wrap; }
body.modal-open { overflow: hidden; }


@media (max-width: 1020px) {
  .s-hero__grid, .s-process__grid, .s-method__grid, .s-mentor, .s-team, .s-journey__grid { grid-template-columns: 1fr; }
  .s-process__sticky { position: static; }
  .s-mentor__figure::before { display: none; }
  .s-format__timeline { grid-template-columns: repeat(2, 1fr); }
  .c-form__row { grid-template-columns: 1fr 1fr; }
  .c-form__field--message { grid-column: span 2; }
  .c-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .c-nav__links, .c-nav__cta { display: none; }
  .c-nav__toggle { display: flex; }
  .c-tabbar { display: flex; }
  .s-hero__icon { display: none; }
}

@media (max-width: 640px) {
  .s-benefits__grid, .s-fields__grid, .s-certs__grid, .s-webinars__grid, .s-webinar-list__grid, .s-compare__grid, .s-contact-info__grid { grid-template-columns: 1fr; }
  .s-format__timeline { grid-template-columns: 1fr; }
  .c-form__row { grid-template-columns: 1fr; }
  .c-form__field--message { grid-column: span 1; }
  .c-form__row--actions { grid-template-columns: 1fr; text-align: left; }
  .c-form__row--actions .c-btn { width: 100%; justify-content: center; }
  .c-footer__grid { grid-template-columns: 1fr; }
  .c-cookie { left: -100vw; width: calc(100vw - 24px); }
  .c-cookie.is-visible { left: 12px; }
}