


:root {
  
  --fo-ink: #1a1a2e;
  --fo-ink-soft: #2d2d44;
  --fo-white: #f8f7f4;
  --fo-white-pure: #ffffff;

  
  --fo-yellow: #f5c518;
  --fo-yellow-dark: #d4a80e;
  --fo-yellow-light: #fef3b0;
  --fo-green: #2ec27e;
  --fo-green-dark: #1e9460;
  --fo-green-light: #d4f5e7;
  --fo-coral: #ff5e5b;
  --fo-coral-dark: #d93e3b;
  --fo-coral-light: #ffe0df;
  --fo-purple: #6c3fc8;
  --fo-purple-dark: #4e2c99;
  --fo-purple-light: #ede0ff;
  --fo-blue: #1d6fe8;
  --fo-blue-light: #dceeff;

  
  --fo-gray-100: #f4f3f0;
  --fo-gray-200: #e8e6e0;
  --fo-gray-400: #a8a39a;
  --fo-gray-600: #6b6560;
  --fo-gray-800: #3a3631;

  
  --fo-shadow-sm: 0 1px 3px rgba(26,26,46,0.08), 0 1px 2px rgba(26,26,46,0.06);
  --fo-shadow-md: 0 4px 12px rgba(26,26,46,0.10), 0 2px 6px rgba(26,26,46,0.07);
  --fo-shadow-lg: 0 12px 32px rgba(26,26,46,0.13), 0 4px 12px rgba(26,26,46,0.08);
  --fo-shadow-xl: 0 24px 56px rgba(26,26,46,0.16), 0 8px 20px rgba(26,26,46,0.10);

  
  --fo-space-xs: 0.5rem;
  --fo-space-sm: 1rem;
  --fo-space-md: 1.5rem;
  --fo-space-lg: 2.5rem;
  --fo-space-xl: 4rem;
  --fo-space-2xl: 6rem;
  --fo-space-3xl: 9rem;

  
  --fo-radius-sm: 6px;
  --fo-radius-md: 12px;
  --fo-radius-lg: 20px;
  --fo-radius-xl: 32px;
  --fo-radius-pill: 999px;

  
  --fo-font: 'Space Grotesk', sans-serif;

  
  --fo-nav-h: 72px;

  
  --fo-ease: cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

body {
  font-family: var(--fo-font);
  background-color: var(--fo-white);
  color: var(--fo-ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: var(--fo-font); }
input, textarea, select { font-family: var(--fo-font); }


h1, h2, h3, h4, h5 { line-height: 1.15; font-weight: 700; color: var(--fo-ink); }

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 600; }

p { line-height: 1.75; color: var(--fo-gray-800); }


.fo-container-narrow {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}


.fo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--fo-radius-pill);
  font-family: var(--fo-font);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s var(--fo-ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.fo-btn-primary {
  background: var(--fo-ink);
  color: var(--fo-white-pure);
  box-shadow: var(--fo-shadow-md);
}
.fo-btn-primary:hover {
  background: var(--fo-purple);
  transform: translateY(-2px);
  box-shadow: var(--fo-shadow-lg);
}

.fo-btn-ghost {
  background: transparent;
  color: var(--fo-white-pure);
  border: 2px solid rgba(255,255,255,0.6);
}
.fo-btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--fo-white-pure);
  transform: translateY(-2px);
}

.fo-btn-nav {
  background: var(--fo-yellow);
  color: var(--fo-ink);
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
}
.fo-btn-nav:hover {
  background: var(--fo-yellow-dark);
  transform: translateY(-1px);
  box-shadow: var(--fo-shadow-md);
}

.fo-btn-accent {
  background: var(--fo-coral);
  color: var(--fo-white-pure);
  box-shadow: var(--fo-shadow-md);
}
.fo-btn-accent:hover {
  background: var(--fo-coral-dark);
  transform: translateY(-2px);
  box-shadow: var(--fo-shadow-lg);
}

.fo-btn-cta {
  background: var(--fo-yellow);
  color: var(--fo-ink);
  font-size: 1rem;
  padding: 1rem 2rem;
  box-shadow: var(--fo-shadow-md);
}
.fo-btn-cta:hover {
  background: var(--fo-yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--fo-shadow-lg);
}

.fo-btn-overlay {
  background: var(--fo-yellow);
  color: var(--fo-ink);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  margin-top: var(--fo-space-lg);
}
.fo-btn-overlay:hover {
  background: var(--fo-yellow-dark);
}

.fo-btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  margin-top: var(--fo-space-sm);
}


.fo-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fo-purple);
  background: var(--fo-purple-light);
  padding: 0.3rem 0.8rem;
  border-radius: var(--fo-radius-pill);
  margin-bottom: var(--fo-space-sm);
}

.fo-label-light {
  color: var(--fo-yellow);
  background: rgba(245, 197, 24, 0.2);
}

.fo-label-dark {
  color: var(--fo-ink);
  background: rgba(26, 26, 46, 0.12);
}

