@charset "UTF-8";

:root {
  --ink: #0f172a;       /* Slate 900 */
  --ink-mid: #334155;   /* Slate 700 */
  --ink-light: #64748b; /* Slate 500 */
  --paper: #ffffff;
  --paper-warm: #f8fafc; /* Very light slate */
  --paper-dark: #f1f5f9;
  --accent: #ea580c;    /* Premium Orange */
  --accent-light: #ffedd5;
  --accent-hover: #c2410c;
  --sky: #005bac;       /* Fuji Royal Blue */
  --sky-light: #3b82f6; /* Bright Accent Blue */
  --sky-pale: #eff6ff;  /* Soft Ice Blue */
  --white: #ffffff;
  --border: #e2e8f0;
  --font-serif: 'Zen Kaku Gothic New', sans-serif;
  --font-sans: 'M PLUS Rounded 1c', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
  --shadow-accent: 0 6px 20px rgba(234, 88, 12, 0.25);
  --shadow-blue: 0 6px 20px rgba(0, 91, 172, 0.2);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
}

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

html { 
  scroll-behavior: smooth; 
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
nav {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 100;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 0 8%;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

nav.scrolled {
  height: 64px;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

nav.scrolled .nav-logo img {
  height: 32px;
}

.nav-links { 
  display: flex; 
  align-items: center;
  gap: 32px; 
}

.nav-links a {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sky);
  transition: var(--transition);
}

.nav-links a:hover { 
  color: var(--sky); 
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 18px !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: var(--shadow-accent);
  transition: var(--transition) !important;
}

.nav-cta:hover { 
  background: var(--accent-hover) !important; 
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 80px;
  background: linear-gradient(135deg, #ffffff 60%, var(--sky-pale) 100%);
  position: relative;
}

.hero-left {
  padding: 80px 10% 80px 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 24px; 
  height: 2px;
  background: var(--sky);
}

.hero-catch {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-catch em {
  color: var(--accent);
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero-catch em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: rgba(234, 88, 12, 0.15);
  z-index: -1;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.badge {
  font-size: 18px;
  font-weight: 500;
  padding: 6px 16px;
  border: 1px solid var(--sky-light);
  border-radius: 50px;
  color: var(--sky);
  background: var(--white);
  letter-spacing: 0.04em;
  transition: var(--transition-fast);
}

.badge:hover {
  background: var(--sky-pale);
  transform: translateY(-1px);
}

.hero-cta-row { 
  display: flex; 
  gap: 24px; 
  align-items: center; 
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover { 
  background: var(--accent-hover); 
  transform: translateY(-3px); 
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.35);
}

.btn-ghost {
  color: var(--sky);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-ghost:hover { 
  color: var(--sky-light); 
  transform: translateX(4px);
}

.hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 10%;
}

.hero-photo-container {
  position: relative;
  width: 100%;
  height: 85%;
}

.hero-photo-wrap {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.hero-photo-wrap:hover img {
  transform: scale(1.03);
}

.hero-photo-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 60%, rgba(15, 23, 42, 0.4) 100%);
  pointer-events: none;
}

/* Stats overlapping hero bottom */
.hero-stats {
  position: absolute;
  bottom: -40px;
  left: 8%;
  right: 8%;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.hero-stat-item {
  text-align: center;
  padding: 30px 24px;
  border-right: 1px solid var(--border);
  position: relative;
}

.hero-stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}

.hero-stat-item:hover::before {
  background: var(--sky);
}

.hero-stat-item:last-child { 
  border-right: none; 
}

.hero-stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--sky);
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero-stat-num span { 
  font-size: 18px; 
  font-weight: 500;
}

.hero-stat-label {
  font-size: 18px;
  color: var(--ink-mid);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* SECTIONS COMMON */
section { 
  padding: 120px 8%; 
  position: relative;
}

.section-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
}

.sec-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sec-label::before {
  content: '';
  width: 20px; 
  height: 2px;
  background: var(--accent);
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.lead {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.85;
  max-width: 700px;
  margin-bottom: 56px;
}

/* ABOUT SECTION */
.about { 
  background: var(--white); 
}

.about-layout {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.about-content-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-card {
  padding: 32px;
  background: var(--paper-warm);
  border-left: 4px solid var(--sky);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.about-card-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--sky-light);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.about-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.8;
}

.about-visual-right {
  position: relative;
}

.about-img-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.products-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.product-tag {
  font-size: 18px;
  font-weight: 600;
  padding: 8px 20px;
  background: var(--sky-pale);
  border: 1px solid rgba(0, 91, 172, 0.15);
  border-radius: 50px;
  color: var(--sky);
  transition: var(--transition-fast);
}

.product-tag:hover {
  background: var(--sky);
  color: var(--white);
  transform: translateY(-2px);
}

/* STRENGTH SECTION */
.strength { 
  background: #0f2537; /* Clean, premium deep blue/navy */
  color: var(--white); 
}

.strength .sec-label { 
  color: var(--sky-light); 
}

.strength .sec-label::before { 
  background: var(--sky-light); 
}

.strength h2 { 
  color: var(--white); 
}

.strength .lead { 
  color: rgba(255, 255, 255, 0.7); 
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.strength-item {
  padding: 48px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: var(--transition);
}

.strength-item:hover { 
  background: rgba(255, 255, 255, 0.06); 
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.strength-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--sky-light);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.8;
}

.strength-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.strength-item p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

/* JOBS SECTION */
.jobs { 
  background: var(--white); 
}

.jobs-list { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
  margin-top: 48px; 
}

.job-item {
  display: grid;
  grid-template-columns: 240px 1fr 200px;
  align-items: center;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  gap: 32px;
  transition: var(--transition);
}

.job-item:hover { 
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-light);
}

.job-item-title-col h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.job-item-title-col span {
  font-size: 18px;
  color: var(--ink-light);
  font-weight: 500;
}

.job-item-body-col p {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.8;
}

.job-tags { 
  display: flex; 
  gap: 8px; 
  flex-wrap: wrap; 
  margin-top: 16px; 
}

.job-tag {
  font-size: 18px;
  font-weight: 600;
  padding: 4px 12px;
  background: var(--paper-warm);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--ink-mid);
  white-space: nowrap;
}

.job-tag-accent {
  background: var(--accent-light);
  border-color: rgba(234, 88, 12, 0.2);
  color: var(--accent);
}

.job-action-col {
  text-align: right;
}

.job-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--sky);
  border: 2px solid var(--sky);
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.job-item:hover .job-btn {
  background: var(--sky);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

/* PEOPLE (INTERVIEW) SECTION */
.interview { 
  background: var(--paper-warm); 
}

.interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.interview-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.interview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.interview-photo-wrap {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.interview-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition);
}

.interview-card:hover .interview-photo-wrap img {
  transform: scale(1.05);
}

.interview-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--sky);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.interview-body { 
  padding: 32px; 
}

