/* ============================================
   SwiftDSpark — Main Stylesheet
   Organic Shapes concept, Sora font
   Color palette:
   --sage:     #4a7c6f  (primary green, trust)
   --sage-lt:  #6fa898  (lighter sage)
   --cream:    #f7f4ef  (background)
   --cream-dk: #f0ede8  (alt background)
   --sand:     #e8e2d8  (borders)
   --moss:     #2d5a4e  (dark text/headings)
   --amber:    #d4845a  (accent, CTA)
   --amber-lt: #e8a07a  (hover)
   --text:     #3a3530  (body text)
   --text-lt:  #6b6560  (muted text)
   ============================================ */

:root {
  --sage: #4a7c6f;
  --sage-lt: #6fa898;
  --sage-pale: #c8ddd9;
  --cream: #f7f4ef;
  --cream-dk: #f0ede8;
  --sand: #e8e2d8;
  --moss: #2d5a4e;
  --amber: #d4845a;
  --amber-lt: #e8a07a;
  --amber-dk: #b8693f;
  --text: #3a3530;
  --text-lt: #6b6560;
  --white: #fdfcfb;
  --green-pale: #e8f4f0;

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2.5rem;
  --radius-blob: 60% 40% 55% 45% / 50% 60% 40% 50%;

  --shadow-sm: 0 2px 8px rgba(45,90,78,0.08), 0 1px 3px rgba(45,90,78,0.05);
  --shadow-md: 0 8px 24px rgba(45,90,78,0.10), 0 3px 8px rgba(45,90,78,0.06);
  --shadow-lg: 0 20px 48px rgba(45,90,78,0.12), 0 8px 16px rgba(45,90,78,0.07);
  --shadow-amber: 0 8px 24px rgba(212,132,90,0.25), 0 3px 8px rgba(212,132,90,0.12);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body.canvas {
  font-family: 'Sora', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


#cookie-bar {
  position: relative;
  z-index: 1000;
}

.cookie-strip {
  background: var(--moss);
  color: var(--cream);
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  line-height: 1.4;
  transition: max-height var(--transition-slow), opacity var(--transition-slow), padding var(--transition-slow);
  max-height: fit-content;
  overflow: hidden;
}

.cookie-strip.hidden {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.cookie-strip a { color: var(--sage-lt); text-decoration: underline; }

.cookie-strip-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-reject {
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.cookie-btn-accept {
  background: var(--amber);
  color: var(--white);
}
.cookie-btn-accept:hover { background: var(--amber-lt); transform: scale(1.03); }

.cookie-btn-reject {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(247,244,239,0.35);
}
.cookie-btn-reject:hover { background: rgba(255,255,255,0.1); }


.floating-nav {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  width: calc(100% - 2.4rem);
  max-width: 1200px;
  z-index: 900;
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(232,226,216,0.7);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}

.floating-nav.nav-visible {
  transform: translateX(-50%) translateY(0);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}

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

.nav-logo-img {
  width: 32px;
  height: 32px;
}

.nav-brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--moss);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-lt);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--moss);
  background: var(--cream-dk);
}

.nav-link.nav-cta {
  background: var(--amber);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
}
.nav-link.nav-cta:hover { background: var(--amber-lt); color: var(--white); }
.nav-link.nav-cta.active { background: var(--amber-dk); color: var(--white); }

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--moss);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}


.drawer {
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
  clip-path: circle(0px at calc(100% - 2.8rem) 3.2rem);
  transition: clip-path 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--moss);
}

.drawer.is-open {
  clip-path: circle(150vmax at calc(100% - 2.8rem) 3.2rem);
  pointer-events: all;
}

.drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}

.drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.drawer-close:hover { background: rgba(255,255,255,0.22); }

.drawer-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease 0.3s, transform 0.35s ease 0.3s;
}

.drawer.is-open .drawer-links {
  opacity: 1;
  transform: translateY(0);
}