.fo-section-title {
  margin-bottom: var(--fo-space-md);
}

.fo-title-left { text-align: left; }

.fo-section-intro {
  max-width: 640px;
  margin-bottom: var(--fo-space-lg);
  font-size: 1.05rem;
}


.fo-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--fo-nav-h);
  background: var(--fo-white-pure);
  box-shadow: var(--fo-shadow-sm);
  transition: transform 0.35s var(--fo-ease), opacity 0.35s var(--fo-ease);
}

.fo-nav.fo-nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.fo-nav-inner {
  display: flex;
  align-items: center;
  gap: var(--fo-space-md);
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

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

.fo-logo-img {
  width: 36px;
  height: 36px;
}

.fo-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fo-ink);
}

.fo-nav-links {
  display: none;
  align-items: center;
  gap: var(--fo-space-sm);
  margin-left: auto;
}

.fo-nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fo-gray-800);
  padding: 0.4rem 0.6rem;
  border-radius: var(--fo-radius-sm);
  transition: all 0.2s var(--fo-ease);
  position: relative;
}

.fo-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.6rem;
  right: 0.6rem;
  height: 2px;
  background: var(--fo-yellow);
  transform: scaleX(0);
  transition: transform 0.2s var(--fo-ease);
  border-radius: 2px;
}

.fo-nav-link:hover { color: var(--fo-ink); }
.fo-nav-link:hover::after { transform: scaleX(1); }
.fo-nav-link.fo-active { color: var(--fo-ink); font-weight: 600; }
.fo-nav-link.fo-active::after { transform: scaleX(1); }

.fo-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--fo-radius-sm);
  transition: background 0.2s;
}
.fo-hamburger:hover { background: var(--fo-gray-100); }
.fo-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fo-ink);
  border-radius: 2px;
  transition: all 0.3s var(--fo-ease);
}


.fo-mini-nav {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 890;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: opacity 0.3s var(--fo-ease), transform 0.3s var(--fo-ease);
}

.fo-mini-nav.fo-mini-visible {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}

.fo-mini-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--fo-purple);
  color: var(--fo-white-pure);
  border-radius: var(--fo-radius-pill);
  font-size: 1.1rem;
  box-shadow: var(--fo-shadow-lg);
  transition: all 0.25s var(--fo-ease);
}
.fo-mini-btn:hover {
  background: var(--fo-purple-dark);
  transform: scale(1.08);
  box-shadow: var(--fo-shadow-xl);
}


.fo-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--fo-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: circle(0px at calc(100% - 40px) 40px);
  transition: clip-path 0.55s var(--fo-ease);
  pointer-events: none;
}

.fo-mobile-overlay.fo-overlay-open {
  clip-path: circle(150% at calc(100% - 40px) 40px);
  pointer-events: all;
}

.fo-overlay-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: var(--fo-white-pure);
  font-size: 1.4rem;
  padding: 0.5rem;
  border-radius: var(--fo-radius-sm);
  transition: background 0.2s;
  opacity: 0;
  transition: opacity 0.3s 0.3s var(--fo-ease);
}
.fo-mobile-overlay.fo-overlay-open .fo-overlay-close {
  opacity: 1;
}
.fo-overlay-close:hover { background: rgba(255,255,255,0.1); }

.fo-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--fo-space-md);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s 0.3s var(--fo-ease), transform 0.35s 0.3s var(--fo-ease);
}

.fo-mobile-overlay.fo-overlay-open .fo-overlay-nav {
  opacity: 1;
  transform: translateY(0);
}

.fo-mobile-overlay.fo-overlay-open .fo-btn-overlay {
  opacity: 1;
  transform: translateY(0);
}

.fo-btn-overlay {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s 0.45s var(--fo-ease), transform 0.35s 0.45s var(--fo-ease);
}

.fo-overlay-link {
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--fo-white-pure);
  padding: 0.3rem 1rem;
  border-radius: var(--fo-radius-sm);
  transition: color 0.2s, background 0.2s;
}
.fo-overlay-link:hover {
  color: var(--fo-yellow);
  background: rgba(245, 197, 24, 0.1);
}


.fo-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding-top: var(--fo-nav-h);
}

.fo-hero-left {
  background: var(--fo-purple);
  display: flex;
  align-items: flex-end;
  padding: var(--fo-space-xl) clamp(1.5rem, 4vw, 3rem);
  transform: translateX(-100%);
  animation: slideRight 0.8s 0.2s var(--fo-ease) forwards;
}

.fo-hero-right {
  overflow: hidden;
  transform: translateX(100%);
  animation: slideLeft 0.8s 0.2s var(--fo-ease) forwards;
}

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

@keyframes slideRight {
  to { transform: translateX(0); }
}
@keyframes slideLeft {
  to { transform: translateX(0); }
}

.fo-hero-badge {
  display: inline-block;
  background: var(--fo-yellow);
  color: var(--fo-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--fo-radius-pill);
}