.interview-name-row {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.interview-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.interview-role {
  font-size: 18px;
  color: var(--ink-light);
  font-weight: 500;
}

.interview-qa { 
  margin-bottom: 20px; 
}

.interview-qa:last-child {
  margin-bottom: 0;
}

.interview-q {
  font-size: 18px;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.interview-q::before {
  content: 'Q';
  background: var(--sky-pale);
  color: var(--sky);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.interview-a {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.75;
}

/* ENVIRONMENT SECTION */
.environment { 
  background: var(--white); 
}

.env-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: start;
}

.env-left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.env-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.env-stat-card {
  background: var(--paper-warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.env-stat-card:hover {
  background: var(--white);
  border-color: var(--sky-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.env-stat-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}

.env-stat-val span { 
  font-size: 18px; 
  font-weight: 500;
  color: var(--ink-mid);
}

.env-stat-label { 
  font-size: 18px; 
  color: var(--ink-light); 
  font-weight: 600;
  letter-spacing: 0.05em; 
}

/* Charts list */
.charts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.chart-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.chart-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.chart-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  height: 36px;
  display: flex;
  align-items: center;
}

.chart-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: var(--ink-mid);
  font-weight: 500;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.env-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.env-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}

.env-feature:hover {
  border-color: var(--accent-light);
  background: var(--sky-pale);
}

.env-feature-dot {
  width: 8px; 
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 10px;
  flex-shrink: 0;
}

.env-feature-text { 
  font-size: 18px; 
  color: var(--ink-mid); 
  line-height: 1.7; 
}

.env-feature-text strong { 
  color: var(--ink); 
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

/* Environment Right */
.env-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.env-image-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.env-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* BENEFITS SECTION */
.benefits { 
  background: var(--paper-warm); 
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--sky-pale);
  position: relative;
}

.benefit-card h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--sky);
}

.benefit-list { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.benefit-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}

.benefit-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.benefit-key { 
  font-size: 18px; 
  color: var(--ink-light); 
  font-weight: 600;
  flex-shrink: 0; 
}

.benefit-val { 
  font-size: 18px; 
  color: var(--ink-mid); 
  text-align: right; 
}

.benefit-val strong { 
  color: var(--sky); 
  font-weight: 700; 
}

/* GROWTH (EDUCATION) SECTION */
.education { 
  background: var(--white); 
}

.edu-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: start;
}

