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

/* ─── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --red:       #c31038;
  --red-dark:  #9b0c2c;
  --red-light: #f9e5ea;
  --navy:      #0f1b2d;
  --navy-mid:  #1a2f50;
  --gray-bg:   #f4f6f9;
  --white:     #ffffff;
  --gold:      #e8a020;
  --border:    #e2e8f0;
  --text-muted:#6b7280;
  --text-body: #374151;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.09);
  --shadow-lg: 0 10px 36px rgba(0,0,0,.13);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  max-width: 100%;
  padding-top: 80px;
  font-family: 'Inter', sans-serif;
  background: var(--gray-bg);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
img { max-width: 100%; }

/* ─── HEADER ─────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  border-bottom-color: var(--border);
  background: rgba(255,255,255,0.99);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 80px;
  gap: 1rem;
}
.logo { flex-shrink: 0; margin-right: auto; }
.logo img { height: 68px; width: auto; display: block; max-width: 240px; }

.nav-desktop { display: flex; gap: 0.2rem; align-items: center; }
.nav-desktop a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.72rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-desktop a:hover { color: var(--red); background: var(--red-light); }

/* ─── CTA BUTTON ─────────────────────────────────────────────── */
.btn-cta {
  background: linear-gradient(135deg, var(--red) 0%, #a80e30 100%);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(195,16,56,.30);
  letter-spacing: 0.01em;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195,16,56,.40);
  background: linear-gradient(135deg, #d91040 0%, var(--red) 100%);
  color: #fff !important;
}
.btn-cta:active { transform: translateY(0); }

/* ─── HAMBURGER ──────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--gray-bg); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

/* ─── SIDE DRAWER ────────────────────────────────────────────── */
#side-drawer {
  position: fixed;
  top: 0; right: -340px;
  width: 300px;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 2000;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
}
#side-drawer.open { right: 0; }
#drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,27,45,.5);
  backdrop-filter: blur(2px);
  z-index: 1999;
}
#drawer-overlay.show { display: block; }
.drawer-close {
  align-self: flex-end;
  background: var(--gray-bg);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--navy);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.drawer-close:hover { background: var(--red-light); color: var(--red); }
.drawer-nav { display: flex; flex-direction: column; gap: 0.15rem; margin-top: 0.5rem; }
.drawer-nav a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.drawer-nav a:hover { color: var(--red); background: var(--red-light); }
.drawer-nav a i { width: 18px; text-align: center; color: var(--red); font-size: 0.875rem; flex-shrink: 0; }
.drawer-cta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* ─── DRAWER HEADER ──────────────────────────────────────────── */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.drawer-logo { height: 48px; width: auto; max-width: 180px; }

/* ─── DRAWER LANG ────────────────────────────────────────────── */
.drawer-lang-section { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.drawer-lang-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.drawer-lang-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.4rem; }
.drawer-lang-btn {
  background: var(--gray-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-height: 44px;
  justify-content: center;
}
.drawer-lang-btn span { font-size: 0.58rem; font-weight: 400; color: #888; display: none; }
.drawer-lang-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }
.drawer-lang-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.drawer-lang-btn.active span { color: rgba(255,255,255,.75); }

/* ─── LANG SELECT (header native select) ────────────────────── */
.lang-select-header {
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.42rem 2.2rem 0.42rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c31038' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-width: 145px;
  white-space: nowrap;
  min-height: 40px;
}
.lang-select-header:hover,
.lang-select-header:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(195,16,56,.12);
}