.drawer-links a {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: background var(--transition), color var(--transition);
}
.drawer-links a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--amber-lt);
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-amber);
  font-family: 'Sora', sans-serif;
  min-height: 44px;
}
.btn-primary:hover {
  background: var(--amber-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,132,90,0.35);
}

.btn-primary.btn-sm {
  padding: 0.65rem 1.3rem;
  font-size: 0.875rem;
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--moss);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 2rem;
  border: 2px solid var(--sage-pale);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  font-family: 'Sora', sans-serif;
  min-height: 44px;
}
.btn-ghost:hover {
  border-color: var(--sage);
  background: var(--green-pale);
  transform: translateY(-2px);
}

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

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sage);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition), gap var(--transition);
}
.btn-text-link:hover { color: var(--amber); gap: 0.65rem; }


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--moss);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-body {
  color: var(--text-lt);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--text-lt);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}


.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin: -2px 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
}


.stage {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream) 0%, var(--green-pale) 60%, var(--sage-pale) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 1.5rem 5rem;
}

.stage-blob {
  position: absolute;
  border-radius: var(--radius-blob);
  opacity: 0.35;
  pointer-events: none;
}

.stage-blob--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(ellipse, var(--sage-pale) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  animation: blobFloat1 8s ease-in-out infinite;
}

.stage-blob--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(ellipse, var(--amber-lt) 0%, transparent 70%);
  bottom: -60px;
  left: -60px;
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  opacity: 0.2;
  animation: blobFloat2 10s ease-in-out infinite;
}

.stage-blob--3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(ellipse, var(--sage) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  border-radius: 50% 50% 40% 60% / 40% 60% 40% 60%;
  opacity: 0.12;
  animation: blobFloat3 12s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(-20px, 15px) rotate(5deg); }
  66% { transform: translate(10px, -20px) rotate(-3deg); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(15px, -20px) rotate(8deg); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.stage-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  flex: 1;
}

.stage-label {
  display: inline-block;
  background: rgba(74,124,111,0.12);
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  border: 1.5px solid rgba(74,124,111,0.2);
}

.stage-heading {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--moss);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.stage-heading--accent {
  color: var(--amber);
  position: relative;
}

.stage-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-lt);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}


.breadcrumb-journey {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  row-gap: 0.75rem;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.journey-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sand);
  border: 2.5px solid var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-lt);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.journey-step.active .journey-dot {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(74,124,111,0.18);
  transform: scale(1.1);
}

.journey-step:hover .journey-dot {
  background: var(--sage-lt);
  border-color: var(--sage-lt);
  color: var(--white);
}

.journey-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-lt);
  white-space: nowrap;
  transition: color var(--transition);
}

.journey-step.active .journey-label { color: var(--sage); }

.journey-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--sage-pale), var(--sand));
  min-width: 24px;
  max-width: 60px;
  margin-bottom: 1.4rem;
  align-self: flex-start;
  margin-top: 1.2rem;
}

.stage-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


.stage-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 3rem;
}

.stage-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.stage-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, var(--sage-pale), var(--green-pale));
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  z-index: -1;
  opacity: 0.6;
}

.stage-img {
  width: 100%;
  border-radius: 55% 45% 50% 50% / 45% 50% 50% 55%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  display: block;
}

.stage-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-lt);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1.5px;
  height: 32px;
  background: linear-gradient(to bottom, var(--sage-pale), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}


.spotlight-intro {
  background: var(--cream-dk);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.spotlight-blob {
  position: absolute;
  border-radius: var(--radius-blob);
  pointer-events: none;
}

.spotlight-blob--a {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, var(--sage-pale) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  opacity: 0.5;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.spotlight-text { position: relative; z-index: 1; }

.spotlight-media {
  position: relative;
  z-index: 1;
}

.media-blob-wrap {
  position: relative;
}

.media-blob-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: linear-gradient(135deg, var(--green-pale), var(--sage-pale));
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: -1;
}

.media-img {
  width: 100%;
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
}

.media-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--moss);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--sand);
}
.media-badge i { color: var(--amber); font-size: 1rem; }