.flow-steps { 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
}

.flow-step-item {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.flow-step-item:last-child { 
  padding-bottom: 0; 
}

.flow-step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 18px; 
  top: 36px;
  width: 2px;
  height: calc(100% - 36px);
  background: var(--border);
}

.flow-dot {
  width: 38px; 
  height: 38px;
  border-radius: 50%;
  background: var(--sky-pale);
  border: 2px solid var(--sky);
  display: flex; 
  align-items: center; 
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--sky);
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
}

.flow-step-item:hover .flow-dot {
  background: var(--sky);
  color: var(--white);
  transform: scale(1.1);
}

.flow-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  padding-top: 6px;
}

.flow-content p { 
  font-size: 18px; 
  color: var(--ink-mid); 
  line-height: 1.75; 
}

.edu-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 100px;
}

.culture-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.culture-box h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
}

.culture-point { 
  display: flex; 
  gap: 16px; 
  margin-bottom: 24px; 
}

.culture-point:last-child { 
  margin-bottom: 0; 
}

.culture-icon {
  width: 36px; 
  height: 36px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-sans);
}

.culture-text h4 { 
  font-size: 18px; 
  font-weight: 700; 
  color: var(--ink); 
  margin-bottom: 6px; 
}

.culture-text p { 
  font-size: 18px; 
  color: var(--ink-light); 
  line-height: 1.7; 
}

/* SELECTION SECTION */
.selection { 
  background: #0f2537; /* Consistent dark-navy for callout/process sections */
  color: var(--white);
}

.selection .sec-label { 
  color: var(--accent-light); 
}

.selection .sec-label::before { 
  background: var(--accent-light); 
}

.selection h2 { 
  color: var(--white); 
}

.selection-grid { 
  display: grid; 
  grid-template-columns: 55% 45%; 
  gap: 64px; 
  margin-top: 48px; 
  align-items: start; 
}

.selection-flow { 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
}

.sel-step {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}

.sel-step:last-child { 
  padding-bottom: 0; 
}

.sel-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 18px; 
  top: 36px;
  width: 2px;
  height: calc(100% - 36px);
  background: rgba(255,255,255,0.15);
}

.sel-dot {
  width: 38px; 
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--accent);
  display: flex; 
  align-items: center; 
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.sel-content h4 { 
  font-size: 18px; 
  font-weight: 700; 
  color: var(--white); 
  margin-bottom: 8px; 
  padding-top: 6px; 
}

.sel-content p { 
  font-size: 18px; 
  color: rgba(255, 255, 255, 0.6); 
  line-height: 1.75; 
}

.stance-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
}

.stance-box h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.stance-point { 
  display: flex; 
  gap: 16px; 
  margin-bottom: 24px; 
}

.stance-point:last-child { 
  margin-bottom: 0; 
}

.stance-icon {
  width: 36px; 
  height: 36px;
  background: rgba(234, 88, 12, 0.2);
  border-radius: 8px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-light);
  font-size: 18px;
  font-weight: 700;
}

.stance-text { 
  font-size: 18px; 
  color: rgba(255,255,255,0.7); 
  line-height: 1.75; 
}

