/* * File: css/main.css
 * Context: Global stylesheet for 01Talent website. 
 * Combines styles for index.html and privacy-policy.html to ensure consistent branding,
 * navigation, typography, and responsive breakpoints across the site.
 */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #ffffff;
  overscroll-behavior-y: none;
}
:root {
  --blue: #1a6efb;
  --blue-light: #4a8ff5;
  --blue-faint: rgba(26, 110, 251, 0.07);
  --blue-border: rgba(26, 110, 251, 0.18);
  --bg: #f7f9fc;
  --bg2: #ffffff;
  --bg3: #edf1f8;
  --border: rgba(0, 0, 0, 0.08);
  --text: #0d1530;
  --muted: #6b7a99;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Enables <picture> wrapper to not break flexbox parent/child layout rules */
picture {
  display: contents;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 6vw;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.7rem;
}
.hamburger {
  display: none;
}
nav ul a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul a:hover {
  color: var(--text);
}
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition:
    background 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--blue-light) !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 110, 251, 0.25);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: rgba(0, 0, 0, 0.2);
  background: var(--bg3);
}

/* ==========================================================================
   GLOBAL SECTION TYPOGRAPHY & LAYOUT
   ========================================================================== */
section {
  padding: 96px 6vw;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
}
h2 em {
  font-style: normal;
  color: var(--blue);
}
.section-sub {
  margin-top: 14px;
  color: var(--muted);
  max-width: min(580px, 100%);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Cards */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  border-color: var(--blue-border);
}
.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.card-desc {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   HOMEPAGE SPECIFIC (HERO, WHY, BUILD, PROCESS, ETC.)
   ========================================================================== */
#hero {
  min-height: 100vh;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 110, 251, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 110, 251, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-blob {
  position: absolute;
  pointer-events: none;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(26, 110, 251, 0.1) 0%,
    transparent 68%
  );
  top: -80px;
  right: -80px;
}
.marketplace-headline {
  font-size: clamp(1.8rem, 3.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  animation: fadeUp 0.7s 0.1s ease both;
  margin-bottom: 20px;
}
.marketplace-headline em {
  font-style: normal;
  color: var(--blue);
}
.hero-sub {
  margin-top: 22px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.stat-num span {
  color: var(--blue);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}
.hero-photo-wrap {
  flex-shrink: 0;
  width: 560px;
}
.hero-photo-mobile {
  display: none;
}

/* Why Section */
#why {
  background: var(--bg);
}
.why-intro {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.why-intro-text {
  flex: 1;
  min-width: 280px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.why-grid .card-title {
  color: var(--blue);
}
.why-grid .card.card-highlight {
  grid-column: 1 / -1;
  background: var(--blue-faint);
  border-color: var(--blue-border);
  display: flex;
  align-items: center;
  gap: 24px;
}
.why-grid .card.card-highlight .why-num {
  margin-bottom: 0;
  flex-shrink: 0;
  font-size: 2.6rem;
}
.why-grid .card.card-highlight .why-card-text {
  flex: 1;
}
.why-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.15;
  margin-bottom: 12px;
  line-height: 1;
}

/* Services / Hire Section */
#hire {
  background: var(--bg2);
}
.hire-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px;
}
.hire-lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.scenario-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.scenario {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s;
}
.scenario:hover {
  border-color: var(--blue-border);
}
.scenario-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 5px;
}
.scenario-text strong {
  display: block;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.scenario-text span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* Centers / Locations */
#centers {
  background: var(--bg);
}
.centers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.center-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.center-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s;
}
.center-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  border-color: var(--blue-border);
}
.center-card:hover::after {
  transform: scaleX(1);
}
.center-flag {
  font-size: 2.4rem;
  margin-bottom: 14px;
  line-height: 1;
}
.center-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.center-country {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.center-stat {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.center-stat span {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.centers-total {
  margin-top: 32px;
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
  padding: 20px;
  background: var(--blue-faint);
  border: 1px solid var(--blue-border);
  border-radius: 14px;
}
.centers-total span {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  margin-right: 8px;
}

/* Build / Platform */
#what-we-build {
  background: var(--bg2);
}
.build-mobile-img {
  display: none;
}
.build-inner,
.platform-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px;
}
.build-text p,
.platform-text p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.build-qualities {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.quality-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  border-left: 3px solid var(--blue);
}
.quality-item strong {
  display: block;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.quality-item span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* Process */
#process {
  background: var(--bg2);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 22%;
  right: 22%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--blue-border) 0,
    var(--blue-border) 8px,
    transparent 8px,
    transparent 16px
  );
}
.step {
  padding: 0 24px;
  text-align: center;
}
.step-num {
  width: 58px;
  height: 58px;
  background: var(--bg2);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}