.features-two-col {
  background: var(--cream);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.gallery-blob--left {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, var(--green-pale) 0%, transparent 70%);
  top: -80px;
  left: -80px;
  border-radius: 50% 50% 40% 60% / 40% 60% 40% 60%;
  pointer-events: none;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1.5px solid var(--sand);
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 2rem 2.25rem;
  align-items: flex-start;
  transition: background var(--transition);
}
.feature-item:hover { background: var(--cream); }

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--sage);
  transition: background var(--transition), color var(--transition);
}
.feature-item:hover .feature-icon-wrap {
  background: var(--sage);
  color: var(--white);
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 0.4rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-lt);
  line-height: 1.65;
}

.feature-separator {
  grid-column: 1 / -1;
  height: 1.5px;
  background: var(--sand);
}


.programs-section {
  background: #faf9f7;
  padding: 6rem 1.5rem;
}

.shelf-header {
  text-align: center;
  margin-bottom: 3rem;
}

.shelf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--sand);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.program-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
  cursor: zoom-in;
}
.program-card:hover .program-card-img img { transform: scale(1.04); }

.program-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}
.program-tag--alt {
  background: rgba(212,132,90,0.12);
  color: var(--amber-dk);
}

.program-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--moss);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.program-desc {
  font-size: 0.875rem;
  color: var(--text-lt);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.program-modules {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.program-modules li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
}
.program-modules li i { color: var(--sage); font-size: 0.8rem; }


.spotlight-tabs {
  background: var(--cream);
  padding: 6rem 1.5rem;
}

.tabs-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tabs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-lt);
  transition: all var(--transition);
  text-align: left;
  min-height: 44px;
}
.tab-btn i { font-size: 1rem; color: var(--sage-lt); }
.tab-btn:hover {
  background: var(--green-pale);
  border-color: var(--sage-pale);
  color: var(--moss);
}
.tab-btn.active {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.tab-btn.active i { color: var(--white); }

.tabs-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--sand);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
}

.tab-panel {
  display: none;
  padding: 2.5rem;
}
.tab-panel.active { display: block; }

.tab-panel-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

.tab-panel-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--moss);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.tab-panel-desc {
  font-size: 0.95rem;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.tab-panel-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 16/7;
  display: block;
  cursor: zoom-in;
}


.spotlight-remote {
  background: var(--green-pale);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.remote-blob--a {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(74,124,111,0.15) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
}

.remote-blob--b {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(212,132,90,0.1) 0%, transparent 70%);
  bottom: -60px;
  left: -40px;
  border-radius: 45% 55% 60% 40%;
  pointer-events: none;
}

.remote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.remote-img-stack {
  position: relative;
}

.remote-img-main {
  width: 100%;
  border-radius: 50% 50% 45% 55% / 45% 50% 50% 55%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
}

.remote-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
  cursor: zoom-in;
}

.remote-points {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.remote-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--moss);
}
.remote-point i {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}


.cta-section {
  background: var(--cream);
  padding: 7rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, var(--sage-pale) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
  opacity: 0.5;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--moss);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-body {
  color: var(--text-lt);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


.site-footer {
  background: var(--moss);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.footer-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  width: 36px;
  height: 36px;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}

.footer-about-text {
  font-size: 0.85rem;
  color: rgba(247,244,239,0.7);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(247,244,239,0.6);
  font-style: normal;
  line-height: 1.5;
}
.footer-address i { color: var(--sage-lt); margin-top: 0.15rem; flex-shrink: 0; }

.footer-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(247,244,239,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-list a {
  text-decoration: none;
  color: rgba(247,244,239,0.75);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--amber-lt); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  color: rgba(247,244,239,0.75);
}
.footer-contact-item i { color: var(--sage-lt); width: 16px; }
.footer-contact-item a {
  color: rgba(247,244,239,0.75);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--amber-lt); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(247,244,239,0.4);
}