/* ─── LANG SELECTOR (dropdown) ──────────────────────────────── */
.lang-selector { position: relative; display: flex; align-items: center; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), background var(--transition);
  white-space: nowrap;
  user-select: none;
}
.lang-current:hover { border-color: var(--red); background: var(--red-light); }
.lang-current i.fa-globe { color: var(--red); font-size: 0.9rem; }
.lang-chevron { font-size: 0.65rem; opacity: 0.6; transition: transform 0.25s; }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem;
  min-width: 110px;
  z-index: 9999;
}
.lang-dropdown.open { display: block; }
.lang-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.45rem 0.75rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.lang-btn:hover { background: var(--gray-bg); color: var(--red); }
.lang-btn.active { background: var(--red); color: #fff; }
.lang-flag { font-size: 1.1rem; line-height: 1; }
.lang-current .lang-flag { font-size: 1.2rem; }
.flag-big { font-size: 1.4rem; display: block; margin-bottom: 0.1rem; }
.lang-code { font-size: 0.7rem; font-weight: 700; }

/* ─── ACTIVE NAV ─────────────────────────────────────────────── */
.nav-active { color: var(--red) !important; background: var(--red-light) !important; }
.drawer-nav a.nav-active { color: var(--red) !important; background: var(--red-light) !important; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1523 0%, var(--navy-mid) 50%, #1f1040 100%);
  color: #fff;
  padding: 6rem 1.5rem 5.5rem;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(195,16,56,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(99,102,241,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--gray-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero > div { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  color: #fff;
}
.hero p {
  font-size: 1.05rem;
  color: rgba(200,212,232,.9);
  max-width: 600px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--red) 0%, #a00d2e 100%);
  color: #fff;
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 0.75rem 3rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.2);
}
.stat-item .num {
  font-size: 2.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-item .label { font-size: 0.82rem; opacity: 0.85; font-weight: 500; }

/* ─── SECTION ────────────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── JOB CARDS ──────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(195,16,56,.2);
}
.job-card-img { width: 100%; height: 190px; object-fit: cover; }
.job-card-body { padding: 1.4rem; flex: 1; }
.job-card-sector {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  background: var(--red-light);
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.65rem;
}
.job-card-title {
  font-size: 1.15rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.job-card-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; }
.job-card-footer {
  padding: 0.9rem 1.4rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafbfc;
}
.salary { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.apply-btn {
  background: linear-gradient(135deg, var(--red), #a80e30);
  color: #fff;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(195,16,56,.25);
}
.apply-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(195,16,56,.35); }

/* ─── COMPANIES SECTION ──────────────────────────────────────── */
.companies-section {
  background: var(--white);
  padding: 5rem 1.5rem;
}
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.25rem;
  margin-top: 2.75rem;
}
.company-card {
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  border-color: rgba(195,16,56,.25);
  background: var(--white);
}
.company-card img {
  height: 44px; width: auto;
  object-fit: contain;
  margin: 0 auto 0.9rem;
  display: block;
  filter: grayscale(25%);
  opacity: 0.85;
  transition: filter var(--transition), opacity var(--transition);
}
.company-card:hover img { filter: grayscale(0%); opacity: 1; }
.company-card h4 { font-size: 0.9rem; color: var(--navy); font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 0.3rem; }
.company-card p { font-size: 0.75rem; color: #888; line-height: 1.4; }
.company-sector-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  background: var(--red-light);
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.how-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(195,16,56,.2);
}
.how-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red), #a80e30);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(195,16,56,.30);
}
.how-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.how-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ─── BANNER CTA ─────────────────────────────────────────────── */
.banner-cta {
  background: linear-gradient(135deg, #0f1b2d 0%, #1e1040 50%, var(--red) 100%);
  color: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.banner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(195,16,56,.25) 0%, transparent 70%);
  pointer-events: none;
}
.banner-cta > * { position: relative; z-index: 1; }
.banner-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}
.banner-cta p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.btn-white {
  background: var(--white);
  color: var(--red);
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-white:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 30px rgba(0,0,0,.25); }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi-card blockquote {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
  flex: 1;
  position: relative;
  padding-left: 1.1rem;
}
.testi-card blockquote::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), transparent);
  border-radius: 2px;
}
.testi-author { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.testi-info cite { font-size: 0.875rem; font-weight: 700; color: var(--navy); font-style: normal; display: block; margin-bottom: 0.15rem; }
.testi-info .country { font-size: 0.775rem; color: #888; }
.stars { color: #f59e0b; margin-bottom: 0.8rem; font-size: 0.9rem; letter-spacing: 0.05em; }

/* ─── SECTORS GRID ───────────────────────────────────────────── */
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.1rem; }
.sector-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.sector-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(195,16,56,.25); }
.sector-icon { font-size: 2rem; color: var(--red); margin-bottom: 0.75rem; }
.sector-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.sector-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* ─── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1f1040 100%);
  color: #fff;
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(195,16,56,.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.9rem);
  margin-bottom: 0.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}