.mission-duration-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 16px;
  background: var(--blue-faint);
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Expertise & Method */
#expertise,
#methodology {
  background: var(--bg);
}
.expertise-grid,
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.exp-tag {
  display: inline-block;
  background: var(--blue-faint);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.method-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  border-color: var(--blue-border);
}
.method-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.method-card:hover::after {
  transform: scaleX(1);
}
.method-step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.method-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.method-desc {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

/* Platform Info Box */
.alumni-box {
  background: var(--blue-faint);
  border: 1px solid var(--blue-border);
  border-radius: 18px;
  padding: 28px;
}
.alumni-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.alumni-sublabel {
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.alumni-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.alumni-pill {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.edu-stat-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--blue-border);
}
.edu-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.edu-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}
.footnote {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 12px;
  font-style: italic;
  line-height: 1.5;
}

/* Partners Marquee */
.partners-track-wrap {
  overflow: hidden;
  position: relative;
}
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg3), transparent);
}
.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg3), transparent);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: partnerScroll 40s linear infinite;
  padding: 8px 0;
}
.partners-track:hover {
  animation-play-state: paused;
}
.partner-logo-item {
  flex-shrink: 0;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.partner-logo-item img {
  height: 100%;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: center;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.partner-logo-item img:hover {
  opacity: 1;
}
@keyframes partnerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Academies */
.academies-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.academy-card {
  flex: 0 0 calc(25% - 11px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.academy-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.academy-flag {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1;
}
.academy-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.academy-country {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* News Carousel */
#news {
  background: var(--bg2);
}
.news-carousel {
  position: relative;
  margin-top: 48px;
}
.news-track-outer {
  overflow: hidden;
  position: relative;
  padding: 16px 4px;
  margin: -16px -4px;
}
.news-track-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(-90deg, var(--bg2), transparent);
}
.news-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card {
  flex: 0 0 480px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--blue-border);
}
.news-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.news-card-body {
  padding: 28px;
}
.news-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.news-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
}
.news-card-date {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.news-card-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}
.news-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  color: var(--text);
  font-size: 1.2rem;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.news-nav-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.news-nav-btn.prev {
  left: -24px;
}
.news-nav-btn.next {
  right: -24px;
}

/* FAQ */
.faq-wrap {
  margin-top: 48px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 10px;
  background: var(--bg2);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 12px;
}
.faq-q span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 24px;
}
.faq-a p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  padding-bottom: 18px;
}

/* Contact CTA / HubSpot Form */
#cta {
  background: var(--text);
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  pointer-events: none;
  width: 500px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(26, 110, 251, 0.3) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