.fo-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--fo-space-xl) clamp(1.5rem, 5vw, 5rem);
  background: linear-gradient(to top, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.6) 60%, transparent 100%);
  color: var(--fo-white-pure);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s 0.9s var(--fo-ease) forwards;
}

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

.fo-hero-title {
  color: var(--fo-white-pure);
  margin-bottom: var(--fo-space-sm);
  max-width: 640px;
}

.fo-hero-sub {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  font-size: 1.05rem;
  margin-bottom: var(--fo-space-lg);
}

.fo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fo-space-sm);
}


.fo-values {
  background: var(--fo-yellow);
  padding: var(--fo-space-2xl) 0;
}

.fo-values .fo-section-title { color: var(--fo-ink); }

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

.fo-value-card {
  background: var(--fo-white-pure);
  border-radius: var(--fo-radius-lg);
  padding: var(--fo-space-lg);
  box-shadow: var(--fo-shadow-md);
  transition: transform 0.3s var(--fo-ease), box-shadow 0.3s var(--fo-ease);
}
.fo-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fo-shadow-xl);
}

.fo-value-icon {
  width: 52px;
  height: 52px;
  background: var(--fo-yellow-light);
  border-radius: var(--fo-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--fo-ink);
  margin-bottom: var(--fo-space-sm);
}

.fo-value-title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--fo-ink);
}

.fo-value-text {
  font-size: 0.9rem;
  line-height: 1.7;
}


.fo-about-preview {
  background: var(--fo-green);
  padding: var(--fo-space-2xl) 0;
}

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

.fo-about-title {
  color: var(--fo-white-pure);
  margin-bottom: var(--fo-space-md);
}

.fo-about-body {
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--fo-space-sm);
  font-size: 1.02rem;
}

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


.fo-process {
  background: var(--fo-white);
  padding: var(--fo-space-2xl) 0;
}

.fo-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--fo-space-lg);
  border-left: 3px solid var(--fo-gray-200);
  margin-left: 1.5rem;
}

.fo-step {
  display: flex;
  gap: var(--fo-space-md);
  padding: var(--fo-space-lg) 0 var(--fo-space-lg) var(--fo-space-lg);
  position: relative;
}

.fo-step::before {
  content: '';
  position: absolute;
  left: -8px;
  top: var(--fo-space-lg);
  width: 13px;
  height: 13px;
  background: var(--fo-purple);
  border-radius: 50%;
  border: 3px solid var(--fo-white);
  box-shadow: 0 0 0 2px var(--fo-purple);
}

.fo-step-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fo-gray-200);
  line-height: 1;
  flex-shrink: 0;
  width: 3.5rem;
}

.fo-step-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--fo-ink);
}

.fo-step-text { font-size: 0.95rem; }


.fo-courses-preview {
  background: var(--fo-coral);
  padding: var(--fo-space-2xl) 0;
}

.fo-courses-preview .fo-section-title { color: var(--fo-white-pure); }
.fo-courses-preview .fo-section-label {
  color: var(--fo-ink);
  background: rgba(255,255,255,0.25);
}

.fo-course-swiper {
  margin-top: var(--fo-space-lg);
  padding-bottom: 3rem !important;
}

.fo-course-card {
  background: var(--fo-white-pure);
  border-radius: var(--fo-radius-lg);
  overflow: hidden;
  box-shadow: var(--fo-shadow-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--fo-ease), box-shadow 0.3s var(--fo-ease);
}
.fo-course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--fo-shadow-xl);
}

.fo-course-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fo-course-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--fo-purple-light);
  color: var(--fo-purple);
  padding: 0.25rem 0.7rem;
  border-radius: var(--fo-radius-pill);
  margin: var(--fo-space-sm) var(--fo-space-sm) 0;
  align-self: flex-start;
}

.fo-course-card-title {
  font-size: 1rem;
  padding: 0.75rem var(--fo-space-sm) 0.5rem;
  color: var(--fo-ink);
}

.fo-course-card-text {
  font-size: 0.88rem;
  padding: 0 var(--fo-space-sm);
  flex: 1;
  line-height: 1.65;
}

.fo-course-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fo-purple);
  padding: var(--fo-space-sm);
  margin-top: auto;
  transition: gap 0.2s var(--fo-ease), color 0.2s;
}
.fo-course-link:hover { gap: 0.7rem; color: var(--fo-purple-dark); }


.swiper-pagination-bullet { background: rgba(255,255,255,0.5); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--fo-white-pure); }
.swiper-button-prev, .swiper-button-next {
  color: var(--fo-white-pure);
  background: rgba(255,255,255,0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.swiper-button-prev:hover, .swiper-button-next:hover { background: rgba(255,255,255,0.3); }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 1rem; }


.fo-cta-split {
  background: var(--fo-ink);
  padding: var(--fo-space-2xl) 0;
}

.fo-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--fo-space-lg);
  align-items: center;
}