.page-hero p { color: rgba(200,212,232,.9); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ─── JOB HERO ───────────────────────────────────────────────── */
.job-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  padding: 4.5rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.job-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(195,16,56,.18) 0%, transparent 60%);
  pointer-events: none;
}
.job-hero > * { position: relative; z-index: 1; }
.job-hero h1 { font-size: clamp(1.7rem, 4.5vw, 3rem); margin-bottom: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.job-hero .badges { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 1rem; }
.badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  backdrop-filter: blur(4px);
}

/* ─── JOB DETAIL GRID ────────────────────────────────────────── */
.job-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}
.job-detail-main h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 1.75rem 0 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.job-detail-main ul { padding-left: 1.3rem; color: var(--text-body); font-size: 0.95rem; line-height: 1.9; }
.job-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  align-self: start;
  position: sticky;
  top: 90px;
}
.job-sidebar h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 1.1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.job-sidebar .info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.55rem;
  gap: 0.5rem;
}
.job-sidebar .info-label { color: #888; flex-shrink: 0; }
.job-sidebar .info-val { font-weight: 600; color: var(--navy); text-align: right; }
.apply-box { margin-top: 1.5rem; }
.apply-box a {
  display: block;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--red), #a80e30);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(195,16,56,.30);
}
.apply-box a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(195,16,56,.40); }
.apply-box small { display: block; text-align: center; color: #888; font-size: 0.775rem; margin-top: 0.6rem; }

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  font-size: 0.82rem;
  color: #aaa;
  padding: 0.85rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--red); text-decoration: none; font-weight: 500; }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.6; }

/* ─── STEPS ──────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  position: relative;
}
.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 25px;
  top: calc(52px + 1.5rem);
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red-light), transparent);
}
.step-num {
  min-width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--red), #a80e30);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(195,16,56,.30);
}
.step-content h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.45rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.step-content p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(195,16,56,.25); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.97rem;
  min-height: 56px;
  transition: background var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.faq-q:hover { background: #fafbfc; }
.faq-q i { color: var(--red); transition: transform 0.3s; font-size: 0.85rem; flex-shrink: 0; margin-left: 1rem; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 1.4rem;
}
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 300px; padding: 0.5rem 1.4rem 1.3rem; }

/* ─── NEWS ───────────────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card img { width: 100%; height: 195px; object-fit: cover; }
.news-card-body { padding: 1.3rem; }
.news-date { font-size: 0.75rem; color: var(--red); font-weight: 700; margin-bottom: 0.45rem; text-transform: uppercase; letter-spacing: 0.05em; }
.news-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.news-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ─── CONTACT FORM ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 960px; margin: 0 auto; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.15rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.925rem;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  min-height: 48px;
  color: var(--text-body);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(195,16,56,.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit {
  background: linear-gradient(135deg, var(--red), #a80e30);
  color: #fff;
  border: none;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: 'Inter', sans-serif;
  min-height: 52px;
  box-shadow: 0 4px 16px rgba(195,16,56,.30);
  letter-spacing: 0.01em;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(195,16,56,.40); }
.contact-info h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.contact-info p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1rem; }
.contact-detail i { color: var(--red); font-size: 1.1rem; margin-top: 2px; }
.contact-detail span { font-size: 0.92rem; color: var(--text-body); line-height: 1.5; }

/* ─── PHONE GROUP ────────────────────────────────────────────── */
.phone-group { display: flex; gap: 0.5rem; align-items: stretch; }
.country-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  font-size: 0.925rem;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition);
  min-width: 110px;
}
.country-select:focus { outline: none; border-color: var(--red); }
.phone-group input[type="tel"] { flex: 1; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--navy);
  color: #8a94a8;
  padding: 4rem 1.5rem 1.75rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 80px !important;
  filter: none !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  margin-bottom: 1rem;
  width: auto;
  object-fit: contain;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: #7a85a0; }
