@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --navy:       #2D3270;
  --navy-dark:  #1E2155;
  --navy-light: #3D4490;
  --teal:       #5BC8C8;
  --teal-dark:  #3AAEAE;
  --teal-light: #A8E4E4;
  --white:      #FFFFFF;
  --gray-50:    #F8F9FC;
  --gray-100:   #F1F3F9;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-600:   #4B5563;
  --gray-800:   #1F2937;
  --text:       #1A1B2E;
  --text-muted: #6B7280;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(45,50,112,0.08);
  --shadow-md:  0 6px 32px rgba(45,50,112,0.12);
  --shadow-lg:  0 12px 56px rgba(45,50,112,0.18);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w:      1200px;
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input,textarea,select { font-family: inherit; }

/* ─── Typography ─────────────────────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; line-height: 1.3; }
p  { font-size: 1rem; line-height: 1.7; }

/* ─── Layout helpers ─────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ─── SVG Icons ──────────────────────────────────────────────────────────────── */
.icon { display: inline-block; flex-shrink: 0; }
.feature-icon svg,
.hr-item-icon svg,
.value-icon svg,
.benefit-icon svg,
.contact-info-icon svg,
.book-benefit-icon svg,
.process-icon svg { display: block; }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-size: 0.95rem;
  font-weight: 600; border: none; transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--navy); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(91,200,200,0.38); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ─── Topbar ─────────────────────────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--navy-dark); color: rgba(255,255,255,0.75);
  font-size: 0.78rem; transition: transform 0.35s ease;
}
.topbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 36px; display: flex; align-items: center; gap: 20px;
}
.topbar-info {
  display: flex; align-items: center; gap: 6px;
}
.topbar-info svg { width: 13px; height: 13px; stroke: var(--teal); flex-shrink: 0; }
.topbar-info a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.topbar-info a:hover { color: var(--teal); }
.topbar-social-wrap { display: flex; gap: 8px; margin-left: auto; align-items: center; }
.topbar-social {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; transition: var(--transition); color: rgba(255,255,255,0.7);
}
.topbar-social svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }
.topbar-social:hover { background: var(--teal); color: var(--navy); }

/* ─── Navigation ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: background 0.35s ease, box-shadow 0.35s ease, top 0.35s ease;
}
.nav.scrolled { top: 0; }
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(45,50,112,0.1);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 96px; display: flex; align-items: center; gap: 32px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 80px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); transition: filter 0.35s, height 0.35s;
}
.nav.scrolled .nav-logo img { filter: none; }
.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1;
}
.nav-link {
  padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.9); transition: var(--transition);
}
.nav.scrolled .nav-link { color: var(--text); }
.nav-link:hover { background: rgba(91,200,200,0.18); color: var(--teal); }
.nav.scrolled .nav-link:hover { background: var(--gray-50); }
.nav-link.active { color: var(--teal); font-weight: 600; }
.nav-cta {
  background: var(--teal); color: var(--navy) !important;
  padding: 10px 22px; border-radius: 50px; font-weight: 700;
  font-size: 0.88rem; transition: var(--transition);
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,200,200,0.35); }
.nav-burger {
  display: none; background: none; border: none;
  color: white; font-size: 1.5rem; padding: 6px;
}
.nav.scrolled .nav-burger { color: var(--navy); }

/* ─── Page header ─────────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: 196px 0 80px; position: relative; overflow: hidden; color: white;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(91,200,200,0.15) 0%, transparent 65%);
}
.page-hero .container { position: relative; }
.page-hero-badge {
  display: inline-block; background: rgba(91,200,200,0.2); color: var(--teal);
  border: 1px solid rgba(91,200,200,0.4); border-radius: 50px;
  padding: 6px 18px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 20px;
}
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 600px; }

/* ─── Section labels ─────────────────────────────────────────────────────────── */
.section-label {
  display: inline-block; color: var(--teal); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 580px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ─── Hero (home) ────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  position: relative; overflow: hidden; padding: 136px 0 60px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(91,200,200,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(91,200,200,0.08) 0%, transparent 55%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative;
}
.hero-logo {
  margin-bottom: 28px;
}
.hero-logo img {
  height: 80px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,200,200,0.15); border: 1px solid rgba(91,200,200,0.35);
  border-radius: 50px; padding: 8px 18px; margin-bottom: 24px;
}
.hero-badge span { color: var(--teal); font-size: 0.82rem; font-weight: 600; }
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero h1 { color: white; margin-bottom: 24px; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 52px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-value { font-size: 2.2rem; font-weight: 800; color: var(--teal); }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ─── Hero photo ─────────────────────────────────────────────────────────────── */
.hero-photo-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}
.hero-photo {
  width: 100%; height: 500px; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.hero-photo-wrap:hover .hero-photo { transform: scale(1.03); }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(30,33,85,0.35) 100%);
}
.hero-photo-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-radius: var(--radius); padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.hero-photo-badge-value { font-size: 2rem; font-weight: 900; color: var(--teal-dark); line-height: 1; }
.hero-photo-badge-label { font-size: 0.78rem; color: var(--navy); font-weight: 600; margin-top: 4px; }
.hero-photo-badge2 {
  position: absolute; top: 24px; right: -16px;
  background: var(--teal); border-radius: var(--radius);
  padding: 14px 20px; box-shadow: 0 8px 24px rgba(91,200,200,0.4);
}
.hero-photo-badge2-value { font-size: 1.6rem; font-weight: 900; color: var(--navy); line-height: 1; }
.hero-photo-badge2-label { font-size: 0.72rem; color: rgba(30,33,85,0.75); font-weight: 600; margin-top: 4px; }

