/* =============================================
   SAFIRICARE — Production CSS
   Brand: Navy #1B2A4E | Gold #C9A227 | Sand #F5EFE0
   Fonts: Fraunces (display) + DM Sans (body)
   ============================================= */

:root {
  --navy: #1B2A4E;
  --navy-mid: #253A6A;
  --gold: #C9A227;
  --gold-light: #E5C462;
  --sand: #F5EFE0;
  --sand-light: #FAF7F0;
  --grey: #6B7280;
  --grey-light: #9CA3AF;
  --text: #1A1A1A;
  --white: #FFFFFF;
  --line: rgba(27,42,78,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 32px rgba(27,42,78,0.08);
  --shadow-lg: 0 12px 48px rgba(27,42,78,0.14);
}

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

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

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* =============================================
   HERO SPLIT LAYOUT (desktop visual)
   ============================================= */

.hero {
  padding: 0 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 3rem;
  align-items: center;
  flex: 1;
  padding-top: 72px; /* nav height */
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  min-height: calc(100vh - 80px); /* leave room for stats bar */
}

.hero-ethics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.ethic-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}

.ethic-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Map card — fills right column completely */
.hero-visual {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-map-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 24px;
  padding: 1.25rem;
  backdrop-filter: blur(4px);
  animation: fadeUp 0.9s 0.3s ease both;
  width: 100%;
}

.hero-map-svg {
  width: 100%;
  height: auto;
  display: block;
  /* Make map fill more space on the card */
  min-height: 340px;
}

/* Floating badges on map */
.map-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 0.625rem 0.875rem;
  box-shadow: 0 8px 32px rgba(27,42,78,0.25);
  text-align: center;
  min-width: 80px;
}

.map-badge-1 { top: 1.25rem; left: -1.25rem; }
.map-badge-2 { bottom: 3rem; left: -1.25rem; }
.map-badge-3 { top: 50%; right: -1.25rem; transform: translateY(-50%); }

.mb-num, .mb-icon {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.mb-num span, .mb-icon span { font-size: 0.7em; }

.mb-label {
  font-size: 0.6875rem;
  color: var(--grey);
  margin-top: 3px;
  line-height: 1.3;
}

/* Stats bar — sits flush at the bottom of the hero */
.hero-stats-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}

.hero-stats-bar .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 100%;
}

/* 4-column pillars */
.pillars-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 3rem;
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.logo span { color: var(--gold); font-style: italic; }
.nav.scrolled .logo { color: var(--navy); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--gold); }

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn-outline-nav {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1.125rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.btn-outline-nav:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.nav.scrolled .btn-outline-nav { color: var(--navy); border-color: var(--line); }
.nav.scrolled .btn-outline-nav:hover { background: var(--sand-light); }

.btn-nav {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .hamburger span { background: var(--navy); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  box-shadow: var(--shadow);
}
.mobile-menu a {
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--navy);
  border-bottom: 1px solid var(--sand);
  font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 500;
  margin: 0.5rem 1.5rem !important;
  border-radius: 6px !important;
  border-bottom: none !important;
  text-align: center;
}
.mobile-cta-outline {
  border: 1px solid var(--line) !important;
  margin: 0.5rem 1.5rem !important;
  border-radius: 6px !important;
  text-align: center;
}
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.tvet-hero {
  position: relative;
  background: var(--navy);
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: rgba(201,162,39,0.12);
  top: -200px; right: -100px;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(44,60,100,0.6);
  bottom: -100px; left: -100px;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease both;
}

/* Hero pills — compact trust signals, replace old badge + ethics */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.25);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.hero-pill svg { color: var(--gold); flex-shrink: 0; }

/* Hide old badge + ethics — pills replace them */
.hero-badge { display: none; }
.hero-ethics { display: none; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

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

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

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.3);
}

.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  padding: 1.5rem;
  text-align: center;
  transition: background 0.2s;
}
.stat-card:hover { background: rgba(255,255,255,0.07); }

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-num span { font-size: 0.65em; }

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* =============================================
   TRUSTED
   ============================================= */

.trusted {
  background: var(--sand-light);
  border-bottom: 1px solid var(--sand);
  padding: 1.25rem 0;
}

.trusted .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trusted-label {
  font-size: 0.8125rem;
  color: var(--grey-light);
  font-weight: 500;
  white-space: nowrap;
}

.trusted-flags {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.flag-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 500;
}

.flag-emoji { font-size: 1.25rem; }
.flag-sep { color: var(--grey-light); font-size: 1.25rem; }

/* =============================================
   PILLARS
   ============================================= */

.pillars {
  padding: 6rem 0;
  background: var(--white);
}

