/* =====================================================
   GLYNZOARKRY — STYLESHEET
   Tone: Editorial confidence. Clean authority.
   Font: Epilogue (loaded in HTML)
   ===================================================== */

/* =====================================================
   CUSTOM PROPERTIES
   ===================================================== */
:root {
  --c-ink:      #0f0e0c;
  --c-ink-2:    #2e2d2a;
  --c-ink-3:    #5c5a55;
  --c-ink-4:    #9a9690;
  --c-cream:    #faf8f4;
  --c-cream-2:  #f2efe9;
  --c-cream-3:  #e8e4db;
  --c-white:    #ffffff;

  --c-moss:     #3d6b4f;
  --c-moss-d:   #2e5039;
  --c-moss-l:   #5a8f6e;
  --c-moss-bg:  rgba(61,107,79,0.08);

  --c-amber:    #c27c2a;
  --c-amber-bg: rgba(194,124,42,0.1);

  --c-danger:   #c0392b;

  --c-dark-bg:  #181714;
  --c-dark-s:   #221f1b;
  --c-dark-b:   rgba(255,255,255,0.08);

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 999px;

  --sh-sm: 0 2px 8px rgba(15,14,12,0.06), 0 1px 2px rgba(15,14,12,0.04);
  --sh-md: 0 4px 20px rgba(15,14,12,0.10), 0 2px 6px rgba(15,14,12,0.06);
  --sh-lg: 0 8px 40px rgba(15,14,12,0.14), 0 4px 12px rgba(15,14,12,0.08);
  --sh-xl: 0 16px 60px rgba(15,14,12,0.18), 0 8px 20px rgba(15,14,12,0.10);

  --tr: 0.25s ease;
  --tr-slow: 0.5s ease;

  --hdr-h: 72px;
  --mob-bar-h: 60px;

  --font: 'Epilogue', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--c-cream);
  color: var(--c-ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--c-moss);
  text-decoration: none;
  transition: color var(--tr);
}

a:hover {
  color: var(--c-moss-d);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* =====================================================
   LAYOUT HELPERS
   ===================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sec {
  padding: 6rem 0;
}

.sec-dark {
  background: var(--c-dark-bg);
}

/* =====================================================
   TYPOGRAPHY HELPERS
   ===================================================== */
.sec-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-moss);
  margin-bottom: 1rem;
}

.sec-label.light {
  color: var(--c-moss-l);
}

.sec-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}

.sec-title.light {
  color: #fff;
}

.sec-lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--c-ink-3);
  max-width: 580px;
}

.sec-lead.light {
  color: rgba(255,255,255,0.7);
}

.sec-hd {
  text-align: center;
  margin-bottom: 4rem;
}

.sec-hd .sec-lead {
  margin: 1rem auto 0;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--tr);
  letter-spacing: 0.01em;
}

.btn-pri {
  background: var(--c-moss);
  color: #fff;
  border-color: var(--c-moss);
}

.btn-pri:hover {
  background: var(--c-moss-d);
  border-color: var(--c-moss-d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,107,79,0.35);
}

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

.btn-ghost:hover {
  background: var(--c-moss);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--c-ink);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--c-cream-2);
  color: var(--c-ink);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
  background: var(--c-moss-bg);
  color: var(--c-moss);
  border-color: transparent;
}

.btn-sm:hover {
  background: var(--c-moss);
  color: #fff;
}

/* =====================================================
   LINK WITH ARROW
   ===================================================== */
.lnk-arr {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-moss);
  text-decoration: none;
  transition: gap var(--tr), color var(--tr);
}

.lnk-arr:hover {
  gap: 0.7rem;
  color: var(--c-moss-d);
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   HEADER
   ===================================================== */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  transition: background var(--tr), box-shadow var(--tr), height var(--tr);
  background: transparent;
}

.hdr.scrolled {
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-cream-3), var(--sh-sm);
  height: 60px;
}

.hdr-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hdr-logo {
  flex-shrink: 0;
  transition: opacity var(--tr);
}

.hdr-logo:hover {
  opacity: 0.8;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.hdr-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-ink-2);
  border-radius: var(--r-sm);
  transition: color var(--tr), background var(--tr);
}

.hdr-link:hover {
  color: var(--c-moss);
  background: var(--c-moss-bg);
}

.hdr-link.active {
  color: var(--c-moss);
}

