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

/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --bg: #f5f4f1;
  --bg-alt: #eeecea;
  --bg-dark: #1c1c1a;
  --surface: #ffffff;
  --surface-2: #f0eeeb;
  --accent: #e8a020;
  --accent-dark: #c4841a;
  --accent-light: #f5c76a;
  --txt-primary: #1e1d1b;
  --txt-secondary: #5a5855;
  --txt-muted: #8a8785;
  --txt-inverse: #f5f4f1;
  --border: #dedad5;
  --border-dark: #c5c1bb;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 56px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.07);
  --shadow-accent: 0 6px 24px rgba(232,160,32,0.28);

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

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

  --hdr-h: 72px;
  --mob-bar-h: 64px;
}

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

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

body {
  font-family: 'Albert Sans', sans-serif;
  background: var(--bg);
  color: var(--txt-primary);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: var(--accent-dark); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent); }

ul { list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

.mt-md { margin-top: var(--sp-md); display: inline-block; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 {
  font-family: 'Albert Sans', sans-serif;
  color: var(--txt-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sec-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-xs);
}

.sec-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--txt-primary);
  margin-bottom: var(--sp-sm);
}

.sec-sub {
  font-size: 1.05rem;
  color: var(--txt-secondary);
  max-width: 580px;
  margin: 0 auto;
}

.accent-txt { color: var(--accent); font-style: normal; }

.centered { text-align: center; }
.centered .sec-sub { margin: var(--sp-xs) auto 0; }

/* ===========================
   BUTTONS
=========================== */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--txt-primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-accent);
  text-decoration: none;
  white-space: nowrap;
}

.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--txt-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,160,32,0.38);
}

.btn-accent:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--txt-inverse);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-full);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(232,160,32,0.12);
  color: var(--accent);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ===========================
   HEADER
=========================== */
.hdr {
  position: relative;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hdr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.hdr-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--txt-primary);
  letter-spacing: -0.02em;
}

.hdr-brand em {
  font-style: normal;
  color: var(--accent);
}

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

.nav-lnk {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--txt-secondary);
  border-radius: var(--r-sm);
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.nav-lnk:hover, .nav-lnk.active {
  color: var(--txt-primary);
  background: var(--bg-alt);
}

.nav-lnk.active { color: var(--accent-dark); }

.hdr-cta {
  margin-left: var(--sp-sm);
  flex-shrink: 0;
}

.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===========================
   MOBILE TAB BAR
=========================== */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  height: var(--mob-bar-h);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.10);
}

.mob-bar-inner {
  display: flex;
  height: 100%;
}

.mob-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--txt-muted);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  min-height: 44px;
  padding: 8px 4px;
}

.mob-tab i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.mob-tab.active {
  color: var(--accent-dark);
  background: rgba(232,160,32,0.08);
}

.mob-tab:hover { color: var(--accent); }
.mob-tab:hover i { transform: translateY(-2px); }

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

.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,28,26,0.78) 0%,
    rgba(28,28,26,0.55) 50%,
    rgba(28,28,26,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-md);
  max-width: 700px;
  padding-left: clamp(1.5rem, 8vw, 7rem);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--sp-sm);
}

