/* ================================================
   GET EMPLOYED NOW — style.css
   Mobile-first · WCAG AA · No frameworks
   ================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  background: var(--off-white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
a { text-decoration: none; color: inherit; }
input, textarea, button { font-family: inherit; }

/* ------------------------------------------------
   2. DESIGN TOKENS
   ------------------------------------------------ */
:root {
  --navy:       #0f2a4a;
  --teal:       #1d9e75;
  --teal-lt:    #5dcaa5;
  --off-white:  #f8faf9;
  --surface:    #f1f5f3;
  --dark:       #0f1f2e;
  --muted:      #4a6472;
  --border:     rgba(15,42,74,0.08);

  --nav-h: 72px;
  --container: 1200px;
  --section-py: 96px;
  --radius: 8px;
  --radius-lg: 14px;

  --shadow-sm:  0 2px 12px rgba(15,42,74,0.07);
  --shadow-md:  0 6px 28px rgba(15,42,74,0.11);
  --shadow-lg:  0 12px 48px rgba(15,42,74,0.14);

  --transition: 0.25s ease;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --mono:  'DM Mono', 'Courier New', monospace;
}

/* ------------------------------------------------
   3. TYPOGRAPHY SCALE
   ------------------------------------------------ */
.sh-display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
.sh-display--lt { color: #fff; }

.sh-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--muted);
  max-width: 640px;
  margin-inline: auto;
  margin-top: 1rem;
  line-height: 1.7;
}
.sh-sub--lt { color: rgba(255,255,255,0.78); }

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: block;
}
.eyebrow--lt { color: var(--teal-lt); }

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

/* ------------------------------------------------
   4. LAYOUT UTILITIES
   ------------------------------------------------ */
.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.tc { text-align: center; }
.mt-48 { margin-top: 3rem; }
.mb-20 { margin-bottom: 1.25rem; }

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header.tc .sh-display { margin-inline: auto; }

/* ------------------------------------------------
   5. SCROLL ANIMATIONS
   ------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease var(--d, 0s),
              transform 0.65s ease var(--d, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------
   6. BUTTONS
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
  line-height: 1.3;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 0.875rem 1.875rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 2px 16px rgba(29,158,117,0.28);
}
.btn-primary:hover {
  background: #198a67;
  box-shadow: 0 4px 22px rgba(29,158,117,0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}

.btn-teal-outline {
  background: transparent;
  color: var(--teal-lt);
  border: 1.5px solid rgba(93,202,165,0.5);
}
.btn-teal-outline:hover {
  background: rgba(93,202,165,0.12);
  border-color: var(--teal-lt);
}

/* ------------------------------------------------
   7. SKIP LINK
   ------------------------------------------------ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--teal);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ------------------------------------------------
   8. NAVBAR
   ------------------------------------------------ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(15,42,74,0.08);
}

.nav-container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.gen-mark { flex-shrink: 0; }

.nav-wordmark { display: flex; flex-direction: column; gap: 0; }
.wordmark-lines { display: flex; flex-direction: column; line-height: 1.1; }
.wl-1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.wl-2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.wl-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--teal); background: rgba(29,158,117,0.06); }

/* Dropdown */
.dropdown-trigger svg { transition: transform var(--transition); }
.has-dropdown:hover .dropdown-trigger svg,
.has-dropdown.open .dropdown-trigger svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.4rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  transition: background var(--transition), color var(--transition);
}
.dropdown-link:hover { background: var(--surface); color: var(--teal); }

/* Nav CTA */
.nav-cta {
  margin-left: 1rem;
  display: none;
  flex-shrink: 0;
}
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--surface); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.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); }

@media (min-width: 1024px) { .hamburger { display: none; } }