.hdr-cta {
  margin-left: 0.75rem;
  padding: 0.55rem 1.3rem;
  background: var(--c-moss);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--tr);
}

.hdr-cta:hover {
  background: var(--c-moss-d);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(61,107,79,0.35);
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
  margin-left: auto;
}

.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: all var(--tr);
}

.hdr-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hdr-burger.open span:nth-child(2) {
  opacity: 0;
}

.hdr-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   MOBILE NAV OVERLAY
   ===================================================== */
@media (max-width: 900px) {
  .hdr-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--c-dark-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 800;
  }

  .hdr-nav.open {
    display: flex;
  }

  .hdr-link {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: var(--r-md);
  }

  .hdr-link:hover,
  .hdr-link.active {
    background: rgba(255,255,255,0.08);
    color: var(--c-moss-l);
  }

  .hdr-cta {
    margin-left: 0;
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.85rem 2.5rem;
  }

  .hdr-burger {
    display: flex;
    z-index: 901;
  }
}

/* =====================================================
   MOBILE BOTTOM NAV BAR
   ===================================================== */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--c-white);
  border-top: 1px solid var(--c-cream-3);
  box-shadow: 0 -4px 20px rgba(15,14,12,0.08);
  height: var(--mob-bar-h);
}

.mob-bar > a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--c-ink-3);
  text-decoration: none;
  transition: color var(--tr);
}

.mob-bar > a i {
  font-size: 1.1rem;
}

.mob-bar > a.active,
.mob-bar > a:hover {
  color: var(--c-moss);
}

@media (max-width: 900px) {
  .mob-bar {
    display: flex;
  }

  body {
    padding-bottom: var(--mob-bar-h);
  }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--hdr-h);
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,14,12,0.80) 0%,
    rgba(15,14,12,0.55) 50%,
    rgba(15,14,12,0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 5rem 2rem 5rem;
  margin-left: max(2rem, calc((100vw - 1160px) / 2));
  animation: fadeUp 0.9s ease both;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-moss-l);
  border: 1px solid rgba(90,143,110,0.4);
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}

.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-accent {
  color: var(--c-moss-l);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-acts {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: max(2rem, calc((100vw - 1160px) / 2));
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  animation: fadeUp 1s 0.5s ease both;
}

.hero-scroll i {
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

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

/* =====================================================
   PAGE HERO (subpages)
   ===================================================== */
.pg-hero {
  padding: calc(var(--hdr-h) + 4rem) 0 4rem;
  background: var(--c-dark-bg);
  position: relative;
  overflow: hidden;
}

.pg-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--c-dark-b);
}

.pg-hero-inner {
  max-width: 720px;
}

.pg-hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0.75rem 0 1rem;
}

.pg-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 580px;
}

/* =====================================================
   INTRO SECTION (index)
   ===================================================== */
.sec-intro {
  background: var(--c-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-txt .sec-title {
  margin: 0.5rem 0 1.5rem;
}

.intro-txt p {
  font-size: 0.97rem;
  color: var(--c-ink-3);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.intro-txt .lnk-arr {
  margin-top: 0.5rem;
}

.intro-img-wrap {
  position: relative;
}

.intro-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
}

.intro-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-ink);
  box-shadow: var(--sh-md);
}

.intro-badge i {
  color: var(--c-moss);
  font-size: 1rem;
}

/* =====================================================
   OFFER GRID (cards on dark)
   ===================================================== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.crd {
  border-radius: var(--r-xl);
  transition: all var(--tr);
}

.crd-offer {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 2rem;
}

.crd-offer:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(90,143,110,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.crd-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(61,107,79,0.2);
  color: var(--c-moss-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: all var(--tr);
}

.crd-offer:hover .crd-ico {
  background: var(--c-moss);
  color: #fff;
}

.crd-ttl {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.crd-txt {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* crd-who */
.crd-who {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem;
}

.crd-who .crd-ico {
  margin-bottom: 1rem;
}

.crd-who .crd-txt {
  color: rgba(255,255,255,0.65);
}

/* =====================================================
   HOW SECTION
   ===================================================== */
.sec-how {
  background: var(--c-cream);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.how-img-col {
  position: relative;
}

.how-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
}

.how-txt-col .sec-title {
  margin: 0.5rem 0 1rem;
}

.how-txt-col > p {
  font-size: 0.97rem;
  color: var(--c-ink-3);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.how-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background: var(--c-moss);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.step-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.3rem;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--c-ink-3);
  line-height: 1.65;
}