.hero-h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--txt-inverse);
  line-height: 1.08;
  margin-bottom: var(--sp-md);
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(245,244,241,0.82);
  max-width: 520px;
  margin-bottom: var(--sp-lg);
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(245,244,241,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2.4s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   SECTIONS
=========================== */
.sec {
  padding: var(--sp-2xl) 0;
}

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

.sec-hd {
  margin-bottom: var(--sp-xl);
}

/* ===========================
   BENTO INTRO
=========================== */
.bento-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

.bento-main {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.bento-body {
  color: var(--txt-secondary);
  margin-bottom: var(--sp-sm);
  line-height: 1.75;
}

.bento-side-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.bento-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--sp-md) var(--sp-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.bento-c1 { border-left: 4px solid var(--accent); }
.bento-c2 { border-left: 4px solid #6b9fd4; }
.bento-c3 { border-left: 4px solid #7dba7d; }

/* ===========================
   ICONS
=========================== */
.crd-ico {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--r-md);
  background: rgba(232,160,32,0.12);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.bento-card:hover .crd-ico,
.step-crd:hover .crd-ico,
.principle-crd:hover .crd-ico {
  background: var(--accent);
  color: var(--txt-primary);
}

.crd-ttl {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

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

/* ===========================
   HOW IT WORKS STEPS
=========================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  position: relative;
}

.step-crd {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-lg) var(--sp-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.step-crd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.step-crd:hover::before { transform: scaleX(1); }
.step-crd:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(232,160,32,0.15);
  line-height: 1;
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.04em;
}

.step-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(232,160,32,0.1);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--sp-sm);
  transition: background 0.25s ease;
}

.step-crd:hover .step-ico {
  background: var(--accent);
  color: var(--txt-primary);
}

.step-ttl {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-txt {
  font-size: 0.9rem;
  color: var(--txt-secondary);
  line-height: 1.7;
}

.step-arrow {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-primary);
  font-size: 0.8rem;
  z-index: 2;
  box-shadow: var(--shadow-accent);
}

.step-arrow-last {
  background: var(--txt-primary);
  color: var(--accent);
}

/* ===========================
   VISUAL BREAK
=========================== */
.sec-visual {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.vis-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.vis-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vis-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,26,0.75) 0%, rgba(28,28,26,0.45) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vis-quote {
  max-width: 700px;
  padding: var(--sp-md);
  text-align: center;
}

.vis-q-ico {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: var(--sp-sm);
  display: block;
}

.vis-q-txt {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--txt-inverse);
  font-weight: 500;
  line-height: 1.55;
  font-style: italic;
}

/* ===========================
   TOPICS BENTO
=========================== */
.topics-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-md);
}

.topic-wide {
  grid-column: 1 / 3;
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: box-shadow 0.25s ease;
}

.topic-wide:hover { box-shadow: var(--shadow-xl); }

.topic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topic-img-sm {
  height: 200px;
  object-fit: cover;
}

.topic-content {
  padding: var(--sp-lg);
}

.topic-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.topic-content p {
  font-size: 0.88rem;
  color: var(--txt-secondary);
  line-height: 1.7;
}

.topic-tall {
  grid-column: 3;
  grid-row: 1 / 3;
  background: var(--bg-dark);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease;
}

.topic-tall:hover { transform: translateY(-4px); }

.topic-tall h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--txt-inverse);
}

.topic-tall p {
  font-size: 0.88rem;
  color: rgba(245,244,241,0.7);
  line-height: 1.7;
}

.topic-ico {
  background: rgba(232,160,32,0.18) !important;
  color: var(--accent) !important;
}

.topic-narrow {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.topic-narrow:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.topic-narrow h3 {
  font-size: 1rem;
  font-weight: 700;
}

.topic-narrow p {
  font-size: 0.85rem;
  color: var(--txt-secondary);
  line-height: 1.65;
}

.topic-med {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}

.topic-med:hover { box-shadow: var(--shadow-xl); }

/* ===========================
   TIMELINE
=========================== */
.timeline {
  position: relative;
  padding: var(--sp-md) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--border), var(--accent), var(--border), transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
  align-items: center;
}

.tl-right {
  direction: rtl;
}

.tl-right .tl-content {
  direction: ltr;
}

.tl-date {
  text-align: right;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.tl-right .tl-date {
  text-align: left;
}

.tl-dot {
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg-alt);
  box-shadow: 0 0 0 4px rgba(232,160,32,0.2);
  margin: 0 auto;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.tl-item:hover .tl-dot {
  transform: scale(1.4);
}

.tl-content {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--sp-md) var(--sp-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tl-content:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.tl-ttl {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tl-txt {
  font-size: 0.88rem;
  color: var(--txt-secondary);
  line-height: 1.65;
}

/* ===========================
   AUDIENCE SECTION
=========================== */
.aud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

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

.aud-text-col p {
  color: var(--txt-secondary);
  margin-bottom: var(--sp-sm);
  line-height: 1.75;
}

.aud-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  margin-top: var(--sp-md);
}

.tag {
  display: inline-block;
  background: rgba(232,160,32,0.12);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(232,160,32,0.25);
}

/* ===========================
   CTA BAND
=========================== */
.cta-band {
  background: var(--bg-dark);
  padding: var(--sp-2xl) 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.cta-h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--txt-inverse);
  margin-bottom: 0.5rem;
}

.cta-sub {
  color: rgba(245,244,241,0.65);
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  background: var(--bg-dark);
  padding: var(--sp-2xl) 0 var(--sp-xl);
}

.page-hero-inner {
  max-width: 700px;
}

.page-h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--txt-inverse);
  margin-bottom: var(--sp-sm);
}

.page-sub {
  font-size: 1.05rem;
  color: rgba(245,244,241,0.7);
  line-height: 1.7;
}

/* ===========================
   HOW WE THINK PAGE
=========================== */
.think-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

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

.think-text-col p {
  color: var(--txt-secondary);
  margin-bottom: var(--sp-sm);
  line-height: 1.75;
}

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