.fo-cta-title {
  color: var(--fo-white-pure);
  margin-bottom: var(--fo-space-sm);
}

.fo-cta-body { color: rgba(255,255,255,0.75); font-size: 1.02rem; }

.fo-cta-action-col { display: flex; flex-direction: column; gap: 0.75rem; }

.fo-cta-small {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}


.fo-contact-home {
  background: var(--fo-gray-100);
  padding: var(--fo-space-2xl) 0;
}

.fo-contact-intro {
  max-width: 600px;
  margin-bottom: var(--fo-space-lg);
  font-size: 1.02rem;
}

.fo-form {
  background: var(--fo-white-pure);
  border-radius: var(--fo-radius-xl);
  padding: var(--fo-space-xl);
  box-shadow: var(--fo-shadow-lg);
}

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

.fo-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--fo-space-md);
}

.fo-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fo-ink);
}

.fo-input {
  padding: 0.8rem 1rem;
  border: 2px solid var(--fo-gray-200);
  border-radius: var(--fo-radius-md);
  font-family: var(--fo-font);
  font-size: 0.95rem;
  color: var(--fo-ink);
  background: var(--fo-white);
  transition: border-color 0.2s var(--fo-ease), box-shadow 0.2s var(--fo-ease);
  outline: none;
  width: 100%;
}
.fo-input:focus {
  border-color: var(--fo-purple);
  box-shadow: 0 0 0 3px rgba(108, 63, 200, 0.12);
}
.fo-input::placeholder { color: var(--fo-gray-400); }

.fo-textarea {
  resize: vertical;
  min-height: 140px;
}

.fo-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: var(--fo-space-sm);
}

.fo-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--fo-purple);
  cursor: pointer;
}

.fo-check-label {
  font-size: 0.85rem;
  color: var(--fo-gray-600);
  line-height: 1.5;
}

.fo-form-link {
  color: var(--fo-purple);
  text-decoration: underline;
  transition: color 0.2s;
}
.fo-form-link:hover { color: var(--fo-purple-dark); }


.fo-footer {
  background: #0d0d1e;
  color: rgba(255,255,255,0.75);
  padding-top: var(--fo-space-2xl);
  margin-top: auto;
}

.fo-footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.fo-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--fo-space-xl);
  padding-bottom: var(--fo-space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.fo-footer-brand-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fo-white-pure);
  margin-bottom: 0.5rem;
}

.fo-footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
  line-height: 1.6;
}

.fo-footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fo-yellow);
  margin-bottom: var(--fo-space-sm);
}

.fo-footer-list { display: flex; flex-direction: column; gap: 0.5rem; }

.fo-footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.fo-footer-link:hover { color: var(--fo-yellow); }

.fo-footer-address p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.3rem;
}

.fo-footer-bottom {
  padding: var(--fo-space-md) 0;
  text-align: center;
}

.fo-footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}


.fo-bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--fo-white-pure);
  border-top: 1px solid var(--fo-gray-200);
  box-shadow: 0 -4px 20px rgba(26,26,46,0.08);
  padding-bottom: env(safe-area-inset-bottom);
}

.fo-bottom-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.6rem 0;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--fo-gray-400);
  transition: color 0.2s var(--fo-ease);
  min-height: 56px;
}
.fo-bottom-link i { font-size: 1.15rem; }
.fo-bottom-link:hover { color: var(--fo-purple); }
.fo-bottom-link.fo-bottom-active { color: var(--fo-purple); }


.fo-page-hero {
  padding: calc(var(--fo-nav-h) + var(--fo-space-xl)) 0 var(--fo-space-2xl);
}

.fo-page-hero--yellow { background: var(--fo-yellow); }
.fo-page-hero--green { background: var(--fo-green); }
.fo-page-hero--coral { background: var(--fo-coral); }
.fo-page-hero--purple { background: var(--fo-purple); }

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

.fo-page-title {
  color: var(--fo-ink);
  margin-bottom: var(--fo-space-sm);
}

.fo-title-light { color: var(--fo-white-pure); }

.fo-page-subtitle {
  font-size: 1.1rem;
  color: rgba(26,26,46,0.75);
  max-width: 600px;
}

.fo-subtitle-light { color: rgba(255,255,255,0.85); }


.fo-origin {
  background: var(--fo-white);
  padding: var(--fo-space-2xl) 0;
}

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

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

.fo-origin-text-col p {
  margin-bottom: var(--fo-space-sm);
  font-size: 1.02rem;
}

.fo-what-we-bring {
  background: var(--fo-purple-light);
  padding: var(--fo-space-2xl) 0;
}

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

.fo-bring-item {
  background: var(--fo-white-pure);
  border-radius: var(--fo-radius-lg);
  padding: var(--fo-space-lg);
  box-shadow: var(--fo-shadow-sm);
  transition: transform 0.3s var(--fo-ease), box-shadow 0.3s var(--fo-ease);
}
.fo-bring-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--fo-shadow-md);
}