/* ─── Section photo grid ─────────────────────────────────────────────────────── */
.section-photo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}

/* ─── Section photos ─────────────────────────────────────────────────────────── */
.section-photo-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.section-photo-wrap img {
  width: 100%; height: 440px; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.section-photo-wrap:hover img { transform: scale(1.04); }
.section-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(30,33,85,0.7));
  padding: 40px 24px 20px;
  color: white; font-size: 0.85rem; font-weight: 500;
}

/* ─── Team photo (Clio & Selene) ─────────────────────────────────────────────── */
.team-photo-section { background: var(--navy); padding: 96px 0; }
.team-photo-grid { display: grid; grid-template-columns: 400px 1fr; gap: 72px; align-items: center; }
.team-real-photo-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  position: relative;
}
.team-real-photo-wrap img {
  width: 100%; height: 540px; object-fit: cover; object-position: top;
  display: block;
}
.team-real-photo-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(30,33,85,0.3) 100%);
  pointer-events: none;
}

/* ─── Pillars / Features ─────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-100); transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(91,200,200,0.15), rgba(91,200,200,0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; border: 1px solid rgba(91,200,200,0.2);
}
.feature-icon svg { width: 26px; height: 26px; stroke: var(--teal); }
.feature-card h3 { color: var(--navy); margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ─── HR Situation section ───────────────────────────────────────────────────── */
.hr-section { background: var(--gray-50); }
.hr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hr-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.hr-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; border-radius: var(--radius); padding: 20px 24px;
  box-shadow: var(--shadow); border-left: 3px solid var(--teal);
}
.hr-item-icon {
  width: 40px; height: 40px; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
}
.hr-item-icon svg { width: 24px; height: 24px; stroke: var(--teal); }
.hr-item h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.hr-item p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.hr-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg); padding: 40px;
  color: white; position: relative; overflow: hidden;
}
.hr-visual::after {
  content: ''; position: absolute; right: -40px; bottom: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  border: 40px solid rgba(91,200,200,0.1);
}
.hr-approach-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; color: var(--teal); }
.hr-approach-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.hr-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.hr-check svg { width: 12px; height: 12px; stroke: var(--navy); stroke-width: 3; }
.hr-approach-item p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }

/* ─── Testimonials ───────────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100);
  transition: var(--transition); display: flex; flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote {
  font-size: 2.5rem; color: var(--teal); font-weight: 900;
  line-height: 1; margin-bottom: 16px; font-family: Georgia, serif;
}
.testimonial-text {
  color: var(--text-muted); font-size: 0.92rem; line-height: 1.75;
  flex: 1; margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem; color: white;
}
.testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.testimonial-stars { color: #F59E0B; font-size: 0.8rem; margin-bottom: 4px; }
.candidate-testimonials { background: var(--gray-50); }
.candidate-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100);
  border-top: 3px solid var(--teal);
}

/* ─── Partners ───────────────────────────────────────────────────────────────── */
.partners-section { background: var(--gray-50); padding: 64px 0; }
.partners-label {
  text-align: center; color: var(--text-muted); font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 36px;
}
.partners-grid {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 16px 32px;
}
.partner-chip {
  background: white; border: 1px solid var(--gray-200); border-radius: 50px;
  padding: 10px 24px; font-size: 0.9rem; font-weight: 600; color: var(--gray-600);
  transition: var(--transition);
}
.partner-chip:hover { border-color: var(--teal); color: var(--navy); box-shadow: var(--shadow); }