/* =====================================================
   COMPARISON
   ===================================================== */
.sec-comp {
  background: var(--c-cream-2);
}

.comp-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.comp-col {
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
}

.comp-col-a {
  background: var(--c-white);
  border: 1px solid var(--c-cream-3);
}

.comp-col-b {
  background: var(--c-moss);
  color: #fff;
}

.comp-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.comp-head i {
  font-size: 1.25rem;
}

.comp-col-a .comp-head i {
  color: var(--c-danger);
}

.comp-col-b .comp-head i {
  color: rgba(255,255,255,0.9);
}

.comp-head h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-ink);
}

.comp-col-b .comp-head h3 {
  color: #fff;
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.comp-col-a .comp-list li {
  color: var(--c-ink-3);
}

.comp-col-a .comp-list li i {
  color: var(--c-danger);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.comp-col-b .comp-list li {
  color: rgba(255,255,255,0.85);
}

.comp-col-b .comp-list li i {
  color: rgba(255,255,255,0.9);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* =====================================================
   COURSES GRID (homepage)
   ===================================================== */
.sec-courses {
  background: var(--c-white);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.crd-course {
  background: var(--c-white);
  border: 1px solid var(--c-cream-3);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

.crd-course:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: var(--c-cream-2);
}

.course-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.course-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.crd-course:hover .course-img {
  transform: scale(1.04);
}

.course-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--c-amber);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.crd-body {
  padding: 1.5rem;
}

.course-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.course-meta span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-ink-4);
  background: var(--c-cream-2);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
}

.crd-course .crd-ttl {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.5rem;
}

.crd-course .crd-txt {
  font-size: 0.88rem;
  color: var(--c-ink-3);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.courses-cta {
  text-align: center;
}

/* =====================================================
   COURSES FULL (online.html)
   ===================================================== */
.sec-courses-full {
  background: var(--c-cream);
}

.courses-full-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.crd-course-full {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: var(--c-white);
  border: 1px solid var(--c-cream-3);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: all var(--tr);
}

.crd-course-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-xl);
}

.cf-img-col {
  overflow: hidden;
}

.cf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.crd-course-full:hover .cf-img {
  transform: scale(1.04);
}

.cf-txt-col {
  padding: 2.5rem;
}

.cf-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cf-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cf-tag-pop {
  background: var(--c-amber-bg);
  color: var(--c-amber);
}

.cf-tag-adv {
  background: rgba(61,107,79,0.12);
  color: var(--c-moss);
}

.cf-lvl,
.cf-dur {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-ink-3);
}

.cf-ttl {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.cf-desc {
  font-size: 0.92rem;
  color: var(--c-ink-3);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.cf-ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.cf-ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--c-ink-2);
  line-height: 1.55;
}

.cf-ul li i {
  color: var(--c-moss);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* =====================================================
   PLATFORM FEATURES (online.html dark section)
   ===================================================== */
.sec-platform-feat {
  background: var(--c-dark-bg);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.crd-feat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
}

.crd-feat:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(90,143,110,0.3);
  transform: translateY(-3px);
}

.crd-feat .crd-ico {
  background: rgba(61,107,79,0.15);
}

/* =====================================================
   WHO GRID (jak-zaczac)
   ===================================================== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* =====================================================
   FAQ
   ===================================================== */
.sec-faq {
  background: var(--c-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}

.faq-intro .sec-title {
  margin: 0.5rem 0 1rem;
}

.faq-intro > p {
  font-size: 0.92rem;
  color: var(--c-ink-3);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--c-cream-3);
}

.faq-item:first-child {
  border-top: 1px solid var(--c-cream-3);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-ink);
  transition: color var(--tr);
}

.faq-q:hover {
  color: var(--c-moss);
}

.faq-q[aria-expanded="true"] {
  color: var(--c-moss);
}

.faq-ico {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--c-ink-4);
  transition: transform var(--tr), color var(--tr);
}