.fo-bring-icon {
  font-size: 1.8rem;
  color: var(--fo-purple);
  margin-bottom: 0.75rem;
  display: block;
}

.fo-bring-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--fo-ink);
}
.fo-bring-item p { font-size: 0.92rem; }

.fo-sectors {
  background: var(--fo-green);
  padding: var(--fo-space-2xl) 0;
}

.fo-sectors .fo-section-title { color: var(--fo-white-pure); }
.fo-sectors .fo-section-label {
  background: rgba(255,255,255,0.2);
  color: var(--fo-ink);
}
.fo-sectors .fo-section-intro { color: rgba(255,255,255,0.85); }

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

.fo-sector-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.15);
  color: var(--fo-white-pure);
  padding: 0.75rem 1rem;
  border-radius: var(--fo-radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.fo-sector-item:hover { background: rgba(255,255,255,0.25); }
.fo-sector-item i { font-size: 1rem; }

.fo-team-section {
  background: var(--fo-white);
  padding: var(--fo-space-2xl) 0;
  text-align: center;
}

.fo-team-img {
  border-radius: var(--fo-radius-xl);
  box-shadow: var(--fo-shadow-xl);
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  margin-bottom: var(--fo-space-sm);
}

.fo-team-caption {
  font-size: 0.88rem;
  color: var(--fo-gray-600);
  font-style: italic;
}


.fo-courses-full {
  background: var(--fo-white);
  padding: var(--fo-space-2xl) 0;
}

.fo-course-full-card {
  border-radius: var(--fo-radius-xl);
  overflow: hidden;
  margin-bottom: var(--fo-space-xl);
  box-shadow: var(--fo-shadow-lg);
}

.fo-course-full-card--1 .fo-course-full-header { background: var(--fo-yellow); }
.fo-course-full-card--2 .fo-course-full-header { background: var(--fo-green); }
.fo-course-full-card--3 .fo-course-full-header { background: var(--fo-coral); }
.fo-course-full-card--4 .fo-course-full-header { background: var(--fo-purple); }

.fo-course-full-header {
  padding: var(--fo-space-xl);
}

.fo-course-full-card--4 .fo-course-full-title { color: var(--fo-white-pure); }
.fo-course-full-card--3 .fo-course-full-title { color: var(--fo-white-pure); }

.fo-course-tag--large {
  font-size: 0.78rem;
  margin-bottom: var(--fo-space-sm);
  display: block;
}

.fo-course-full-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--fo-ink);
  margin-bottom: var(--fo-space-sm);
}

.fo-course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fo-space-sm);
}

.fo-course-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(26,26,46,0.7);
  background: rgba(255,255,255,0.4);
  padding: 0.3rem 0.8rem;
  border-radius: var(--fo-radius-pill);
}

.fo-course-full-card--4 .fo-course-meta span,
.fo-course-full-card--3 .fo-course-meta span {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.15);
}

.fo-course-full-body {
  background: var(--fo-white-pure);
  padding: var(--fo-space-xl);
}

.fo-course-full-body p {
  margin-bottom: var(--fo-space-sm);
  font-size: 1.02rem;
}

.fo-course-full-body h4 {
  margin: var(--fo-space-md) 0 var(--fo-space-sm);
  color: var(--fo-ink);
}

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

.fo-course-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--fo-gray-800);
  padding-left: 0.2rem;
}

.fo-course-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--fo-green);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.8rem;
}

.fo-delivery {
  background: var(--fo-yellow-light);
  padding: var(--fo-space-2xl) 0;
}

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

.fo-delivery-card {
  background: var(--fo-white-pure);
  border-radius: var(--fo-radius-lg);
  padding: var(--fo-space-lg);
  box-shadow: var(--fo-shadow-sm);
  transition: transform 0.3s var(--fo-ease), box-shadow 0.3s var(--fo-ease);
}
.fo-delivery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fo-shadow-md);
}

.fo-delivery-icon {
  font-size: 2rem;
  color: var(--fo-yellow-dark);
  margin-bottom: 0.75rem;
  display: block;
}

.fo-delivery-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--fo-ink);
}
.fo-delivery-card p { font-size: 0.92rem; }


.fo-lab-intro {
  background: var(--fo-white);
  padding: var(--fo-space-2xl) 0;
}

.fo-lab-intro p {
  max-width: 680px;
  margin-bottom: var(--fo-space-sm);
  font-size: 1.05rem;
}

.fo-lab-tools {
  background: var(--fo-purple-light);
  padding: var(--fo-space-2xl) 0;
}

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

.fo-tool-card {
  background: var(--fo-white-pure);
  border-radius: var(--fo-radius-lg);
  padding: var(--fo-space-lg);
  box-shadow: var(--fo-shadow-md);
  transition: transform 0.3s var(--fo-ease), box-shadow 0.3s var(--fo-ease);
}
.fo-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fo-shadow-xl);
}

.fo-tool-icon {
  font-size: 2rem;
  color: var(--fo-purple);
  margin-bottom: var(--fo-space-sm);
}