.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 800;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--amber); }


.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--green-pale) 100%);
  padding: 9rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  min-height: 55vh;
  display: flex;
  align-items: center;
}

.page-hero--dark {
  background: linear-gradient(135deg, var(--moss) 0%, #1e3d35 100%);
}

.page-hero--green {
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--sage-pale) 100%);
}

.page-hero-blob {
  position: absolute;
  border-radius: var(--radius-blob);
  pointer-events: none;
}

.page-hero-blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, var(--sage-pale) 0%, transparent 70%);
  top: -100px;
  right: -60px;
  opacity: 0.6;
}

.page-hero-blob--2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(ellipse, var(--amber-lt) 0%, transparent 70%);
  bottom: -40px;
  left: 10%;
  opacity: 0.25;
}

.page-hero--dark .page-hero-blob--1 {
  background: radial-gradient(ellipse, rgba(74,124,111,0.3) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--moss);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.page-hero--dark .page-hero-heading { color: var(--cream); }
.page-hero--dark .section-tag {
  background: rgba(255,255,255,0.12);
  color: var(--sage-lt);
}

.page-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-lt);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.page-hero--dark .page-hero-sub { color: rgba(247,244,239,0.75); }


.about-mission {
  padding: 6rem 1.5rem;
  background: var(--cream-dk);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-img {
  width: 100%;
  border-radius: 50% 50% 45% 55% / 45% 50% 50% 55%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
}

.about-values {
  padding: 6rem 1.5rem;
  background: var(--cream);
}

.values-header {
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--sand);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--sage);
  margin: 0 auto 1rem;
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 0.5rem;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--text-lt);
  line-height: 1.65;
}

.about-process {
  padding: 6rem 1.5rem;
  background: var(--green-pale);
}

.process-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1.5px solid var(--sage-pale);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }

.process-step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sage-pale);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.process-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.9rem;
  color: var(--text-lt);
  line-height: 1.7;
}


.advanced-intro {
  padding: 6rem 1.5rem;
  background: var(--cream-dk);
}

.advanced-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.advanced-checklist {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1.5px solid var(--sand);
  box-shadow: var(--shadow-sm);
}

.checklist-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 1.25rem;
}

.checklist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checklist-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}
.checklist-list li i { color: var(--sage); }

.advanced-modules {
  padding: 6rem 1.5rem;
  background: var(--cream);
}

.modules-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.module-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1.5px solid var(--sand);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.module-card--featured {
  border-color: var(--sage-pale);
  background: linear-gradient(135deg, var(--white), var(--green-pale));
}

.module-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.module-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--sage);
}

.module-level {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber-dk);
  background: rgba(212,132,90,0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.module-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.module-desc {
  font-size: 0.875rem;
  color: var(--text-lt);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.module-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.module-topic {
  background: var(--cream-dk);
  color: var(--text-lt);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
  border: 1px solid var(--sand);
}

.advanced-cta {
  padding: 6rem 1.5rem;
  background: var(--green-pale);
}

.adv-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}


.program-overview {
  padding: 6rem 1.5rem;
  background: var(--cream-dk);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.overview-img {
  width: 100%;
  border-radius: 50% 50% 45% 55% / 45% 50% 50% 55%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
}

.program-curriculum {
  padding: 6rem 1.5rem;
  background: var(--cream);
}

.curriculum-header {
  text-align: center;
  margin-bottom: 3rem;
}

.curriculum-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.curriculum-block {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1.5px solid var(--sand);
  align-items: flex-start;
}
.curriculum-block:last-child { border-bottom: none; }

.curriculum-block-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sage);
  width: 48px;
  flex-shrink: 0;
  line-height: 1;
}

.curriculum-block-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 0.5rem;
}