#cta .section-label {
  color: rgba(255, 255, 255, 0.5);
}
#cta h2 {
  color: #fff;
  margin-bottom: 16px;
}
#cta .cta-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hs-form-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.hs-form-wrap .hs-form fieldset {
  max-width: 100% !important;
}
.hs-form-wrap .hs-form .hs-input {
  width: 100% !important;
  background: #f7f9fc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.88rem;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}
.hs-form-wrap .hs-form label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.hs-form-wrap .hs-form .hs-form-field {
  margin-bottom: 14px;
}
.hs-form-wrap .hs-form .hs-button {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  margin-top: 6px;
  width: 100%;
  transition: background 0.25s;
}
.hs-form-wrap .hs-form .hs-button:hover {
  background: var(--blue-light);
}

/* ==========================================================================
   PRIVACY POLICY SPECIFIC
   ========================================================================== */
.page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 6vw 96px;
}
.pp-header {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.pp-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.pp-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 16px;
}
.pp-title em {
  font-style: normal;
  color: var(--blue);
}
.pp-meta {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.pp-meta span {
  color: var(--blue);
  font-weight: 700;
}

.pp-toc {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 52px;
}
.pp-toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.pp-toc ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: toc;
}
.pp-toc li {
  counter-increment: toc;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.pp-toc li::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  width: 22px;
}
.pp-toc a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.pp-toc a:hover {
  color: var(--blue);
}

.pp-section {
  margin-bottom: 52px;
}
.pp-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-section-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-faint);
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  padding: 3px 10px;
  flex-shrink: 0;
}
.pp-section p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.pp-section h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 8px;
}

.pp-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}
thead tr {
  background: var(--blue-faint);
}
th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 700;
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--blue-border);
}
td {
  padding: 12px 16px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}
td strong {
  color: var(--text);
  font-weight: 600;
}

.pp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}
.pp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.pp-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 7px;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.right-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
}
.right-card-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.right-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.right-card-desc {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.6;
}
.contact-box {
  background: var(--blue-faint);
  border: 1px solid var(--blue-border);
  border-radius: 18px;
  padding: 28px 32px;
}
.contact-box p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 8px;
}
.contact-box a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.contact-box a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--blue);
}

/* ==========================================================================
   FOOTER / COOKIE BANNER
   ========================================================================== */