/* ------------------------------------------------
   9. MOBILE NAV
   ------------------------------------------------ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--navy);
  display: flex;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 3rem;
  width: 100%;
  overflow-y: auto;
}
.mobile-nav-close {
  align-self: flex-end;
  color: rgba(255,255,255,0.6);
  padding: 0.5rem;
  border-radius: 6px;
  transition: color var(--transition);
  margin-bottom: 2rem;
}
.mobile-nav-close:hover { color: #fff; }

.mobile-nav-links { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--teal-lt); }

.mobile-nav-cta {
  margin-top: 2.5rem;
  justify-content: center;
  width: 100%;
}

/* ------------------------------------------------
   10. HERO SECTION
   ------------------------------------------------ */
.s-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--off-white);
  overflow: hidden;
}

/* Diagonal line pattern */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(15,42,74,0.03) 0,
    rgba(15,42,74,0.03) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.hero-content { display: flex; flex-direction: column; gap: 0; }

.hero-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.teal-ul {
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: var(--surface);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
}
.teal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(15,42,74,0.08));
}

/* ------------------------------------------------
   11. MIRROR SECTION
   ------------------------------------------------ */
.s-mirror {
  padding-block: var(--section-py);
  background: #fff;
}

.mirror-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .mirror-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .mirror-grid { grid-template-columns: repeat(3, 1fr); }
}

.mirror-card {
  background: #fff;
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.5rem 1.5rem 1.625rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.mirror-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.mc-thought {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 0.875rem;
}
.mc-reality {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}

/* ------------------------------------------------
   12. EXPERIENCE SECTION
   ------------------------------------------------ */
.s-experience {
  padding-block: var(--section-py);
  background: var(--off-white);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .exp-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 0;
  }
}

.exp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.exp-card:hover { box-shadow: var(--shadow-md); }
.exp-card--paid { border-top: 3px solid var(--navy); }

.exp-badge {
  display: inline-block;
  padding: 0.35rem 0.875rem;
  border-radius: 999px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  align-self: flex-start;
}
.exp-badge--free { background: var(--teal); color: #fff; }
.exp-badge--paid { background: var(--navy); color: #fff; }

.exp-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.exp-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 500;
}

.exp-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.exp-list li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.5;
}
.exp-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background: var(--teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

.exp-note {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
}

/* Step connector */
.exp-connector {
  display: none;
}
@media (min-width: 900px) {
  .exp-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6rem;
    padding-inline: 1rem;
  }
  .exp-connector-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--teal), transparent);
  }
  .exp-connector-node {
    margin-block: 0.75rem;
  }
}

/* ------------------------------------------------
   13. WHY NOW SECTION
   ------------------------------------------------ */
.s-why-now {
  padding-block: var(--section-py);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Subtle geometric bg for navy section */
.s-why-now::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(29,158,117,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(93,202,165,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.s-why-now .container { position: relative; z-index: 1; }

.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: background var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.07); }

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--teal-lt);
  line-height: 1;
  margin-bottom: 0.625rem;
}
.stat-lbl {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.tools-block { text-align: center; }

.tools-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.tool-pill {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem;
  border: 1.5px solid rgba(93,202,165,0.35);
  border-radius: var(--radius);
  text-align: left;
  transition: border-color var(--transition), background var(--transition);
}
.tool-pill:hover {
  border-color: var(--teal-lt);
  background: rgba(93,202,165,0.06);
}
.tp-name {
  font-family: 'DM Mono', monospace;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal-lt);
}
.tp-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.tools-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.42);
  font-style: italic;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ------------------------------------------------
   14. AUDIENCE SECTION
   ------------------------------------------------ */
.s-audience {
  padding-block: var(--section-py);
  background: #fff;
}

.aud-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .aud-grid { grid-template-columns: repeat(3, 1fr); }
}