.principle-crd {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.principle-crd .crd-ico { margin-bottom: var(--sp-sm); }

.principle-crd .crd-ttl {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.principle-crd .crd-txt {
  font-size: 0.88rem;
  color: var(--txt-secondary);
  line-height: 1.65;
}

.approach-bento {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

.appr-block {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.appr-block p {
  color: var(--txt-secondary);
  margin-bottom: var(--sp-sm);
  line-height: 1.75;
}

.appr-stat-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.appr-stat-block h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.appr-stat-block p {
  font-size: 0.88rem;
  color: var(--txt-secondary);
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}

.why-item {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

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

.why-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  padding: var(--sp-md) var(--sp-md) 0.5rem;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--txt-secondary);
  padding: 0 var(--sp-md) var(--sp-md);
  line-height: 1.65;
}

.why-icon-block {
  height: 240px;
  background: linear-gradient(135deg, var(--bg-dark), #2d2d2a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-big-ico {
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.8;
}

/* ===========================
   GET STARTED PAGE
=========================== */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.module-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-md);
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.module-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }

.mod-num-col {
  display: flex;
  align-items: flex-start;
  padding-top: 0.25rem;
}

.mod-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

.mod-head {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}

.mod-ico { flex-shrink: 0; }

.mod-ttl {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.mod-tag {
  display: inline-block;
  background: rgba(232,160,32,0.12);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-full);
}

.mod-body {
  color: var(--txt-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: var(--sp-sm);
}

.mod-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem var(--sp-md);
  margin-top: var(--sp-sm);
}

.mod-topic {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt-secondary);
}

.mod-topic i {
  color: var(--accent);
  font-size: 0.75rem;
}

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

.res-head { padding-right: var(--sp-md); }
.res-head p { color: var(--txt-secondary); margin-top: var(--sp-sm); }

.res-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.res-crd {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.res-crd:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.res-crd .crd-ico { margin-bottom: var(--sp-xs); }
.res-crd h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }

/* ===========================
   COMMON CHALLENGES PAGE
=========================== */
.challenge-intro {
  margin-bottom: var(--sp-xl);
}

.ch-intro-txt {
  font-size: 1.05rem;
  color: var(--txt-secondary);
  line-height: 1.8;
  max-width: 800px;
  padding: var(--sp-lg);
  background: var(--surface);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

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

.ch-crd {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  gap: var(--sp-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ch-crd:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }

.ch-wide {
  grid-column: 1 / -1;
}

.ch-ico-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--r-md);
  background: rgba(232,160,32,0.1);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.ch-crd:hover .ch-ico-wrap {
  background: var(--accent);
  color: var(--txt-primary);
}

.ch-ttl {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.ch-body p {
  font-size: 0.9rem;
  color: var(--txt-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-sm);
}

.ch-flag {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  margin-top: var(--sp-sm);
}

.ch-flag i { margin-top: 0.1rem; flex-shrink: 0; }

.ch-flag-info {
  background: rgba(107,159,212,0.1);
  color: #2b6cb0;
  border: 1px solid rgba(107,159,212,0.25);
}

.ch-flag-warn {
  background: rgba(232,160,32,0.1);
  color: var(--accent-dark);
  border: 1px solid rgba(232,160,32,0.25);
}

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

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

.prep-text p {
  color: var(--txt-secondary);
  margin-bottom: var(--sp-sm);
  line-height: 1.75;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.chat-form-wrap {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.chat-header {
  background: var(--bg-dark);
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--txt-primary);
  flex-shrink: 0;
}

.chat-header strong {
  color: var(--txt-inverse);
  font-size: 0.95rem;
  display: block;
}

.chat-status {
  font-size: 0.75rem;
  color: rgba(245,244,241,0.6);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.chat-status i {
  color: #5cb85c;
  font-size: 0.5rem;
}

.chat-frm {
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.chat-bubble {
  max-width: 85%;
  border-radius: var(--r-lg);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.company-bubble {
  background: var(--bg-alt);
  color: var(--txt-primary);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  margin-bottom: 0.25rem;
}

.company-bubble p { margin: 0; }

.user-bubble {
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.2);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.chat-input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--txt-primary);
  outline: none;
  border-radius: var(--r-lg);
  transition: box-shadow 0.2s ease;
}

.chat-input:focus {
  box-shadow: 0 0 0 2px rgba(232,160,32,0.4);
}

.chat-textarea {
  resize: vertical;
  min-height: 100px;
}

.chat-privacy {
  margin-top: var(--sp-xs);
}

.privacy-lbl {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--txt-secondary);
  line-height: 1.5;
}

.privacy-chk {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.frm-err {
  color: #c0392b;
  font-size: 0.82rem;
  min-height: 1.2em;
}

.chat-send-btn {
  margin-top: var(--sp-sm);
  align-self: flex-end;
}

.contact-info-block {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: var(--sp-md);
}

.contact-detail {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; }

.contact-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--txt-muted);
  margin-bottom: 0.2rem;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--txt-secondary);
  line-height: 1.6;
}

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-wrap iframe { display: block; }

/* ===========================
   THANKS PAGE
=========================== */
.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--hdr-h) - 120px);
  padding: var(--sp-2xl) var(--sp-md);
}