/* ─── Big quote ──────────────────────────────────────────────────────────────── */
.big-quote-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 96px 0; text-align: center;
}
.big-quote-text {
  font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 600; color: white;
  max-width: 860px; margin: 0 auto 28px; line-height: 1.6; font-style: italic;
}
.big-quote-text::before { content: '\201C'; color: var(--teal); }
.big-quote-text::after  { content: '\201D'; color: var(--teal); }
.big-quote-author { color: var(--teal); font-weight: 700; font-size: 0.95rem; }
.big-quote-role   { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 4px; }

/* ─── Book section ───────────────────────────────────────────────────────────── */
.book-section { background: var(--white); }
.book-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.book-cover {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg); padding: 48px 40px;
  text-align: center; color: white; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.book-cover::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  border: 30px solid rgba(91,200,200,0.12);
}
.book-cover-icon {
  width: 64px; height: 64px; background: rgba(91,200,200,0.15);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; border: 1px solid rgba(91,200,200,0.2);
}
.book-cover-icon svg { width: 32px; height: 32px; stroke: var(--teal); }
.book-cover-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.book-cover-title em { color: var(--teal); font-style: normal; }
.book-cover-subtitle { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.book-cover-authors { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 20px; }
.book-cover-badge {
  display: inline-block; background: var(--teal); color: var(--navy);
  border-radius: 50px; padding: 6px 18px; font-size: 0.78rem; font-weight: 700; margin-top: 16px;
}
.book-content h2 { margin-bottom: 18px; }
.book-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; }
.book-benefits { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.book-benefit { display: flex; gap: 12px; align-items: flex-start; }
.book-benefit-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(91,200,200,0.12); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.book-benefit-icon svg { width: 17px; height: 17px; stroke: var(--teal); }
.book-benefit p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* ─── Blog ───────────────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 200px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--teal); color: var(--navy);
  border-radius: 50px; padding: 4px 14px; font-size: 0.73rem; font-weight: 700; z-index: 1;
}
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.blog-read-more { color: var(--teal); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.blog-read-more:hover { gap: 8px; }

/* ─── Blog hero article ──────────────────────────────────────────────────────── */
.blog-hero-article {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: 48px; border: 1px solid var(--gray-100);
}
.blog-hero-img {
  overflow: hidden; min-height: 320px; position: relative;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.blog-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-hero-body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-hero-tag {
  display: inline-block; background: var(--teal); color: var(--navy);
  border-radius: 50px; padding: 5px 16px; font-size: 0.75rem; font-weight: 700; margin-bottom: 20px;
}
.blog-hero-body h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 14px; }
.blog-hero-body p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; }

/* ─── CTA Banner ─────────────────────────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%); padding: 80px 0; text-align: center; }
.cta-section h2 { color: var(--navy); margin-bottom: 16px; }
.cta-section p  { color: rgba(30,33,85,0.75); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Jobs page ──────────────────────────────────────────────────────────────── */
.jobs-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.jobs-filter-btn {
  padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  border: 1px solid var(--gray-200); background: white; color: var(--text-muted);
  transition: var(--transition); cursor: pointer;
}
.jobs-filter-btn.active, .jobs-filter-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.jobs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.job-card {
  background: white; border-radius: var(--radius-lg); padding: 28px 32px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100);
  transition: var(--transition); cursor: pointer;
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.job-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.job-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.job-company { font-size: 0.82rem; color: var(--text-muted); }
.job-badge {
  background: rgba(91,200,200,0.12); color: var(--teal-dark);
  border-radius: 50px; padding: 4px 12px; font-size: 0.75rem; font-weight: 600;
  white-space: nowrap; border: 1px solid rgba(91,200,200,0.25);
}
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.job-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.82rem; color: var(--text-muted); }
.job-meta-item svg { width: 14px; height: 14px; stroke: var(--gray-400); flex-shrink: 0; }
.job-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.job-footer { display: flex; justify-content: space-between; align-items: center; }
.job-date { font-size: 0.75rem; color: var(--gray-400); }