.fo-tool-title {
  font-size: 1.1rem;
  color: var(--fo-ink);
  margin-bottom: 0.6rem;
}

.fo-tool-text {
  font-size: 0.92rem;
  margin-bottom: var(--fo-space-sm);
  line-height: 1.7;
}

.fo-tool-how {
  background: var(--fo-purple-light);
  border-radius: var(--fo-radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--fo-purple-dark);
  line-height: 1.6;
}

.fo-lab-articles {
  background: var(--fo-coral-light);
  padding: var(--fo-space-2xl) 0;
}

.fo-articles-list {
  display: flex;
  flex-direction: column;
  gap: var(--fo-space-md);
  margin-top: var(--fo-space-lg);
}

.fo-article-item {
  background: var(--fo-white-pure);
  border-radius: var(--fo-radius-lg);
  padding: var(--fo-space-lg);
  box-shadow: var(--fo-shadow-sm);
  border-left: 4px solid var(--fo-coral);
  transition: box-shadow 0.3s var(--fo-ease), transform 0.3s var(--fo-ease);
}
.fo-article-item:hover {
  box-shadow: var(--fo-shadow-md);
  transform: translateX(4px);
}

.fo-article-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fo-coral-dark);
  background: var(--fo-coral-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--fo-radius-pill);
  margin-bottom: 0.5rem;
}

.fo-article-title {
  font-size: 1.1rem;
  color: var(--fo-ink);
  margin-bottom: 0.5rem;
}

.fo-article-excerpt { font-size: 0.92rem; }


.fo-faq {
  background: var(--fo-green-light);
  padding: var(--fo-space-2xl) 0;
}

.fo-faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--fo-space-xs);
  margin-top: var(--fo-space-lg);
}

.fo-faq-item {
  background: var(--fo-white-pure);
  border-radius: var(--fo-radius-md);
  overflow: hidden;
  box-shadow: var(--fo-shadow-sm);
}

.fo-faq-q {
  width: 100%;
  text-align: left;
  padding: var(--fo-space-md);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--fo-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--fo-space-sm);
  transition: background 0.2s;
}
.fo-faq-q::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--fo-green);
  flex-shrink: 0;
  transition: transform 0.3s var(--fo-ease);
}
.fo-faq-q[aria-expanded="true"]::after { transform: rotate(180deg); }
.fo-faq-q:hover { background: var(--fo-gray-100); }

.fo-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--fo-ease), padding 0.3s;
}
.fo-faq-a.fo-faq-open {
  max-height: 400px;
}

.fo-faq-a p {
  padding: 0 var(--fo-space-md) var(--fo-space-md);
  font-size: 0.93rem;
}


.fo-contact-section {
  background: var(--fo-white);
  padding: var(--fo-space-2xl) 0;
}

.fo-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--fo-space-xl);
}

.fo-contact-info-title,
.fo-contact-form-title {
  font-size: 1.4rem;
  margin-bottom: var(--fo-space-md);
  color: var(--fo-ink);
}

.fo-contact-detail {
  display: flex;
  gap: var(--fo-space-sm);
  margin-bottom: var(--fo-space-md);
  align-items: flex-start;
}

.fo-contact-icon {
  width: 40px;
  height: 40px;
  background: var(--fo-purple-light);
  color: var(--fo-purple);
  border-radius: var(--fo-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.fo-contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fo-gray-600);
  margin-bottom: 0.2rem;
}
.fo-contact-detail p {
  font-size: 0.95rem;
  margin: 0;
}

.fo-contact-link {
  color: var(--fo-purple);
  transition: color 0.2s;
}
.fo-contact-link:hover { color: var(--fo-purple-dark); }

.fo-map-section {
  background: var(--fo-gray-100);
  padding: var(--fo-space-2xl) 0;
}

.fo-map-wrap {
  border-radius: var(--fo-radius-xl);
  overflow: hidden;
  box-shadow: var(--fo-shadow-lg);
  margin-top: var(--fo-space-lg);
}


.fo-news-events {
  background: var(--fo-yellow-light);
  padding: var(--fo-space-2xl) 0;
}

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

.fo-news-card {
  background: var(--fo-white-pure);
  border-radius: var(--fo-radius-lg);
  padding: var(--fo-space-lg);
  box-shadow: var(--fo-shadow-sm);
  transition: transform 0.3s var(--fo-ease), box-shadow 0.3s var(--fo-ease);
}
.fo-news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fo-shadow-md);
}

.fo-news-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fo-yellow-dark);
  background: var(--fo-yellow-light);
  border: 1px solid var(--fo-yellow);
  padding: 0.2rem 0.6rem;
  border-radius: var(--fo-radius-pill);
  margin-bottom: 0.5rem;
}