.faq-q[aria-expanded="true"] .faq-ico {
  transform: rotate(180deg);
  color: var(--c-moss);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a.open {
  max-height: 600px;
}

.faq-a p {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--c-ink-3);
  line-height: 1.75;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.sec-cta-banner {
  background: var(--c-cream-2);
}

.cta-banner {
  background: var(--c-dark-bg);
  border-radius: var(--r-xl);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,107,79,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-txt {
  flex: 1;
  min-width: 260px;
}

.cta-banner-txt h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.cta-banner-txt p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.cta-banner-acts {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* =====================================================
   STEPS TIMELINE (jak-zaczac)
   ===================================================== */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.step-tl {
  display: grid;
  grid-template-columns: 52px 2px 1fr;
  gap: 0 1.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
}

.step-tl-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-moss);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(61,107,79,0.3);
}

.step-tl-line {
  width: 2px;
  background: linear-gradient(180deg, var(--c-moss) 0%, var(--c-cream-3) 100%);
  align-self: stretch;
  margin: 0 auto;
}

.step-tl-line.last {
  background: transparent;
}

.step-tl-body {
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
}

.step-tl-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.5rem;
}

.step-tl-body p {
  font-size: 0.9rem;
  color: var(--c-ink-3);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* =====================================================
   PHILOSOPHY PAGE
   ===================================================== */
.sec-philos-story {
  background: var(--c-white);
}

.philos-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.philos-img-col {
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  aspect-ratio: 4/3;
}

.philos-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.philos-img-col:hover .philos-img {
  transform: scale(1.04);
}

.philos-txt-col .sec-title {
  margin: 0.5rem 0 1.25rem;
}

.philos-txt-col p {
  font-size: 0.95rem;
  color: var(--c-ink-3);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Values */
.sec-values {
  background: var(--c-cream-2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.crd-value {
  background: var(--c-white);
  border: 1px solid var(--c-cream-3);
  padding: 2rem 1.5rem;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  transition: all var(--tr);
}

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

.val-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(61,107,79,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.crd-value .crd-ttl {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.75rem;
}

.crd-value .crd-txt {
  font-size: 0.85rem;
  color: var(--c-ink-3);
  line-height: 1.7;
}

/* Approach */
.sec-approach {
  background: var(--c-white);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.approach-txt .sec-title {
  margin: 0.5rem 0 1.25rem;
}

.approach-txt p {
  font-size: 0.95rem;
  color: var(--c-ink-3);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.approach-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-moss);
  background: var(--c-moss-bg);
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(61,107,79,0.2);
}

.approach-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 4/3;
}

.approach-img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.approach-img:hover .approach-img-el {
  transform: scale(1.04);
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.sec-contact {
  background: var(--c-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.frm-hd {
  margin-bottom: 2rem;
}

.frm-hd h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 0.4rem;
}

.frm-hd p {
  font-size: 0.9rem;
  color: var(--c-ink-3);
}

.frm-row {
  margin-bottom: 1.1rem;
}

.frm-lbl {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-ink-2);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.frm-inp {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--c-cream-3);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--c-ink);
  background: var(--c-white);
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.frm-inp:focus {
  border-color: var(--c-moss);
  box-shadow: 0 0 0 3px rgba(61,107,79,0.12);
}

.frm-ta {
  resize: vertical;
  min-height: 130px;
}

.frm-check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.frm-check-lbl {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}

.frm-check-lbl input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--c-moss);
  flex-shrink: 0;
}

.frm-check-txt {
  font-size: 0.82rem;
  color: var(--c-ink-3);
  line-height: 1.55;
}

.frm-check-txt a {
  color: var(--c-moss);
  text-decoration: underline;
}

.frm-err {
  font-size: 0.82rem;
  color: var(--c-danger);
  margin-bottom: 0.75rem;
  min-height: 1.2em;
}

.frm-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ci-card {
  background: var(--c-white);
  border: 1px solid var(--c-cream-3);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: var(--sh-sm);
}

.ci-card i {
  font-size: 1.2rem;
  color: var(--c-moss);
  margin-bottom: 0.6rem;
  display: block;
}

.ci-card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  margin-bottom: 0.3rem;
}

.ci-card p,
.ci-card a {
  font-size: 0.92rem;
  color: var(--c-ink-2);
  line-height: 1.55;
}

.contact-map {
  margin-top: 3rem;
}

.contact-map h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 1rem;
}

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--c-cream-3);
}

.map-wrap iframe {
  display: block;
}

/* =====================================================
   THANKS PAGE
   ===================================================== */
.thanks-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--hdr-h) 2rem 2rem;
  background: var(--c-cream);
}

.thanks-wrap {
  text-align: center;
  max-width: 520px;
  padding: 3rem;
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--c-cream-3);
}