footer {
  padding: 24px 6vw;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer img {
  height: 26px;
  width: auto;
}
.footer-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}
footer .copy {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.lightbox.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet (768px - 1100px) */
@media (max-width: 900px) {
  section {
    padding: 64px 5vw;
  }

  .hero-inner {
    flex-direction: column;
    gap: 24px;
    padding-top: 96px !important;
    padding-bottom: 56px !important;
    align-items: flex-start;
  }
  .hero-blob,
  .hero-photo-wrap {
    display: none;
  }
  .hero-photo-mobile {
    display: block;
    margin: 16px 0;
  }
  .hero-text {
    width: 100%;
  }
  .hero-stats {
    margin-top: 28px;
    padding-top: 24px;
    gap: 28px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 12px;
  }
  .marketplace-headline {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .build-inner,
  .hire-inner,
  .platform-inner,
  .cta-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .why-intro {
    gap: 32px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .centers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .center-card {
    padding: 22px 14px;
  }
  .academies-grid {
    gap: 10px;
  }
  .academy-card {
    flex: 0 0 calc(33.333% - 7px);
  }
  .method-grid,
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .process-steps::before {
    display: none;
  }
  .step {
    text-align: center;
    padding: 0;
  }
  .step-num {
    margin: 0 auto 16px;
  }

  .news-card {
    flex: 0 0 360px;
  }
  .news-carousel {
    padding: 0 32px;
  }
  .news-nav-btn.prev {
    left: 0;
  }
  .news-nav-btn.next {
    right: 0;
  }

  .build-img {
    height: 340px !important;
  }
  .method-img {
    height: 260px !important;
  }
  #why img {
    width: 100%;
    max-width: 320px;
    height: 260px !important;
  }
  #platform .btn-primary {
    font-size: 0.9rem;
    padding: 13px 24px;
  }
  .faq-wrap {
    margin-top: 36px;
  }

  /* Mobile Nav */
  nav ul {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    height: 2px;
    width: 24px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.25s;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    padding: 16px 6vw 24px;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-menu a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }
  .mobile-menu a:last-child {
    border-bottom: none;
  }
  .mobile-menu a:hover {
    color: var(--text);
  }
  .mobile-menu .nav-cta {
    background: var(--blue);
    color: #fff !important;
    padding: 12px 22px;
    border-radius: 100px;
    text-align: center;
    margin-top: 8px;
    border-bottom: none;
  }

  /* Privacy Policy Mobile Fixes */
  .page-wrap {
    padding-top: 96px;
  }
  .rights-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pp-toc {
    padding: 20px 22px;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Mobile (<= 560px) */
@media (max-width: 560px) {
  section {
    padding: 32px 5vw;
  }
  .hero-inner {
    padding-top: 84px !important;
    padding-bottom: 40px !important;
    gap: 12px;
  }
  .marketplace-headline {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
  .hero-photo-mobile img {
    height: 200px !important;
  }
  .hero-stats {
    gap: 14px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .stat-num {
    font-size: 1.8rem;
  }

  .build-inner,
  .hire-inner,
  .platform-inner,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-grid .card.card-highlight {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .method-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .expertise-grid {
    margin-top: 20px;
  }
  .card {
    padding: 20px 16px;
  }

  .centers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .center-card {
    padding: 16px 10px;
  }
  .center-flag {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  .center-name {
    font-size: 0.82rem;
  }
  .center-country {
    font-size: 0.68rem;
    margin-bottom: 8px;
  }
  .center-stat span {
    font-size: 1.2rem;
  }
  .center-stat {
    font-size: 0.74rem;
  }

  .academies-grid {
    gap: 8px;
  }
  .academy-card {
    flex: 0 0 calc(50% - 4px);
    padding: 14px 10px;
  }
  .academy-flag {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
  .academy-name {
    font-size: 0.76rem;
  }
  .academy-country {
    font-size: 0.66rem;
  }

  .build-mobile-img img {
    height: 180px !important;
  }
  .process-steps {
    gap: 20px;
  }
  .mission-duration-badge {
    display: block;
    margin: 12px auto 0;
  }
  .edu-stat-row {
    flex-wrap: wrap;
    gap: 16px;
  }
  .news-card {
    flex: 0 0 calc(100vw - 10vw - 64px);
  }
  .partner-logo-item {
    height: 44px;
  }
  .build-img {
    display: none;
  }
  .build-mobile-img {
    display: block;
    margin: 12px 0 16px;
  }
  .method-img {
    height: 200px !important;
  }
  #why img {
    height: 260px !important;
  }
  #platform .btn-primary {
    font-size: 0.88rem;
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
  }

  .faq-wrap {
    margin-top: 28px;
  }
  .faq-q span {
    font-size: 0.85rem;
  }
  .faq-q {
    padding: 16px 18px;
  }
  .faq-a {
    padding: 0 18px;
  }

  /* Privacy Policy Mobile Fixes */
  .page-wrap {
    padding: 88px 5vw 64px;
  }
  .rights-grid {
    grid-template-columns: 1fr;
  }
  .pp-toc ol {
    gap: 10px;
  }
  th,
  td {
    padding: 10px 12px;
  }
  .contact-box {
    padding: 20px 20px;
  }
  footer {
    gap: 8px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* Very Small (<= 380px) */
@media (max-width: 380px) {
  section {
    padding: 24px 4vw;
  }
  .hero-inner {
    padding-top: 80px !important;
  }
  .card,
  .scenario {
    padding: 14px;
  }
  .center-card {
    padding: 14px 8px;
  }
  .academy-card {
    flex: 0 0 calc(50% - 4px);
    padding: 12px 8px;
  }
  .faq-q span {
    font-size: 0.82rem;
  }
  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }
}

/* Desktop Only Helpers */
@media (min-width: 900px) {
  .hero-photo-mobile,
  .build-mobile-img {
    display: none;
  }
}