/* ─── Modal ──────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(30,33,85,0.6); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(4px); animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.modal {
  background: white; border-radius: var(--radius-lg); padding: 40px;
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp { from{transform:translateY(20px);opacity:0} to{transform:none;opacity:1} }
.modal h3 { color: var(--navy); margin-bottom: 8px; }
.modal-subtitle { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }

/* ─── Forms ──────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--gray-200); font-size: 0.92rem; color: var(--text);
  transition: var(--transition); background: var(--gray-50);
}
.form-control:focus { outline: none; border-color: var(--teal); background: white; box-shadow: 0 0 0 3px rgba(91,200,200,0.12); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-file {
  border: 2px dashed var(--gray-200); border-radius: 10px;
  padding: 24px; text-align: center; cursor: pointer; transition: var(--transition); background: var(--gray-50);
}
.form-file:hover { border-color: var(--teal); background: rgba(91,200,200,0.04); }
.form-file input { display: none; }
.form-file-icon { display: flex; justify-content: center; margin-bottom: 8px; }
.form-file-icon svg { width: 32px; height: 32px; stroke: var(--gray-400); }
.form-file-text { font-size: 0.85rem; color: var(--text-muted); }
.form-file-selected { color: var(--teal); font-weight: 600; margin-top: 6px; font-size: 0.82rem; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 28px; }
.btn-cancel {
  background: var(--gray-100); color: var(--text-muted); padding: 12px 24px;
  border-radius: 50px; border: none; font-size: 0.9rem; font-weight: 500;
  transition: var(--transition); cursor: pointer;
}
.btn-cancel:hover { background: var(--gray-200); }

/* ─── Contact social links ───────────────────────────────────────────────────── */
.contact-social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 50px;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  color: var(--navy); font-size: 0.82rem; font-weight: 600;
  transition: var(--transition); text-decoration: none;
}
.contact-social-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact-social-link:hover { background: var(--navy); color: white; border-color: var(--navy); }
.contact-social-link:hover svg { stroke: white; }

/* ─── Contact / About / Process ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.contact-info-card {
  background: white; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100); margin-bottom: 16px;
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(91,200,200,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--teal); }
.contact-info-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: var(--navy); font-weight: 600; }
.contact-form-card {
  background: white; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
}
.contact-form-card h3 { margin-bottom: 8px; color: var(--navy); }
.contact-form-card p  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }

.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.team-card {
  background: white; border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow); text-align: center; border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: white;
}
.team-name { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { color: var(--teal); font-size: 0.85rem; font-weight: 600; margin-bottom: 14px; }
.team-bio  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card {
  background: var(--gray-50); border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--gray-100);
}
.value-icon { width: 40px; height: 40px; margin-bottom: 14px; display: flex; align-items: center; }
.value-icon svg { width: 28px; height: 28px; stroke: var(--teal); }
.value-card h4 { color: var(--navy); margin-bottom: 8px; }
.value-card p  { color: var(--text-muted); font-size: 0.87rem; margin: 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 80px; }
.number-card {
  background: white; border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow); border: 1px solid var(--gray-100);
}
.number-value { font-size: 2.6rem; font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.number-label { font-size: 0.85rem; color: var(--text-muted); }

.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 72px 1fr; gap: 28px; align-items: flex-start;
  padding-bottom: 36px; position: relative;
}
.process-step:not(:last-child)::after {
  content: ''; position: absolute; left: 35px; top: 52px; bottom: 0;
  width: 2px; background: linear-gradient(var(--teal), var(--gray-200));
}
.process-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
  border: 3px solid var(--teal); margin-top: 4px;
}
.process-content h4 { color: var(--navy); margin-bottom: 6px; font-size: 1rem; }
.process-content p  { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.benefit-item {
  background: white; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100); display: flex; gap: 14px;
}
.benefit-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon svg { width: 26px; height: 26px; stroke: var(--teal); }
.benefit-content h4 { color: var(--navy); font-size: 0.92rem; margin-bottom: 4px; }
.benefit-content p  { color: var(--text-muted); font-size: 0.83rem; margin: 0; }

/* ─── Spontanea banner ──────────────────────────────────────────────────────── */
.spontanea-banner {
  background: linear-gradient(135deg,var(--navy),var(--navy-light));
  border-radius: var(--radius-lg); padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-top: 64px; flex-wrap: wrap;
}
.spontanea-banner h3 { color:white; margin-bottom:8px; }
.spontanea-banner p  { color:rgba(255,255,255,.65); font-size:.9rem; max-width:500px; }