.pillars .container { text-align: center; }
.pillars .section-title { margin-bottom: 3.5rem; }

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

.pillar-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }

.pillar-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.pillar-icon svg { width: 44px; height: 44px; }

.pillar-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.pillar-card p {
  font-size: 0.9375rem;
  color: var(--grey);
  line-height: 1.7;
}

/* =============================================
   PROCESS
   ============================================= */

.process {
  padding: 6rem 0;
  background: var(--navy);
  text-align: center;
}

.process .section-label { color: var(--gold-light); }
.process .section-title { color: var(--white); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 1rem;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-content h4 {
  font-size: 0.9375rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.step-arrow {
  color: var(--gold);
  font-size: 1.25rem;
  padding-top: 0.75rem;
  flex-shrink: 0;
  opacity: 0.5;
}

/* =============================================
   ROLES
   ============================================= */

.roles {
  padding: 6rem 0;
  background: var(--sand-light);
}

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

.role-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  transition: all 0.25s;
}
.role-card:hover { border-color: rgba(201,162,39,0.4); box-shadow: var(--shadow); }

.role-tag {
  position: absolute;
  top: -1px; right: 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.2rem 0.625rem;
  border-radius: 0 0 6px 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.role-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.625rem;
  font-weight: 600;
}

.role-card p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.role-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--grey-light);
  padding-top: 1rem;
  border-top: 1px solid var(--sand);
}

.role-card-dark {
  background: var(--navy);
  border-color: var(--navy);
}
.role-card-dark h4 { color: var(--white); }
.role-card-dark p { color: rgba(255,255,255,0.65); }
.role-card-dark .role-meta { border-top-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.35); }

.btn-role {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  margin-top: 0.5rem;
  transition: all 0.2s;
}
.btn-role:hover { background: var(--gold-light); }

/* =============================================
   TESTIMONIALS
   ============================================= */

.testimonials {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}

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

.testimonial-card {
  background: var(--sand-light);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.25s;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.testimonial-card p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sand);
}

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.author-role {
  font-size: 0.75rem;
  color: var(--grey-light);
  margin-top: 2px;
}

/* =============================================
   TVET STRIP
   ============================================= */

.tvet-strip {
  background: var(--navy);
  padding: 6rem 0;
}

.tvet-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
}

.tvet-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.tvet-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.tvet-facts {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.tvet-fact {}

.tvet-fact-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.875rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.tvet-fact-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.btn-tvet {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-tvet:hover { background: var(--gold-light); transform: translateY(-2px); }

.tvet-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tvet-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s;
}
.tvet-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(201,162,39,0.3); }

.tc-icon { font-size: 1.5rem; }

.tc-label {
  font-size: 0.9375rem;
  color: var(--white);
  font-weight: 500;
}

.tc-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* =============================================
   CONTACT
   ============================================= */

.contact {
  padding: 6rem 0;
  background: var(--sand-light);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contact-text p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  transition: all 0.2s;
  color: var(--text);
}
.contact-method:hover { border-color: var(--gold); box-shadow: var(--shadow); }

.cm-icon {
  width: 40px; height: 40px;
  background: var(--sand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.cm-icon svg { width: 18px; height: 18px; }

.cm-label {
  font-size: 0.75rem;
  color: var(--grey-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cm-value {
  font-size: 0.9375rem;
  color: var(--navy);
  font-weight: 500;
  margin-top: 1px;
}

/* =============================================
   FORMS
   ============================================= */

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

.contact-form,
.partner-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.partner-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--sand-light);
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,42,78,0.07);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem !important;
  color: var(--grey) !important;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input {
  width: auto !important;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}

.btn-submit {
  display: block;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-note {
  font-size: 0.75rem;
  color: var(--grey-light);
  text-align: center;
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: 1rem;
  background: #E8F2EC;
  border: 1.5px solid #2E7D5B;
  color: #1D5C42;
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}
.form-success svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #2E7D5B;
}
.form-success .success-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: #1D5C42;
}
.form-success .success-body {
  color: #2E7D5B;
  font-size: 0.875rem;
}
.form-success.visible { display: flex; }

/* =============================================
   TVET PAGE SPECIFIC
   ============================================= */

.tvet-benefits {
  padding: 6rem 0;
  background: var(--white);
}

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

.benefit-card {
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.25s;
}
.benefit-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }

.benefit-card-highlight {
  background: var(--navy);
  border-color: var(--navy);
}
.benefit-card-highlight h4 { color: var(--white) !important; }
.benefit-card-highlight p { color: rgba(255,255,255,0.65) !important; }
.benefit-card-highlight .benefit-num { color: var(--gold) !important; }

.benefit-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.625rem;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.7;
}