.curriculum-block-desc {
  font-size: 0.9rem;
  color: var(--text-lt);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.curriculum-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.curriculum-topics span {
  background: var(--green-pale);
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
}

.program-soft-skills {
  padding: 6rem 1.5rem;
  background: var(--green-pale);
}

.soft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.soft-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.soft-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 1.5px solid var(--sage-pale);
  box-shadow: var(--shadow-sm);
}

.soft-feature i {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 1rem;
  flex-shrink: 0;
}

.soft-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 0.3rem;
}

.soft-feature p {
  font-size: 0.85rem;
  color: var(--text-lt);
  line-height: 1.6;
}


.contact-section {
  padding: 6rem 1.5rem;
  background: var(--cream-dk);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-lt);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.contact-detail a,
.contact-detail address {
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  font-style: normal;
  transition: color var(--transition);
}
.contact-detail a:hover { color: var(--amber); }

.contact-languages {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--sand);
}

.contact-lang-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 0.6rem;
}

.contact-lang-desc {
  font-size: 0.875rem;
  color: var(--text-lt);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.lang-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-pale);
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 2rem;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1.5px solid var(--sand);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--moss);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.form-row-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

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

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
  min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,124,111,0.12);
}
.form-group textarea { min-height: 90px; }

.form-footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-lt);
  line-height: 1.5;
  cursor: pointer;
  flex: 1;
}
.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--sage);
  cursor: pointer;
}
.privacy-check a { color: var(--sage); }

.contact-map {
  padding: 4rem 1.5rem 6rem;
  background: var(--cream);
}

.map-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 1.5rem;
  text-align: center;
}

.map-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.map-iframe-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--sand);
}


.thanks-main {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--green-pale) 100%);
}

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

.thanks-icon-wrap {
  margin-bottom: 2rem;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto;
  box-shadow: 0 0 0 12px rgba(74,124,111,0.12);
}

.thanks-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--moss);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.thanks-sub {
  font-size: 1.05rem;
  color: var(--text-lt);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.thanks-next {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1.5px solid var(--sand);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
  text-align: left;
}

.thanks-next-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 1.25rem;
}

.thanks-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.thanks-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.thanks-step-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.thanks-step h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 0.25rem;
}

.thanks-step p {
  font-size: 0.85rem;
  color: var(--text-lt);
  line-height: 1.6;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


.legal-main {
  padding: 8rem 1.5rem 6rem;
  min-height: 70vh;
}

.legal-container {
  max-width: 780px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 3rem;
}

.legal-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--moss);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--text-lt);
}

.legal-body {
  line-height: 1.8;
}

.legal-body p {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.legal-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--moss);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-body strong { color: var(--text); }

.cookies-body p { margin-bottom: 1rem; }


@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .tabs-layout {
    grid-template-columns: 1fr;
  }

  .tabs-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tab-btn {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .stage {
    flex-direction: column;
    padding: 7rem 1.5rem 4rem;
    text-align: center;
  }

  .stage-content { max-width: 100%; }

  .stage-sub { margin: 0 auto 1.5rem; }

  .breadcrumb-journey {
    justify-content: center;
  }

  .journey-line { min-width: 16px; max-width: 32px; }

  .stage-actions { justify-content: center; }

  .stage-visual {
    padding-left: 0;
    padding-top: 2rem;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .spotlight-grid,
  .remote-grid,
  .mission-grid,
  .advanced-grid,
  .overview-grid,
  .soft-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .feature-separator {
    height: 1.5px;
  }

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

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

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

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

  .form-footer-row {
    flex-direction: column;
  }

  .remote-img-secondary {
    bottom: -1rem;
    right: -1rem;
    width: 38%;
  }

  .floating-nav {
    width: calc(100% - 1.6rem);
    top: 0.8rem;
  }

  .tabs-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.4rem;
    padding-bottom: 0.25rem;
  }

  .tab-btn {
    flex-shrink: 0;
    min-width: 110px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .stage-actions {
    flex-direction: column;
    align-items: center;
  }

  .breadcrumb-journey {
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }

  .journey-label { font-size: 0.65rem; }
}