.fo-news-date {
  font-size: 0.82rem;
  color: var(--fo-gray-600);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.fo-news-title {
  font-size: 1.05rem;
  color: var(--fo-ink);
  margin-bottom: 0.5rem;
}

.fo-news-text {
  font-size: 0.9rem;
  margin-bottom: var(--fo-space-sm);
  line-height: 1.65;
}

.fo-news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fo-purple);
  transition: gap 0.2s, color 0.2s;
}
.fo-news-link:hover { gap: 0.7rem; color: var(--fo-purple-dark); }


.fo-legal-main {
  padding-top: calc(var(--fo-nav-h) + var(--fo-space-xl));
  padding-bottom: var(--fo-space-3xl);
  min-height: 80vh;
}

.fo-legal-header {
  margin-bottom: var(--fo-space-xl);
  padding-bottom: var(--fo-space-lg);
  border-bottom: 3px solid var(--fo-yellow);
}

.fo-legal-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fo-ink);
  margin-bottom: 0.5rem;
}

.fo-legal-date {
  font-size: 0.85rem;
  color: var(--fo-gray-600);
}

.fo-legal-body h2 {
  font-size: 1.2rem;
  color: var(--fo-ink);
  margin: var(--fo-space-lg) 0 var(--fo-space-sm);
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--fo-gray-200);
}

.fo-legal-body p {
  margin-bottom: var(--fo-space-sm);
  font-size: 0.97rem;
  line-height: 1.8;
}

.fo-legal-body--terms h2 {
  border-bottom: 2px solid var(--fo-green-light);
}


.fo-legal-header--cookies { text-align: center; border-bottom-color: var(--fo-purple); }
.fo-cookies-icon-wrap {
  font-size: 3rem;
  color: var(--fo-purple);
  margin-bottom: var(--fo-space-sm);
}
.fo-cookies-intro {
  max-width: 600px;
  margin-inline: auto;
  font-size: 1.02rem;
  color: var(--fo-gray-800);
  margin-top: var(--fo-space-sm);
}

.fo-cookie-section {
  margin-bottom: var(--fo-space-xl);
}

.fo-cookie-section h2 {
  font-size: 1.2rem;
  color: var(--fo-ink);
  margin-bottom: var(--fo-space-sm);
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--fo-purple-light);
}

.fo-cookie-type {
  margin-bottom: var(--fo-space-lg);
}

.fo-cookie-type h3 {
  font-size: 1rem;
  color: var(--fo-purple-dark);
  margin-bottom: 0.5rem;
}

.fo-cookie-table-wrap {
  overflow-x: auto;
  margin-top: var(--fo-space-sm);
}

.fo-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.fo-cookie-table th {
  background: var(--fo-purple-light);
  color: var(--fo-purple-dark);
  font-weight: 600;
  padding: 0.6rem 0.8rem;
  text-align: left;
  border: 1px solid var(--fo-gray-200);
}

.fo-cookie-table td {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--fo-gray-200);
  color: var(--fo-gray-800);
}

.fo-cookie-table tr:nth-child(even) td { background: var(--fo-gray-100); }

.fo-cookies-browser-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: var(--fo-space-sm);
}
.fo-cookies-browser-list li {
  font-size: 0.92rem;
  color: var(--fo-gray-800);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}


.fo-thanks-page { display: flex; flex-direction: column; min-height: 100vh; }

.fo-thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--fo-space-3xl) var(--fo-space-lg);
  text-align: center;
}

.fo-thanks-inner {
  max-width: 560px;
}

.fo-thanks-icon {
  font-size: 4rem;
  color: var(--fo-green);
  margin-bottom: var(--fo-space-lg);
  animation: popIn 0.5s var(--fo-ease) forwards;
}

@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.fo-thanks-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--fo-ink);
  margin-bottom: var(--fo-space-sm);
}

.fo-thanks-sub {
  color: var(--fo-gray-600);
  font-size: 1.1rem;
  margin-bottom: var(--fo-space-xl);
}


.fo-cookie-pill {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  background: var(--fo-ink);
  color: var(--fo-white-pure);
  border-radius: var(--fo-radius-pill);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--fo-shadow-xl);
  white-space: nowrap;
  transition: transform 0.5s var(--fo-ease);
  max-width: calc(100vw - 2rem);
}

.fo-cookie-pill.fo-pill-visible {
  transform: translateX(-50%) translateY(0);
}

.fo-cookie-pill-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  white-space: normal;
}

.fo-cookie-pill-text a {
  color: var(--fo-yellow);
  text-decoration: underline;
}

.fo-pill-accept {
  background: var(--fo-yellow);
  color: var(--fo-ink);
  border: none;
  border-radius: var(--fo-radius-pill);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.fo-pill-accept:hover { background: var(--fo-yellow-dark); transform: scale(1.04); }

.fo-pill-customize {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--fo-radius-pill);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.fo-pill-customize:hover { border-color: rgba(255,255,255,0.6); color: var(--fo-white-pure); }


.fo-cookie-modal {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(120%) scale(0.95);
  z-index: 9999;
  background: var(--fo-white-pure);
  border-radius: var(--fo-radius-xl);
  padding: var(--fo-space-lg);
  box-shadow: var(--fo-shadow-xl);
  width: min(480px, calc(100vw - 2rem));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--fo-ease), opacity 0.4s var(--fo-ease);
}