.thanks-icon {
  font-size: 3.5rem;
  color: var(--c-moss);
  margin-bottom: 1.25rem;
  display: block;
  animation: fadeUp 0.6s ease both;
}

.thanks-h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.thanks-sub {
  font-size: 0.92rem;
  color: var(--c-ink-3);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.thanks-sub a {
  color: var(--c-moss);
  text-decoration: underline;
}

.thanks-countdown {
  margin-bottom: 1.5rem;
}

.thanks-countdown p {
  font-size: 0.85rem;
  color: var(--c-ink-4);
  margin-bottom: 0.75rem;
}

.thanks-prog-wrap {
  height: 4px;
  background: var(--c-cream-2);
  border-radius: var(--r-full);
  overflow: hidden;
}

.thanks-prog {
  height: 100%;
  background: var(--c-moss);
  border-radius: var(--r-full);
  width: 0%;
  transition: width 5s linear;
}

.thanks-btn {
  min-width: 180px;
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-main {
  padding-top: var(--hdr-h);
  min-height: 100vh;
}

.legal-hd {
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--c-cream-3);
  background: var(--c-white);
}

.legal-hd h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--c-ink-4);
}

.legal-wrap {
  padding: 3rem 0 6rem;
}

.legal-intro {
  font-size: 1.02rem;
  color: var(--c-ink-3);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-cream-3);
}

.legal-sec {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.legal-sec h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--c-cream-3);
}

.legal-sec h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-ink);
  margin: 1.5rem 0 0.6rem;
}

.legal-sec p {
  font-size: 0.92rem;
  color: var(--c-ink-3);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.legal-ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-ul li {
  font-size: 0.92rem;
  color: var(--c-ink-3);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.legal-sum {
  background: var(--c-cream-2);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--c-cream-3);
}

.legal-sum-alt {
  background: rgba(61,107,79,0.06);
  border-color: rgba(61,107,79,0.2);
}

/* Cookies */
.legal-cookies {
  background: var(--c-cream);
}

.cookies-intro-box {
  background: var(--c-white);
  border: 1px solid var(--c-cream-3);
  border-radius: var(--r-xl);
  padding: 2rem;
  margin-bottom: 2.5rem;
  max-width: 760px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.cookies-intro-box i {
  font-size: 1.5rem;
  color: var(--c-amber);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.cookies-intro-box p {
  font-size: 0.9rem;
  color: var(--c-ink-3);
  line-height: 1.7;
}

.cookie-cat-block {
  background: var(--c-white);
  border: 1px solid var(--c-cream-3);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  max-width: 760px;
}

.cookie-cat-block h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.5rem;
}

.cookie-cat-block p {
  font-size: 0.88rem;
  color: var(--c-ink-3);
  line-height: 1.7;
}

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

.cookie-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cookie-tbl th {
  background: var(--c-cream-2);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-cream-3);
  white-space: nowrap;
}

.cookie-tbl td {
  padding: 0.7rem 1rem;
  color: var(--c-ink-3);
  border-bottom: 1px solid var(--c-cream-3);
  line-height: 1.55;
  vertical-align: top;
}

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

/* Terms TOC */
.legal-terms {
  background: var(--c-cream);
}

.terms-toc {
  background: var(--c-white);
  border: 1px solid var(--c-cream-3);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  max-width: 400px;
  margin-bottom: 3rem;
}

.toc-h {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-4);
  margin-bottom: 1rem;
}

.terms-toc ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.terms-toc li a {
  font-size: 0.88rem;
  color: var(--c-moss);
  transition: color var(--tr);
}

.terms-toc li a:hover {
  color: var(--c-moss-d);
}

/* =====================================================
   FOOTER
   ===================================================== */
.ftr {
  background: var(--c-dark-bg);
}

.ftr-quote {
  background: var(--c-dark-s);
  border-bottom: 1px solid var(--c-dark-b);
  padding: 3rem 0;
}

.ftr-q-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.ftr-q-ico {
  font-size: 1.5rem;
  color: var(--c-moss-l);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.ftr-q-txt {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.ftr-q-cite {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-moss-l);
}

.ftr-main {
  padding: 4rem 0 2.5rem;
}

.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.ftr-logo {
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.ftr-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.ftr-addr {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 2;
}

.ftr-addr i {
  color: var(--c-moss-l);
  margin-right: 0.4rem;
  width: 14px;
  opacity: 0.8;
}

.ftr-addr a {
  color: rgba(255,255,255,0.55);
  transition: color var(--tr);
}

.ftr-addr a:hover {
  color: var(--c-moss-l);
}

.ftr-h {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.ftr-ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ftr-ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--tr), padding-left var(--tr);
  display: inline-block;
}

.ftr-ul a:hover {
  color: var(--c-moss-l);
  padding-left: 4px;
}

.ftr-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-dark-b);
  flex-wrap: wrap;
}