.journey {
  padding: 6rem 0;
  background: var(--sand-light);
  text-align: center;
}

.journey-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
}

.journey-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  text-align: left;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  width: 100%;
  transition: all 0.2s;
}
.journey-step:hover { border-color: var(--gold); box-shadow: var(--shadow); }

.js-icon { font-size: 1.75rem; flex-shrink: 0; }

.js-content h5 {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.js-content p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.5;
}

.js-arrow {
  font-size: 1.25rem;
  color: var(--gold);
  opacity: 0.4;
  padding: 0.25rem 0;
}

.requirements {
  padding: 6rem 0;
  background: var(--white);
}

.req-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.req-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.req-text p {
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.req-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.req-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}

.req-check {
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.req-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.rc-header {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.875rem;
  font-weight: 600;
}

.req-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.partner-form-section {
  padding: 6rem 0;
  background: var(--sand-light);
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: #0F1A30;
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--gold); color: var(--navy); }

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-col h5 {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-col a, .footer-col span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom em { color: rgba(201,162,39,0.5); }

/* =============================================
   ANIMATIONS
   ============================================= */

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

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

/* =============================================
   RESPONSIVE — 1024px (tablet)
   ============================================= */

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero-stats-bar .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .tvet-inner { grid-template-columns: 1fr; gap: 3rem; }
  .tvet-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .req-inner { grid-template-columns: 1fr; gap: 2rem; }
  .req-card { position: static; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE — 768px (mobile)
   ============================================= */

@media (max-width: 768px) {

  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  /* Hero — full reset for mobile */
  .hero {
    min-height: 100svh;
    padding: 0 !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 2rem;
    padding-left: 20px;
    padding-right: 20px;
    gap: 0;
  }

  .hero-visual { display: none; }

  .hero-title {
    font-size: clamp(2.75rem, 11vw, 3.5rem);
    margin-bottom: 0.875rem;
  }

  .hero-sub {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.75);
  }

  .hero-pills {
    margin-bottom: 1.75rem;
    gap: 0.4rem;
  }

  .hero-pill { font-size: 0.75rem; padding: 0.3rem 0.65rem; }

  .hero-pills { display: none; }

  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary, .btn-ghost {
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Stats bar — 2 columns */
  .hero-stats-bar { margin-top: 2rem; }
  .hero-stats-bar .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .stat-card { padding: 1.25rem 1rem; }
  .stat-num { font-size: clamp(1.5rem, 7vw, 2rem); }
  .stat-label { font-size: 0.75rem; }

  /* Trusted bar — stack vertically */
  .trusted .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .trusted-flags { gap: 0.75rem; flex-wrap: wrap; }
  .flag-sep { display: none; }

  /* Sections */
  .pillars { padding: 3.5rem 0; }
  .pillars-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .pillar-card { padding: 1.5rem; }
  .section-title { font-size: clamp(1.625rem, 6vw, 2.25rem); margin-bottom: 2rem; }

  .process { padding: 3.5rem 0; }
  .steps { flex-direction: column; align-items: stretch; gap: 0; }
  .step {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
  }
  .step-num {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2rem;
    margin-bottom: 0;
  }
  .step-content h4 { font-size: 0.9375rem; margin-bottom: 0.25rem; }
  .step-content p { font-size: 0.8125rem; color: rgba(255,255,255,0.55); }
  .step-arrow { display: none; }

  .roles { padding: 3.5rem 0; }
  .roles-grid { grid-template-columns: 1fr; gap: 1rem; }
  .role-card { padding: 1.5rem; }

  .testimonials { padding: 3.5rem 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 1.5rem; }

  /* TVET strip */
  .tvet-strip { padding: 3.5rem 0; }
  .tvet-text h2 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .tvet-facts {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
  }
  .tvet-fact-num { font-size: 1.5rem; }

  /* Contact */
  .contact { padding: 3.5rem 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-text h2 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .contact-form-wrap { padding: 1.5rem; }
  .contact-methods { gap: 0.75rem; }
  .contact-method { padding: 0.875rem 1rem; }
  .cm-value { font-size: 0.875rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .partner-form { padding: 1.5rem; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.375rem; }
  .footer-brand p { max-width: 100%; }
}

/* =============================================
   RESPONSIVE — 480px (small phones)
   ============================================= */

@media (max-width: 480px) {
  .hero-container { padding-left: 16px; padding-right: 16px; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 3rem); }
  .hero-stats-bar .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .container { padding: 0 16px; }

  /* Steps on very small screens */
  .step-num { font-size: 1.25rem; width: 1.75rem; }

  /* TVET facts stack on small phones */
  .tvet-facts { flex-direction: column; gap: 0.75rem; }
}