.fo-cookie-modal.fo-modal-visible {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.fo-cookie-modal h3 {
  font-size: 1.1rem;
  color: var(--fo-ink);
  margin-bottom: 0.5rem;
}

.fo-cookie-modal p {
  font-size: 0.85rem;
  color: var(--fo-gray-600);
  margin-bottom: var(--fo-space-md);
}

.fo-cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--fo-gray-200);
}

.fo-cookie-toggle-row:last-of-type { border-bottom: none; }

.fo-cookie-toggle-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fo-ink);
}

.fo-cookie-toggle-desc {
  font-size: 0.78rem;
  color: var(--fo-gray-600);
}


.fo-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.fo-toggle input { opacity: 0; width: 0; height: 0; }
.fo-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--fo-gray-200);
  border-radius: var(--fo-radius-pill);
  cursor: pointer;
  transition: background 0.3s;
}
.fo-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--fo-white-pure);
  border-radius: 50%;
  transition: transform 0.3s var(--fo-ease);
  box-shadow: var(--fo-shadow-sm);
}
.fo-toggle input:checked + .fo-toggle-slider { background: var(--fo-purple); }
.fo-toggle input:checked + .fo-toggle-slider::before { transform: translateX(20px); }
.fo-toggle input:disabled + .fo-toggle-slider { background: var(--fo-green); cursor: not-allowed; }

.fo-cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--fo-space-md);
  flex-wrap: wrap;
}

.fo-modal-save {
  background: var(--fo-purple);
  color: var(--fo-white-pure);
  border: none;
  border-radius: var(--fo-radius-pill);
  padding: 0.65rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  flex: 1;
  transition: background 0.2s, transform 0.2s;
}
.fo-modal-save:hover { background: var(--fo-purple-dark); transform: translateY(-1px); }

.fo-modal-accept-all {
  background: var(--fo-yellow);
  color: var(--fo-ink);
  border: none;
  border-radius: var(--fo-radius-pill);
  padding: 0.65rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  flex: 1;
  transition: background 0.2s, transform 0.2s;
}
.fo-modal-accept-all:hover { background: var(--fo-yellow-dark); transform: translateY(-1px); }




@media (max-width: 767px) {
  body { padding-bottom: 60px; }

  .fo-hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }
  .fo-hero-left {
    display: none;
  }
  .fo-hero-right {
    position: absolute;
    inset: 0;
    transform: none;
    animation: none;
  }
  .fo-hero-content {
    background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.7) 60%, transparent 100%);
  }
}

@media (min-width: 600px) {
  .fo-values-grid { grid-template-columns: 1fr 1fr; }
  .fo-bring-grid { grid-template-columns: 1fr 1fr; }
  .fo-tools-grid { grid-template-columns: 1fr 1fr; }
  .fo-delivery-grid { grid-template-columns: 1fr 1fr 1fr; }
  .fo-news-grid { grid-template-columns: 1fr 1fr; }
  .fo-form-row { grid-template-columns: 1fr 1fr; }
  .fo-footer-top { grid-template-columns: 1fr 1fr; }
}

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

  .fo-about-inner { grid-template-columns: 1fr 1fr; }
  .fo-origin-grid { grid-template-columns: 1fr 1fr; }
  .fo-contact-grid { grid-template-columns: 1fr 1.6fr; }
  .fo-cta-inner { grid-template-columns: 1fr 1fr; }
  .fo-news-grid { grid-template-columns: repeat(3, 1fr); }
  .fo-footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .fo-cookie-pill { bottom: 1.5rem; }
  .fo-cookie-modal { bottom: 1.5rem; }
}

@media (min-width: 1024px) {
  .fo-values-grid { grid-template-columns: repeat(4, 1fr); }
  .fo-bring-grid { grid-template-columns: 1fr 1fr; }
  .fo-tools-grid { grid-template-columns: 1fr 1fr; }
  .fo-sectors-list { grid-template-columns: repeat(4, 1fr); }
}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main, .fo-hero, .fo-values, .fo-about-preview, .fo-process,
.fo-courses-preview, .fo-cta-split, .fo-contact-home,
.fo-page-hero, .fo-origin, .fo-what-we-bring, .fo-sectors,
.fo-team-section, .fo-courses-full, .fo-delivery,
.fo-lab-intro, .fo-lab-tools, .fo-lab-articles, .fo-faq,
.fo-contact-section, .fo-map-section, .fo-news-events,
.fo-legal-main {
  flex: 0 0 auto;
}

.fo-footer { margin-top: auto; }


.iti__flag { background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@21.0.0/build/img/flags.png"); }
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag { background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@21.0.0/build/img/flags@2x.png"); }
}
.iti { width: 100%; }
.iti input { width: 100%; }