.ftr-btm p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* =====================================================
   COOKIE CONSENT
   ===================================================== */
.cc-wrap {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 3rem);
  max-width: 500px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cc-wrap.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
}

.cc-card {
  background: rgba(24,23,20,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.cc-compact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cc-msg {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  min-width: 200px;
}

.cc-msg a {
  color: var(--c-moss-l);
  text-decoration: underline;
}

.cc-acts {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cc-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--tr);
}

.cc-acc {
  background: var(--c-moss);
  color: #fff;
}

.cc-acc:hover {
  background: var(--c-moss-d);
  transform: translateY(-1px);
}

.cc-set {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

.cc-set:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.cc-panel {
  display: none;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cc-panel.visible {
  display: block;
}

.cc-ttl {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.cc-cat {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cc-cat:last-of-type {
  border-bottom: none;
}

.cc-cat-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.cc-cat-hd span:first-child {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.cc-req {
  font-size: 0.72rem;
  color: var(--c-moss-l);
  font-weight: 600;
}

.cc-cat-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.cc-tog {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cc-tog input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-tog-sl {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--tr);
}

.cc-tog-sl::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--tr);
}

.cc-tog input:checked + .cc-tog-sl {
  background: var(--c-moss);
}

.cc-tog input:checked + .cc-tog-sl::before {
  transform: translateX(18px);
}

.cc-panel-acts {
  margin-top: 1rem;
}

.cc-panel-acts .cc-btn {
  width: 100%;
}

/* =====================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ===================================================== */
@media (max-width: 1024px) {
  .sec {
    padding: 5rem 0;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ftr-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .crd-course-full {
    grid-template-columns: 260px 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}

/* =====================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ===================================================== */
@media (max-width: 768px) {
  :root {
    --hdr-h: 60px;
  }

  .sec {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .intro-grid,
  .how-grid,
  .philos-story-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-img-wrap {
    order: -1;
  }

  .offer-grid,
  .comp-wrap,
  .who-grid,
  .courses-grid,
  .feat-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cta-banner {
    flex-direction: column;
    padding: 2.5rem 1.75rem;
  }

  .cta-banner-acts {
    width: 100%;
    flex-direction: column;
  }

  .cta-banner-acts .btn {
    width: 100%;
  }

  .ftr-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ftr-btm {
    flex-direction: column;
    text-align: center;
  }

  .crd-course-full {
    grid-template-columns: 1fr;
  }

  .cf-img-col {
    aspect-ratio: 16/9;
  }

  .hero-h1 {
    font-size: 2.4rem;
  }

  .step-tl {
    grid-template-columns: 44px 2px 1fr;
  }

  .cc-wrap {
    width: calc(100% - 2rem);
    bottom: calc(var(--mob-bar-h) + 12px);
  }

  .cc-compact {
    flex-direction: column;
    align-items: flex-start;
  }

  .cc-acts {
    width: 100%;
  }

  .cc-acts .cc-btn {
    flex: 1;
  }
}

/* =====================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ===================================================== */
@media (max-width: 480px) {
  .hero-h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-tag { font-size: 0.65rem; }

  .sec { padding: 3rem 0; }

  .cta-banner { border-radius: 16px; }

  .ftr-q-txt { font-size: 1rem; }

  .cc-wrap { bottom: calc(var(--mob-bar-h) + 8px); }

  .pg-hero-h1 { font-size: 2rem; }

  .cf-txt-col { padding: 1.5rem; }

  .comp-col { padding: 1.5rem; }

  .step-tl { grid-template-columns: 40px 2px 1fr; }
  .step-tl-num { width: 38px; height: 38px; font-size: 0.9rem; }

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

  .hero-acts { flex-direction: column; }
  .hero-acts .btn { width: 100%; }
}

/* =====================================================
   PRINT
   ===================================================== */
@media print {
  .hdr, .mob-bar, .cc-wrap, .ftr-quote { display: none; }
  body { background: white; color: black; }
  .legal-main { padding-top: 2rem; }
}