.thanks-wrap {
  text-align: center;
  max-width: 520px;
}

.thanks-anim {
  margin-bottom: var(--sp-lg);
}

.checkmark-svg {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.checkmark-circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: drawCircle 0.7s ease forwards 0.2s;
}

.checkmark-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.5s ease forwards 0.9s;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.thanks-text {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 1.4s;
}

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

.thanks-h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--sp-sm);
}

.thanks-sub {
  color: var(--txt-secondary);
  line-height: 1.7;
}

/* ===========================
   LEGAL PAGES
=========================== */
.legal-sec { padding-top: var(--sp-xl); }

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

.legal-intro {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  margin-bottom: var(--sp-xl);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.legal-intro p {
  color: var(--txt-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-sm);
}

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

.legal-timeline {
  position: relative;
}

.ltl-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.ltl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.ltl-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--txt-primary);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}

.ltl-marker-letter .ltl-num {
  background: var(--bg-dark);
  color: var(--accent);
}

.ltl-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--accent), var(--border));
  min-height: 24px;
  margin-top: 6px;
}

.ltl-content {
  padding-bottom: var(--sp-md);
}

.ltl-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--txt-primary);
}

.ltl-content p {
  font-size: 0.9rem;
  color: var(--txt-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

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

.ltl-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: var(--sp-xs) 0;
}

.ltl-content ul li {
  font-size: 0.9rem;
  color: var(--txt-secondary);
  line-height: 1.75;
  margin-bottom: 0.4rem;
  padding-left: 0.25rem;
}

.ltl-unnumbered .ltl-marker-dot { align-items: center; }

.ltl-dot-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-alt);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.2);
  flex-shrink: 0;
}

.ltl-unnumbered .ltl-marker {
  padding-top: 4px;
}

.cookie-table {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: var(--sp-sm) 0;
}

.cookie-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-sm);
  padding: 0.6rem var(--sp-sm);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--txt-secondary);
}

.cookie-row:last-child { border-bottom: none; }

.cookie-row-head {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--txt-primary);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cookie-row code {
  font-family: monospace;
  background: rgba(0,0,0,0.06);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-size: 0.8em;
}

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

.ftr-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-lg) var(--sp-md);
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr;
  gap: var(--sp-lg);
  align-items: start;
}

.ftr-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: var(--sp-xs);
}

.ftr-logo span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--txt-inverse);
  letter-spacing: -0.02em;
}

.ftr-logo em {
  font-style: normal;
  color: var(--accent);
}

.ftr-tagline {
  font-size: 0.8rem;
  color: rgba(245,244,241,0.45);
  line-height: 1.5;
}