.aud-card {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--off-white);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.aud-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.aud-num {
  position: absolute;
  top: -0.5rem;
  right: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.aud-body { position: relative; z-index: 1; }

.aud-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.aud-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.aud-you {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.625rem;
}
.aud-list { display: flex; flex-direction: column; gap: 0.5rem; }
.aud-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--dark);
  line-height: 1.5;
}
.aud-list li::before {
  content: '–';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* ------------------------------------------------
   15. SOCIAL PROOF SECTION
   ------------------------------------------------ */
.s-proof {
  padding-block: var(--section-py);
  background: var(--off-white);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }

.tcard {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tcard:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.tcard-mark {
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}

.tcard-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.tcard-attr { position: relative; z-index: 1; }
.tcard-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.tcard-role { font-size: 0.8125rem; color: var(--muted); margin-top: 0.125rem; }

.trust-logos-block {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.trust-logos-label {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}
.trust-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}
.co-pill {
  padding: 0.375rem 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
}

/* ------------------------------------------------
   16. CORPORATE SECTION
   ------------------------------------------------ */
.s-corporate {
  padding-block: var(--section-py);
  background: #fff;
}

.corp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 900px) {
  .corp-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 5rem;
  }
}

.corp-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.corp-card-h {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-lt);
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.corp-list { display: flex; flex-direction: column; gap: 0.75rem; }
.corp-list li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.corp-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background: var(--teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

.corp-pricing-note {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

/* ------------------------------------------------
   17. GET EMPLOYED SECTION
   ------------------------------------------------ */
.s-get-employed {
  padding-block: var(--section-py);
  background: #e8f7f2;
  position: relative;
  overflow: hidden;
}
.s-get-employed::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(29,158,117,0.04) 0,
    rgba(29,158,117,0.04) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.ge-inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ge-inner .sh-sub { margin-bottom: 2rem; }

.feat-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}
.feat-pill {
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(29,158,117,0.06);
}

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 560px) {
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
}

.pkg-card {
  background: #fff;
  border: 1px solid rgba(29,158,117,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pkg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.pkg-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}
.pkg-card--featured .pkg-name { color: var(--teal-lt); }
.pkg-card--featured .pkg-detail { color: rgba(255,255,255,0.65); }
.pkg-card--featured .pkg-price { color: #fff; }

.pkg-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.375rem;
}
.pkg-detail {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.pkg-price {
  font-family: 'DM Mono', monospace;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--teal);
}
.pkg-per {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* ------------------------------------------------
   18. CONTACT SECTION
   ------------------------------------------------ */
.s-contact {
  padding-block: var(--section-py);
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.contact-h {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.cdirect-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--teal);
  transition: color var(--transition);
}
.cdirect-link:hover { color: var(--navy); }

/* Form */
.contact-form-wrap .eyebrow { margin-bottom: 1.25rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.125rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.form-opt { font-weight: 400; color: var(--muted); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(74,100,114,0.5); }

/* ------------------------------------------------
   19. FOOTER
   ------------------------------------------------ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
.footer-wm { display: flex; flex-direction: column; }
.fwm-1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.1;
}
.fwm-2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--teal);
  line-height: 1.1;
}

.footer-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.625rem;
}
.soc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.soc-link:hover {
  color: #fff;
  border-color: var(--teal);
  background: rgba(29,158,117,0.15);
}

.footer-ch {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-link:hover { color: var(--teal-lt); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy,
.footer-domain {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-domain { color: rgba(29,158,117,0.55); }

/* ------------------------------------------------
   20. STUB PAGE STYLES (used by privacy/terms/support)
   ------------------------------------------------ */
.stub-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  text-align: center;
  background: var(--off-white);
}
.stub-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.stub-hero p {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ------------------------------------------------
   21. RESPONSIVE ADJUSTMENTS
   ------------------------------------------------ */
@media (max-width: 767px) {
  :root { --section-py: 64px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}

@media (max-width: 479px) {
  :root { --section-py: 52px; }
  .trust-bar { flex-direction: column; gap: 0.5rem; }
  .stat-row { grid-template-columns: 1fr; }
}