.footer-nav h4, .footer-cta-block h4 {
  color: #fff;
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav a {
  color: #7a85a0;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-nav a:hover { color: #fff; padding-left: 4px; }
.footer-cta-block p { font-size: 0.875rem; color: #7a85a0; line-height: 1.7; margin-bottom: 1.1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 2rem;
  padding-top: 1.4rem;
  text-align: center;
  font-size: 0.8rem;
  color: #4a5568;
}
.footer-bottom a { color: #4a5568; text-decoration: none; transition: color var(--transition); }
.footer-bottom a:hover { color: #7a85a0; }

/* ─── FOOTER SOCIAL ──────────────────────────────────────────── */
.footer-social { display: flex; gap: 0.65rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #7a85a0;
  font-size: 0.875rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ─── FOOTER SPONSORS ────────────────────────────────────────── */
.footer-sponsors {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 2.25rem 1.5rem;
}
.sponsors-inner { max-width: 1300px; margin: 0 auto; }
.sponsors-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9aa3b2;
  margin-bottom: 1.35rem;
}
.sponsors-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.sponsors-logos img {
  height: 36px; max-width: 130px; width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.8;
  transition: opacity var(--transition), filter var(--transition);
}
.sponsors-logos img:hover { opacity: 1; filter: none; }

/* ─── FOOTER INSTITUTIONAL ───────────────────────────────────── */
.footer-institutional {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.75rem 1.5rem;
}
.institutional-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1.5rem 2.5rem;
  align-items: center;
  justify-content: center;
}
.institutional-inner img {
  height: 50px; max-width: 200px; width: 100%;
  object-fit: contain;
  opacity: 1;
  transition: opacity var(--transition);
}

/* ─── EMPRESA HERO ───────────────────────────────────────────── */
.empresa-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.empresa-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(195,16,56,.18) 0%, transparent 60%);
  pointer-events: none;
}
.empresa-hero > * { position: relative; z-index: 1; }
.empresa-logo-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.empresa-logo-wrap img { height: 60px; max-width: 220px; object-fit: contain; }
.empresa-hero h1 { font-size: clamp(1.6rem, 4.5vw, 2.7rem); margin-bottom: 0.65rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.empresa-hero p { color: rgba(200,212,232,.9); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.empresa-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.empresa-info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.empresa-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}
.info-icon {
  width: 40px; height: 40px;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}
.info-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: #9aa3b2; margin-bottom: 0.2rem; }
.info-value { font-size: 0.875rem; color: var(--navy); font-weight: 600; line-height: 1.4; }
.empresa-desc { font-size: 0.97rem; color: var(--text-body); line-height: 1.8; margin-bottom: 2.5rem; }
.req-box {
  background: #fff8f0;
  border: 1.5px solid #fde5c0;
  border-radius: var(--radius-md);
  padding: 1.15rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: #7a5320;
  line-height: 1.6;
}
.req-box strong { color: #b45309; display: block; margin-bottom: 0.35rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
.cta-banda {
  background: linear-gradient(135deg, var(--navy) 0%, #1f1040 50%, var(--red) 100%);
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banda::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(195,16,56,.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banda > * { position: relative; z-index: 1; }
.cta-banda h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 0.75rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.cta-banda p { opacity: 0.9; max-width: 500px; margin: 0 auto 1.75rem; line-height: 1.7; }

/* ─── PROCESO LOGOS GRID ─────────────────────────────────────── */
.proceso-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.proceso-logo-item {
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}
.proceso-logo-item:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.proceso-logo-item img { height: 40px; max-width: 130px; object-fit: contain; width: auto; }

/* ─── VALUE CARDS ────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.4rem; margin-top: 2rem; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 1.9rem; color: var(--red); margin-bottom: 0.9rem; }
.value-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 0.5rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.about-hero-img { width: 100%; border-radius: var(--radius-lg); max-height: 380px; object-fit: cover; margin-bottom: 2rem; }

/* ─── HERO BUTTONS ───────────────────────────────────────────── */
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 0.5rem; }
.hero-btn-primary { font-size: 1.05rem; padding: 0.95rem 2.5rem; min-width: 190px; }
.hero-btn-secondary {
  font-size: 1.05rem;
  padding: 0.95rem 2.5rem;
  min-width: 190px;
  background: transparent !important;
  border: 2px solid rgba(255,255,255,.4) !important;
  box-shadow: none !important;
  color: #fff !important;
  backdrop-filter: blur(4px);
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.7) !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-desktop { gap: 0.1rem; }
  .nav-desktop a { font-size: 0.82rem; padding: 0.4rem 0.55rem; }
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .job-detail-grid { grid-template-columns: 1fr; }
  .job-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .companies-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 0.75rem 2rem; }
}

@media (max-width: 768px) {
  body { padding-top: 64px; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 1rem; height: 64px; gap: 0.5rem; }
  .logo { flex-shrink: 1; min-width: 0; margin-right: 0; }
  .logo img { height: 48px; max-width: 160px; }
  .lang-selector { display: none; }
  .btn-cta { display: none; }
  .lang-select-header { min-width: 60px; width: 60px; font-size: 0; padding: 0.4rem 1.6rem 0.4rem 0.45rem; background-position: right 0.38rem center; }
  .hero { padding: 4rem 1.25rem 4rem; }
  .hero h1 { font-size: clamp(1.85rem, 6.5vw, 2.6rem); }
  .section { padding: 3.5rem 1.25rem; }
  .stats-bar { gap: 0; padding: 1.75rem 0.5rem; flex-wrap: wrap; }
  .stat-item { padding: 0.75rem 1.5rem; }
  .stat-item .num { font-size: 1.9rem; }
  .stat-item:not(:last-child)::after { display: none; }
  .sectors-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.9rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 3.5rem 1.25rem 3rem; }
  .job-hero { padding: 3.5rem 1.25rem 3rem; }
  .job-detail-grid { padding: 0 1.25rem; margin-top: 1.5rem; }
  .companies-section { padding: 3rem 1.25rem; }
  .banner-cta { padding: 3.5rem 1.25rem; }
  .hero::after { height: 40px; }
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.25rem; }
  .stats-bar { justify-content: center; }
  .stat-item { width: 48%; }
  .companies-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand img { height: 60px !important; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .hero p { font-size: 0.97rem; }
  .section-sub { font-size: 0.93rem; }
  .institutional-inner { flex-wrap: wrap; gap: 1rem 1.5rem; padding: 0 0.5rem; }
  .institutional-inner img { height: 32px; max-width: 130px; }
  .sponsors-logos img { height: 28px; max-width: 90px; }
  .sponsors-logos { gap: 1rem 1.5rem; }
  .empresa-hero { padding: 3rem 1.25rem 2.5rem; }
  .empresa-logo-wrap { padding: 0.9rem 1.75rem; }
  .empresa-logo-wrap img { height: 48px; }
  .cta-banda { padding: 3rem 1.25rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; max-width: 320px; text-align: center; }
}

@media (max-width: 400px) {
  .companies-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { width: 100%; }
}