.ftr-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ftr-nav a {
  font-size: 0.85rem;
  color: rgba(245,244,241,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.15rem 0;
}

.ftr-nav a:hover { color: var(--accent); }

.ftr-contact p {
  font-size: 0.82rem;
  color: rgba(245,244,241,0.6);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.ftr-contact i {
  color: var(--accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.ftr-contact a {
  color: rgba(245,244,241,0.6);
  transition: color 0.2s ease;
}

.ftr-contact a:hover { color: var(--accent); }

.ftr-bar {
  border-top: 1px solid rgba(245,244,241,0.08);
  padding: var(--sp-sm) var(--sp-md);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.ftr-bar p {
  font-size: 0.78rem;
  color: rgba(245,244,241,0.35);
}

.ftr-legal {
  display: flex;
  gap: var(--sp-md);
}

.ftr-legal a {
  font-size: 0.78rem;
  color: rgba(245,244,241,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ftr-legal a:hover { color: var(--accent); }

/* ===========================
   BACK TO TOP
=========================== */
.back-top {
  position: fixed;
  bottom: calc(var(--mob-bar-h) + 16px);
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--txt-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-accent);
  transition: transform 0.2s ease, opacity 0.3s ease, background 0.2s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 150;
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

/* ===========================
   COOKIE BANNER
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-dark);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.ck-left {
  padding: var(--sp-lg);
  border-right: 1px solid rgba(245,244,241,0.08);
}

.ck-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt-inverse);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ck-title i { color: var(--accent); }

.ck-body {
  font-size: 0.82rem;
  color: rgba(245,244,241,0.65);
  line-height: 1.65;
}

.ck-body a { color: var(--accent); }

.ck-right {
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.ck-toggles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ck-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
}

.ck-row-info {
  display: flex;
  flex-direction: column;
}

.ck-row-info strong {
  font-size: 0.82rem;
  color: var(--txt-inverse);
  font-weight: 700;
}

.ck-row-info span {
  font-size: 0.72rem;
  color: rgba(245,244,241,0.45);
}

.ck-toggle {
  width: 44px;
  height: 24px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(245,244,241,0.15);
  position: relative;
  cursor: pointer;
  transition: background 0.25s ease;
  flex-shrink: 0;
}

.ck-toggle--on {
  background: var(--accent);
}

.ck-toggle--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ck-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  transition: transform 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.ck-toggle--on .ck-knob {
  transform: translateX(20px);
}

.ck-btns {
  display: flex;
  gap: var(--sp-xs);
}

.btn-ck-reject {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(245,244,241,0.2);
  background: transparent;
  color: rgba(245,244,241,0.7);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  font-family: 'Albert Sans', sans-serif;
}

.btn-ck-reject:hover {
  border-color: rgba(245,244,241,0.5);
  color: var(--txt-inverse);
  background: rgba(245,244,241,0.06);
}

.btn-ck-accept {
  flex: 1;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: var(--txt-primary);
  border: none;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  font-family: 'Albert Sans', sans-serif;
}

.btn-ck-accept:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .topics-bento {
    grid-template-columns: 1fr 1fr;
  }
  .topic-wide { grid-column: 1 / -1; }
  .topic-tall { grid-column: 1; grid-row: auto; }
  .topic-narrow { grid-column: auto; }
  .topic-med { grid-column: 1 / -1; }
  .timeline::before { left: 24px; }
  .tl-item {
    grid-template-columns: 48px 1fr;
    direction: ltr;
  }
  .tl-right { direction: ltr; }
  .tl-date { text-align: left; font-size: 1.2rem; }
  .tl-dot { margin: 0; }
  .aud-grid { grid-template-columns: 1fr; }
  .aud-img { height: 340px; }
  .think-grid { grid-template-columns: 1fr; }
  .think-img { height: 340px; }
  .approach-bento { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .res-cards { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .prep-block { grid-template-columns: 1fr; }
  .prep-img { height: 300px; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --hdr-h: 64px; }

  .hdr-nav { display: none; }
  .hdr-cta { display: none; }
  .hdr-burger { display: flex; }
  .mob-bar { display: flex; }

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

  .cookie-banner {
    grid-template-columns: 1fr;
    max-height: 80vh;
    overflow-y: auto;
  }

  .ck-left { border-right: none; border-bottom: 1px solid rgba(245,244,241,0.08); }

  .hero-content {
    padding: var(--sp-xl) var(--sp-md);
  }

  .bento-main { padding: var(--sp-lg); }

  .topics-bento {
    grid-template-columns: 1fr;
  }

  .topic-wide { grid-template-columns: 1fr; }
  .topic-wide .topic-img { height: 220px; }

  .challenges-grid { grid-template-columns: 1fr; }
  .ch-wide { grid-column: 1; }
  .ch-crd { flex-direction: column; }

  .ftr-main { grid-template-columns: 1fr; gap: var(--sp-md); }
  .ftr-bar { flex-direction: column; align-items: flex-start; gap: var(--sp-xs); }

  .module-item { grid-template-columns: 1fr; }
  .mod-num-col { display: none; }

  .res-cards { grid-template-columns: 1fr; }

  .tl-item { grid-template-columns: 40px 1fr; gap: var(--sp-sm); }

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

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

  .back-top { bottom: calc(var(--mob-bar-h) + 12px); right: 16px; }

  .cookie-banner { bottom: -200px; }

  .ltl-item { grid-template-columns: 40px 1fr; }

  .cookie-row { grid-template-columns: 1fr 1fr; }
  .cookie-row span:last-child { grid-column: 1 / -1; font-style: italic; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-ghost { color: rgba(245,244,241,0.8); }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-accent,
  .cta-actions .btn-ghost { width: 100%; justify-content: center; }
  .aud-img { height: 260px; }
  .think-img { height: 260px; }
  .prep-img { height: 240px; }
  .vis-q-txt { font-size: 1rem; }
}

@media (min-width: 769px) {
  .back-top { bottom: 32px; }
}