/* ============================================================
   RÖCHLING POSSIBILISTS — EMPLOYER BRANDING WEBSITE
   styles.css  |  Faithful to screenshot color scheme
   
   Pattern (from screenshot):
   - Hero:               purple→blue gradient overlay on video
   - About/text:         white, centered narrow column
   - Purpose:            white, headline + blue accent line
   - "We are Poss.":     deep indigo-purple gradient, dark section
   - Meet Possibilists:  white, 3-col cards
   - Benefits:           light grey (#F4F6F9)
   - World:              white, centered text + bullet list
   - Jobs CTA:           deep indigo-purple gradient (same as Poss. section)
   - Footer:             white/very light
   
   Decorative circles: always at edges, partially off-screen
   ============================================================ */

:root {
  /* Brand Colors */
  --roechling-blue:    #0064B3;
  --rich-purple:       #840B55;
  --vibrant-cyan:      #04BBEE;
  --deep-blue:         #034067;
  --technical-teal:    #00959D;

  /* Gradient definitions (45° per brand guide) */
  --grad-purple-blue:   linear-gradient(45deg, #840B55 10%, #0064B3 90%);
  --grad-cyan-blue:     linear-gradient(45deg, #04BBEE 10%, #034067 90%);
  --grad-teal-blue:     linear-gradient(45deg, #00959D 10%, #034067 90%);
  --grad-orange-purple: linear-gradient(45deg, #FF671F 10%, #840B55 90%);
  --grad-cyan-roech:    linear-gradient(45deg, #04BBEE 10%, #0064B3 90%);

  /* Deep dark section gradient — matches the "We are Possibilists" purple-navy bg */
  --grad-dark-section:  linear-gradient(135deg, #2D0A4E 0%, #1A1060 35%, #0A2A6E 70%, #0064B3 100%);

  /* Light palette */
  --white:       #FFFFFF;
  --off-white:   #F4F6F9;   /* matches the soft grey in screenshot */
  --border:      #E0E6EF;
  --text-dark:   #1A2B3C;
  --text-main:   #2C3E55;
  --text-muted:  #607080;
  --text-light:  #909EAE;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', Arial, sans-serif;

  /* Layout */
  --section-pad: clamp(72px, 9vw, 120px);
  --container-max: 1200px;
  --container-pad: clamp(20px, 5vw, 56px);
  --narrow: 680px;   /* centered text columns */

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Radius */
  --r-card:  16px;
  --r-lg:    28px;
  --r-pill:  100px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  font-size: 16px; line-height: 1.65;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--roechling-blue); outline-offset: 3px; border-radius: 3px; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.section   { padding: var(--section-pad) 0; position: relative; overflow: hidden; }
/* Narrow centered column for text-heavy sections (matches screenshot layout) */
.narrow-col { max-width: var(--narrow); margin: 0 auto; text-align: center; }

/* ===== TYPOGRAPHY ===== */
.label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--roechling-blue); margin-bottom: 14px;
}
.label-light { color: rgba(255,255,255,0.55); }

.section-headline {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 24px; letter-spacing: -0.02em;
}
.section-headline-light { color: var(--white); }

.body-text  { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.body-text strong { color: var(--text-dark); font-weight: 600; }
.body-text-light { color: rgba(255,255,255,0.72); }
.hide-mobile { display: none; }

/* ===== BRAND CIRCLES (always at edges, partially off-screen) ===== */
.circle {
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  flex-shrink: 0;
}
/* Gradient fills */
.c-purple-blue   { background: var(--grad-purple-blue); }
.c-cyan-blue     { background: var(--grad-cyan-blue); }
.c-teal-blue     { background: var(--grad-teal-blue); }
.c-orange-purple { background: var(--grad-orange-purple); }
.c-cyan-roech    { background: var(--grad-cyan-roech); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--r-pill);
  font-family: var(--font-main); font-size: 15px; font-weight: 700;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.25s var(--ease-out);
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--roechling-blue); color: var(--white); border-color: var(--roechling-blue); }
.btn-primary:hover { background: var(--deep-blue); border-color: var(--deep-blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,100,179,0.28); }
.btn-ghost  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
/* CTA purple-gradient button — matches screenshot "Explore careers" button */
.btn-cta {
  background: var(--grad-purple-blue);
  color: var(--white); border: none;
  padding: 16px 36px; font-size: 16px;
  box-shadow: 0 4px 20px rgba(132,11,85,0.3);
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(132,11,85,0.38); }
.btn-large { padding: 16px 40px; font-size: 16px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse {
  0%   { transform: scaleY(0) translateY(-100%); opacity: 1; }
  75%  { transform: scaleY(1) translateY(0); opacity: 1; }
  100% { transform: scaleY(1) translateY(0); opacity: 0; }
}
@keyframes drift     { 0%,100% { transform: translateY(0); }    50% { transform: translateY(-20px); } }
@keyframes driftSlow { 0%,100% { transform: translateY(0); }    50% { transform: translateY(-32px); } }

.fade-up { opacity: 0; animation: fadeUp 0.85s var(--ease-out) forwards; }
.reveal  { opacity: 0; transform: translateY(36px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
/* Scrolled: translucent white — like screenshot shows white nav after hero */
.nav-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 2px 16px rgba(26,43,60,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--container-pad); max-width: 100%;
}

/* Logo */
.nav-logo { display: flex; align-items: center; color: var(--white); flex-shrink: 0; transition: color 0.3s; }
.nav-header.scrolled .nav-logo { color: var(--roechling-blue); }
.roechling-logo { height: 28px; width: auto; }

/* Nav links */
.nav-links { display: none; gap: 32px; }
.nav-link {
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: rgba(255,255,255,0.78); transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }
.nav-header.scrolled .nav-link { color: var(--text-muted); }
.nav-header.scrolled .nav-link:hover { color: var(--roechling-blue); }

/* Possibilists identifier */
.nav-identifier { display: none; flex-shrink: 0; }
.possibilists-logo-nav { height: 26px; width: auto; color: var(--white); fill: currentColor; transition: color 0.3s; }
.nav-header.scrolled .possibilists-logo-nav { color: var(--roechling-blue); }

/* Hamburger */
.hamburger { background: transparent; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 6px; }
.ham-line  { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s var(--ease-out); }
.nav-header.scrolled .ham-line { background: var(--text-dark); }
.hamburger[aria-expanded="true"] .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { background: rgba(255,255,255,0.98); backdrop-filter: blur(14px); padding: 16px var(--container-pad) 36px; border-top: 1px solid var(--border); }
.mobile-menu[hidden] { display: none; }
.mobile-link { display: block; font-size: 20px; font-weight: 700; color: var(--text-dark); padding: 13px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-link:hover { color: var(--roechling-blue); }


/* ============================================================
   HERO  — purple-to-blue gradient over video, exactly as screenshot
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
  /* Base bg if video fails */
  background: linear-gradient(135deg, #3D0B5C 0%, #1A1060 40%, #0A2A6E 75%, #0064B3 100%);
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
/* Gradient overlay matching screenshot's purple-left, blue-right feel */
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(100, 10, 130, 0.78) 0%,
    rgba(40, 15, 110, 0.72) 35%,
    rgba(6, 50, 120, 0.72) 65%,
    rgba(0, 80, 160, 0.68) 100%
  );
}

/* Decorative circles — large, at edges, partially off-screen (matches screenshot) */
.hero-decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
/* Big circle top-right, half off-screen */
.hero-decor .c1 {
  width: clamp(280px, 38vw, 520px); height: clamp(280px, 38vw, 520px);
  background: var(--grad-purple-blue);
  top: -18%; right: -10%;
  opacity: 0.35;
  animation: driftSlow 14s ease-in-out infinite;
}
/* Medium circle bottom-left, half off */
.hero-decor .c2 {
  width: clamp(180px, 24vw, 340px); height: clamp(180px, 24vw, 340px);
  background: var(--grad-cyan-blue);
  bottom: -12%; left: -8%;
  opacity: 0.28;
  animation: drift 10s ease-in-out infinite 2s;
}
/* Small circle mid-right */
.hero-decor .c3 {
  width: clamp(80px, 10vw, 140px); height: clamp(80px, 10vw, 140px);
  background: var(--grad-purple-blue);
  top: 38%; right: 8%;
  opacity: 0.32;
  animation: drift 8s ease-in-out infinite 1s;
}

/* Hero text */
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container-max); width: 100%;
  margin: 0 auto; padding: 130px var(--container-pad) 90px;
}
.hero-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.hero-headline {
  font-size: clamp(38px, 6.5vw, 86px);
  font-weight: 800; line-height: 1.07; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 26px; max-width: 760px;
}
.hero-sub { font-size: clamp(15px, 1.8vw, 19px); color: rgba(255,255,255,0.75); margin-bottom: 44px; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-line { width: 1px; height: 52px; background: rgba(255,255,255,0.22); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.6); transform-origin: top; animation: scrollPulse 2.4s ease-in-out infinite; }


/* ============================================================
   ABOUT  — white bg, narrow centered column (matches screenshot)
   ============================================================ */
.about { background: var(--white); }

/* The screenshot shows a narrow centered text block, then a video below */
.about-intro { max-width: var(--narrow); margin: 0 auto; text-align: center; }
.about-intro .body-text { font-size: 15px; color: var(--text-muted); }

/* Video embed area */
.about-video {
  margin-top: 60px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
  box-shadow: 0 8px 48px rgba(26,43,60,0.18);
  position: relative;
}
.about-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Play button overlay */
.video-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  cursor: pointer; transition: background 0.2s;
  border: none;
}
.video-play-btn:hover { background: rgba(0,0,0,0.18); }
.video-play-btn svg { width: 64px; height: 64px; color: var(--white); filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }

/* Stats below video */
.about-stats {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2px; background: var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  margin-top: 60px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.stat-item { background: var(--white); padding: 32px 28px; display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; }
.stat-number { font-size: clamp(28px, 4.5vw, 46px); font-weight: 800; letter-spacing: -0.03em; color: var(--roechling-blue); line-height: 1; }
.stat-label  { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Decorative circles on the sides — matches screenshot's edge circles */
.about-circle-left {
  position: absolute; left: -80px; top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 22vw, 320px); height: clamp(200px, 22vw, 320px);
  background: var(--grad-cyan-blue); opacity: 0.06;
  pointer-events: none;
}
.about-circle-right {
  position: absolute; right: -80px; top: 30%;
  width: clamp(160px, 18vw, 260px); height: clamp(160px, 18vw, 260px);
  background: var(--grad-purple-blue); opacity: 0.07;
  pointer-events: none;
}


/* ============================================================
   PURPOSE  — white, headline + colored accent line (screenshot style)
   ============================================================ */
.purpose-section { background: var(--white); border-top: 1px solid var(--border); }
.purpose-inner { max-width: var(--narrow); margin: 0 auto; text-align: center; }

.purpose-eyebrow { font-size: 14px; color: var(--text-muted); font-style: italic; margin-bottom: 20px; }

.purpose-headline {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800; line-height: 1.18; letter-spacing: -0.02em;
  color: var(--text-dark); margin-bottom: 28px;
}
/* "that make progress possible." line in brand blue — exactly as screenshot */
.purpose-accent {
  color: var(--roechling-blue);
  display: block;
}

/* Decorative side circles */
.purpose-circle-left {
  position: absolute; left: -90px; bottom: 5%;
  width: clamp(200px, 22vw, 300px); height: clamp(200px, 22vw, 300px);
  background: var(--grad-teal-blue); opacity: 0.07; pointer-events: none;
}
.purpose-circle-right {
  position: absolute; right: -70px; top: 10%;
  width: clamp(160px, 17vw, 240px); height: clamp(160px, 17vw, 240px);
  background: var(--grad-purple-blue); opacity: 0.07; pointer-events: none;
}


/* ============================================================
   "WE ARE POSSIBILISTS" DARK SECTION  — deep indigo/purple gradient
   Matches the prominent dark section in the screenshot exactly
   ============================================================ */
.possibilists-hero {
  background: var(--grad-dark-section);
  padding: var(--section-pad) 0;
  position: relative; overflow: hidden;
}

/* Large decorative circles at edges on dark bg */
.poss-circles { position: absolute; inset: 0; pointer-events: none; }
.poss-circles .c-left {
  width: clamp(260px, 35vw, 500px); height: clamp(260px, 35vw, 500px);
  background: var(--grad-purple-blue);
  left: -15%; bottom: -20%; opacity: 0.35;
  animation: driftSlow 14s ease-in-out infinite;
}
.poss-circles .c-right {
  width: clamp(200px, 26vw, 380px); height: clamp(200px, 26vw, 380px);
  background: var(--grad-cyan-blue);
  right: -10%; top: -10%; opacity: 0.3;
  animation: drift 11s ease-in-out infinite 2s;
}
.poss-circles .c-sm {
  width: clamp(80px, 9vw, 130px); height: clamp(80px, 9vw, 130px);
  background: var(--grad-orange-purple);
  right: 12%; bottom: 15%; opacity: 0.4;
  animation: drift 7s ease-in-out infinite 1s;
}

.possibilists-hero-inner {
  max-width: 760px; position: relative; z-index: 1;
}
.poss-hero-title {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 28px;
}
.poss-hero-body { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 18px; }
.poss-hero-body strong { color: var(--white); font-weight: 600; }


/* ============================================================
   TEAM / MEET OUR POSSIBILISTS  — white, exactly as screenshot
   ============================================================ */
.team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }

.team-card {
  border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex; flex-direction: column;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(26,43,60,0.12); border-color: transparent; }
.team-card:focus-visible { outline: 3px solid var(--roechling-blue); outline-offset: 3px; }

/* Card gradient header — grey-ish in screenshot, we use subtle gradient */
.team-card-visual { position: relative; height: 200px; overflow: hidden; }
.team-card-circles { position: absolute; inset: 0; }
.c-full { width: 150%; height: 150%; top: -25%; left: -25%; position: absolute; }
.c-sm-abs { width: 80px; height: 80px; bottom: -15px; right: -15px; position: absolute; opacity: 0.6; }
.team-avatar { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 110px; height: 110px; }
.team-avatar svg { width: 100%; height: 100%; }

.team-card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.team-name { font-size: 19px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.015em; margin-bottom: 4px; }
.team-role { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.team-quote { font-size: 15px; font-style: italic; color: var(--text-main); line-height: 1.55; flex: 1; margin-bottom: 20px; }
.team-cta { font-size: 13px; font-weight: 700; color: var(--roechling-blue); display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.team-card:hover .team-cta { gap: 10px; }


/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10, 20, 40, 0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.25s var(--ease-out);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-overlay[hidden] { display: none !important; }
.modal-box {
  background: var(--white); border-radius: 32px;
  max-width: 740px; width: 100%; max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr; position: relative;
  animation: modalIn 0.35s var(--ease-out);
  box-shadow: 0 28px 80px rgba(10,20,40,0.22);
}
@keyframes modalIn { from { transform: translateY(36px) scale(0.96); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-visual { position: relative; height: 210px; border-radius: 32px 32px 0 0; overflow: hidden; }
.modal-avatar { width: 110px; height: 110px; position: absolute; bottom: -14px; left: 36px; }
.modal-circles { position: absolute; inset: 0; pointer-events: none; }
.c-modal { width: 200px; height: 200px; top: -35%; right: -8%; opacity: 0.45; }
.modal-close { position: absolute; top: 18px; right: 20px; z-index: 10; background: rgba(255,255,255,0.18); border: none; color: var(--white); font-size: 20px; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.modal-close:hover { background: rgba(255,255,255,0.35); }
.modal-content { padding: 32px 36px 40px; }
.modal-division { font-size: 11px; font-weight: 700; color: var(--roechling-blue); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.modal-name { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; color: var(--text-dark); margin-bottom: 4px; }
.modal-role { font-size: 13px; color: var(--text-muted); font-weight: 600; margin-bottom: 24px; }
.modal-quote { font-size: 19px; font-style: italic; font-weight: 700; color: var(--deep-blue); line-height: 1.4; margin-bottom: 22px; padding-left: 18px; border-left: 3px solid var(--roechling-blue); }
.modal-story { font-size: 15px; line-height: 1.78; color: var(--text-muted); margin-bottom: 16px; }
.modal-btn { margin-top: 10px; }


/* ============================================================
   BENEFITS  — off-white #F4F6F9 (matches screenshot grey sections)
   ============================================================ */
.benefits { background: var(--off-white); border-top: 1px solid var(--border); }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.benefit-card { background: var(--white); border-radius: var(--r-card); padding: 32px 28px; border: 1.5px solid var(--border); transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(26,43,60,0.09); border-color: rgba(0,100,179,0.16); }
.benefit-icon { width: 48px; height: 48px; margin-bottom: 18px; color: var(--roechling-blue); transition: color 0.25s; }
.benefit-card:hover .benefit-icon { color: var(--rich-purple); }
.benefit-title { font-size: 18px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.01em; margin-bottom: 10px; }
.benefit-body  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }


/* ============================================================
   WORLD  — white, centered text + pill list (matches screenshot)
   ============================================================ */
.world { background: var(--white); border-top: 1px solid var(--border); }

/* Wide decorative circles at edges */
.world-circle-left {
  position: absolute; left: -120px; top: 50%;
  transform: translateY(-50%);
  width: clamp(240px, 26vw, 380px); height: clamp(240px, 26vw, 380px);
  background: var(--grad-purple-blue); opacity: 0.07; pointer-events: none;
}
.world-circle-right {
  position: absolute; right: -100px; top: 30%;
  width: clamp(200px, 22vw, 320px); height: clamp(200px, 22vw, 320px);
  background: var(--grad-orange-purple); opacity: 0.08; pointer-events: none;
}

.world-inner { max-width: var(--narrow); margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.world-headline { font-size: clamp(22px, 3.2vw, 38px); font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 20px; }
.world-body { font-size: 16px; color: var(--text-muted); line-height: 1.78; margin-bottom: 36px; }

/* Join reasons bullet list — simple, as in screenshot */
.join-reasons { text-align: left; margin-bottom: 40px; }
.join-reason {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 16px; color: var(--text-main);
}
.join-reason:first-child { border-top: 1px solid var(--border); }
.join-dot {
  flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--roechling-blue); margin-top: 7px;
}

/* "Join us and discover" CTA block */
.world-cta-block { padding-top: 36px; border-top: 1px solid var(--border); text-align: center; }
.world-cta-label { font-size: 17px; font-weight: 600; color: var(--text-dark); margin-bottom: 24px; }

/* Employee resource note */
.resource-note { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--border); text-align: center; }
.resource-note p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.resource-note a { color: var(--roechling-blue); font-weight: 600; }
.resource-note a:hover { text-decoration: underline; }
.resource-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--roechling-blue);
  margin-top: 12px;
}
.resource-link:hover { text-decoration: underline; }


/* ============================================================
   FOOTER  — white/very light (matches screenshot)
   ============================================================ */
.footer { background: var(--off-white); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .footer-logo { height: 26px; width: auto; color: var(--roechling-blue); margin-bottom: 12px; }
.footer-tagline { font-size: 12px; color: var(--text-light); letter-spacing: 0.07em; text-transform: uppercase; }
.footer-nav-title { font-size: 11px; font-weight: 700; color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--roechling-blue); }
.footer-contact p { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.footer-email { display: block; font-size: 14px; color: var(--roechling-blue); font-weight: 600; margin-bottom: 20px; word-break: break-word; }
.footer-email:hover { text-decoration: underline; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--text-light); transition: color 0.2s; }
.footer-social a:hover { color: var(--roechling-blue); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--text-light); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: var(--text-light); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-muted); }


/* ============================================================
   RESPONSIVE — TABLET ≥ 640px
   ============================================================ */
@media (min-width: 640px) {
  .hide-mobile   { display: inline; }
  .team-grid     { grid-template-columns: repeat(2,1fr); }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .about-stats   { grid-template-columns: repeat(4,1fr); max-width: 100%; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — DESKTOP ≥ 900px
   ============================================================ */
@media (min-width: 900px) {
  .nav-links      { display: flex; }
  .nav-identifier { display: flex; }
  .hamburger      { display: none; }
  .team-grid      { grid-template-columns: repeat(3,1fr); }
  .benefits-grid  { grid-template-columns: repeat(3,1fr); }
  .modal-box      { grid-template-columns: 260px 1fr; }
  .modal-visual   { height: auto; border-radius: 32px 0 0 32px; min-height: 460px; }
  .footer-grid    { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom  { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .fade-up { animation: none; opacity: 1; }
}