/* ─── Newsletter ─────────────────────────────────────────────────────────────── */
.newsletter-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg); padding: 48px; text-align: center; color: white;
  margin-top: 64px;
}
.newsletter-card h3 { color: white; margin-bottom: 12px; }
.newsletter-card p  { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border-radius: 50px; border: none; font-size: 0.92rem;
}
.newsletter-form input:focus { outline: 2px solid var(--teal); }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer { background: var(--navy-dark); color: white; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 60px; }
.footer-logo { height: 40px; object-fit: contain; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: var(--transition); text-decoration: none;
}
.footer-social-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.footer-social-link:hover { background: var(--teal); color: var(--navy); }
.footer-col-title {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-link:hover { color: var(--teal); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-contact-icon svg { width: 15px; height: 15px; stroke: var(--teal); }
.footer-contact-text { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.5; }
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-legal p { margin-bottom: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copyright { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-link:hover { color: var(--teal); }

/* ─── Alerts ─────────────────────────────────────────────────────────────────── */
.alert { padding:14px 18px; border-radius:10px; font-size:.88rem; margin-bottom:16px; }
.alert-success { background:rgba(91,200,200,0.12); color:var(--teal-dark); border:1px solid rgba(91,200,200,0.3); }
.alert-error   { background:rgba(239,68,68,0.08);  color:#DC2626;           border:1px solid rgba(239,68,68,0.2); }
.modal-close {
  position:absolute; top:20px; right:20px;
  background:var(--gray-100); border:none; border-radius:50%;
  width:36px; height:36px; font-size:1.1rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); transition:var(--transition);
}
.modal-close:hover { background:var(--gray-200); }
.modal { position: relative; }

/* ─── Loading / Empty ─────────────────────────────────────────────────────────── */
.loading-spinner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 64px; gap: 16px; color: var(--text-muted);
}
.spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--gray-200); border-top-color: var(--teal);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding: 80px 24px; color: var(--text-muted); }
.empty-state-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.empty-state-icon svg { width: 56px; height: 56px; stroke: var(--gray-300); }
.empty-state h3 { color: var(--navy); margin-bottom: 8px; }
.empty-state p { font-size: 0.9rem; }

/* ─── Scroll animations ──────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid         { grid-template-columns: 1fr; }
  .hero-photo-wrap   { max-width: 580px; }
  .grid-4            { grid-template-columns: repeat(2,1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .book-grid         { grid-template-columns: 1fr; }
  .numbers-grid      { grid-template-columns: repeat(2,1fr); }
  .team-photo-grid   { grid-template-columns: 1fr; }
  .team-real-photo-wrap img { height: 400px; }
  .section-photo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar            { display: none; }
  .nav               { top: 0 !important; }
  .page-hero         { padding: 140px 0 64px; }
  .section           { padding: 64px 0; }
  .features-grid,.testimonials-grid,.blog-grid { grid-template-columns: 1fr; }
  .grid-2,.grid-3,.hr-grid,.contact-grid { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .jobs-grid         { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: 1fr; }
  .blog-hero-article { grid-template-columns: 1fr; }
  .benefits-grid     { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .nav-links         {
    display: none; flex-direction: column; position: fixed;
    top: 80px; left: 0; right: 0; background: var(--navy);
    padding: 20px 24px 32px; gap: 4px;
  }
  .nav-links.open    { display: flex; }
  .nav-link          { color: rgba(255,255,255,0.85) !important; }
  .nav-burger        { display: block; }
  .hero-stats        { flex-wrap: wrap; gap: 20px; }
  .hero-photo        { height: 320px; }
  .newsletter-form   { flex-direction: column; }
  .modal             { padding: 28px 24px; }
  .spontanea-banner  { flex-direction: column; }
}