.stance-text strong { 
  color: var(--white); 
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

/* FAQ SECTION */
.faq { 
  background: var(--white); 
}

.faq-list { 
  margin-top: 48px; 
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--sky-light);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-q::before {
  content: 'Q.';
  color: var(--accent);
  font-weight: 800;
  margin-right: 12px;
  font-size: 18px;
}

.faq-q-text {
  flex-grow: 1;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: var(--transition);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--ink-light);
  transition: var(--transition);
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 9px;
  left: 0;
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 9px;
  top: 0;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-q {
  background: var(--sky-pale);
  color: var(--sky);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--white);
}

.faq-a-inner {
  padding: 32px 32px 32px 52px;
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%);
  padding: 120px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cta-section::before {
  top: -100px; 
  right: -100px;
  width: 400px; 
  height: 400px;
}

.cta-section::after {
  bottom: -150px; 
  left: -50px;
  width: 300px; 
  height: 300px;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.45;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: var(--white);
  color: var(--sky);
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.btn-white:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

/* FOOTER */
footer {
  background: #0b1a27; /* Very dark shade for footer */
  padding: 80px 8% 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: flex-end;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  height: 36px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-address {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.95;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 18px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--sky-light);
}

.footer-copy {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

/* FADE-UP ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  nav { padding: 0 5%; }
  section { padding: 100px 5%; }
  .hero-left { padding: 80px 5% 80px 8%; }
  .hero-right { padding-right: 5%; }
}

@media (max-width: 992px) {
  /* Navigation mobile menu */
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    transition: var(--transition);
    z-index: 105;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 16px;
  }
  
  /* Hero stacks vertically */
  .hero { 
    grid-template-columns: 1fr; 
    min-height: auto; 
    padding-bottom: 0;
  }
  
  .hero-left { 
    padding: 80px 8% 40px; 
    text-align: center;
    align-items: center;
  }
  
  .hero-sub {
    max-width: 600px;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .hero-right {
    padding: 0;
    height: 300px;
  }
  
  .hero-photo-wrap {
    height: 100%;
  }
  
  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    border-radius: 16px;
    margin: -120px 6% 0;
  }

  .hero-stat-item {
    padding: 20px 10px;
  }

  .hero-stat-num {
    font-size: 30px;
    white-space: nowrap;
  }

  .hero-stat-num span {
    font-size: 16px;
  }

  .hero-stat-label {
    font-size: 13px;
    white-space: nowrap;
  }
  
  /* Two columns to one column */
  .about-layout, .env-layout, .edu-layout, .selection-grid { 
    grid-template-columns: 1fr; 
    gap: 48px; 
  }
  
  .about-visual-right {
    order: -1;
  }
  
  .env-right {
    position: static;
  }
  
  .edu-right {
    position: static;
  }
  
  .strength-grid { 
    grid-template-columns: 1fr; 
  }
  
  .interview-grid { 
    grid-template-columns: 1fr; 
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .job-item { 
    grid-template-columns: 1fr; 
    gap: 20px; 
    padding: 30px;
  }
  
  .job-action-col {
    text-align: left;
  }
  
  footer { 
    grid-template-columns: 1fr; 
    gap: 32px;
    padding: 60px 8% 40px; 
  }
  
  .footer-right {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  section { padding: 80px 6%; }
  
  .hero {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }
  
  .hero-left {
    padding: 60px 6% 30px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    border-radius: 16px;
    margin: -150px 6% 0;
  }
  
  .hero-stat-item {
    border-right: 1px solid var(--border);
    border-bottom: none;
    padding: 16px 8px;
  }

  .hero-stat-item:last-child {
    border-right: none;
    border-bottom: none;
  }

  .hero-stat-num {
    font-size: 26px;
    white-space: nowrap;
  }

  .hero-stat-num span {
    font-size: 14px;
  }

  .hero-stat-label {
    font-size: 12px;
    white-space: nowrap;
  }
  
  .env-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .charts-row {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 24px;
  }
  
  .faq-q {
    padding: 20px;
  }
  
  .faq-a-inner {
    padding: 20px 20px 20px 36px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}
