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

:root {
  --bg: #F0EEE9;
  --ink: #0D0F14;
  --ink2: #3A3D47;
  --blue: #1845C8;
  --blue-dark: #122FA0;
  --sky: #0EA5E9;
  --accent: #F97316;
  --green: #16a34a;
  --card-bg: #FFFFFF;
  --border: rgba(13,15,20,0.09);
  --font: 'Plus Jakarta Sans', sans-serif;
  --serif: 'Instrument Serif', serif;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

.noise-overlay {
  position: fixed; inset: 0; z-index: 200; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022; mix-blend-mode: multiply;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 32px;
  background: rgba(240,238,233,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s var(--ease), background 0.4s;
}
.nav.scrolled { padding: 10px 32px; background: rgba(240,238,233,0.96); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.logo-text { font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.logo-accent { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--ink2); text-decoration: none; padding: 7px 14px; border-radius: 100px; transition: all 0.25s var(--ease); }
.nav-link:hover { background: rgba(13,15,20,0.07); color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 8px; background: var(--blue); color: white; text-decoration: none; font-size: 14px; font-weight: 600; padding: 9px 18px; border-radius: 100px; transition: all 0.3s var(--ease); letter-spacing: -0.01em; }
.nav-cta:hover { background: var(--blue-dark); transform: scale(1.02); }
.nav-cta-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 12px; transition: transform 0.3s var(--ease); }
.nav-cta:hover .nav-cta-icon { transform: translate(2px,-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.ham-line { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.4s var(--ease); transform-origin: center; }
.hamburger.open .line1 { transform: translateY(7px) rotate(45deg); }
.hamburger.open .line2 { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu { position: fixed; inset: 0; z-index: 99; background: rgba(10,13,22,0.97); backdrop-filter: blur(24px); display: flex; flex-direction: column; justify-content: center; padding: 80px 40px 40px; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mm-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: auto; }
.mm-link { font-size: clamp(2.4rem, 8vw, 4rem); font-weight: 700; color: white; text-decoration: none; letter-spacing: -0.03em; line-height: 1.15; opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.2s; }
.mm-link:hover { color: var(--sky); }
.mobile-menu.open .mm-link:nth-child(1) { opacity:1; transform:none; transition-delay:0.1s; }
.mobile-menu.open .mm-link:nth-child(2) { opacity:1; transform:none; transition-delay:0.17s; }
.mobile-menu.open .mm-link:nth-child(3) { opacity:1; transform:none; transition-delay:0.24s; }
.mm-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; }
.mm-phone { font-size: 1.3rem; font-weight: 700; color: var(--sky); text-decoration: none; display: block; margin-bottom: 8px; }
.mm-addr { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* ── HERO — contained card ── */
.hero-wrap { padding: 88px 24px 0; }

.hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 78vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: 0 40px 100px rgba(0,0,0,0.18);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(8,16,42,0.55) 0%, rgba(5,10,30,0.85) 100%); }

.hero-logo-badge {
  position: absolute; top: 28px; left: 32px; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 14px 7px 8px; border-radius: 100px;
  font-size: 13px; font-weight: 700; color: white;
}

.hero-content { position: relative; z-index: 2; padding: 0 48px 36px; max-width: 760px; }

.eyebrow-badge {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px);
}
.eyebrow-badge.dark { background: rgba(24,69,200,0.1); color: var(--blue); border-color: rgba(24,69,200,0.2); }
.eyebrow-badge.light { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); }
.eyebrow-badge.contact-badge { background: rgba(14,165,233,0.15); color: var(--sky); border-color: rgba(14,165,233,0.25); }

.hero-eyebrow { margin-bottom: 20px; }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.04em;
  color: white; margin-bottom: 18px;
}
.title-line { display: block; }
.title-line.italic { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: -0.02em; }

.hero-sub { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 480px; line-height: 1.75; margin-bottom: 32px; }

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: white; font-family: var(--font);
  font-size: 14px; font-weight: 600; padding: 12px 22px;
  border-radius: 100px; text-decoration: none; border: none; cursor: pointer;
  letter-spacing: -0.01em; transition: all 0.3s var(--ease);
}
.btn-primary:hover { background: var(--blue-dark); transform: scale(1.02); }
.btn-primary.light { background: white; color: var(--ink); }
.btn-primary.light:hover { background: #f2f0eb; }

.btn-icon {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  transition: transform 0.3s var(--ease); flex-shrink: 0;
}
.btn-icon.dark-icon { background: rgba(0,0,0,0.1); }
.btn-primary:hover .btn-icon { transform: translate(2px,-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.13); color: white;
  font-size: 14px; font-weight: 600; padding: 12px 22px;
  border-radius: 100px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: scale(1.02); }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  font-size: 14px; font-weight: 600; padding: 12px 24px;
  border-radius: 100px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease); white-space: nowrap; flex-shrink: 0;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); color: white; }

/* hero stats bar */
.hero-stats {
  position: relative; z-index: 2;
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2); backdrop-filter: blur(10px);
}
.stat-pill { flex: 1; padding: 18px 28px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-pill:last-child { border-right: none; }
.stat-n { display: block; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1; }
.stat-l { display: block; font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; font-weight: 500; }

/* ── SHARED SECTION ── */
.section-services { padding: 100px 0 80px; }
.section-intro { text-align: center; margin-bottom: 56px; }
.section-intro .eyebrow-badge { margin-bottom: 16px; }

.section-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin: 12px 0 16px; color: var(--ink); }
.section-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.section-title.light { color: white; }
.section-title.light em { color: rgba(255,255,255,0.65); }
.section-sub { font-size: 15px; color: var(--ink2); line-height: 1.75; max-width: 500px; margin: 0 auto; }
.section-sub.light { color: rgba(255,255,255,0.55); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
}

/* image cards */
.srv-card { border-radius: 20px; overflow: hidden; background: var(--card-bg); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.srv-card:hover { transform: translateY(-5px); box-shadow: 0 24px 64px rgba(0,0,0,0.13); }

.srv-img-card { position: relative; min-height: 300px; }
.srv-img-wrap { position: absolute; inset: 0; }
.srv-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.srv-card:hover .srv-img { transform: scale(1.05); }
.srv-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,10,30,0.88) 30%, rgba(5,10,30,0.1) 100%); }
.srv-img-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 24px; }
.srv-num { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); display: block; margin-bottom: 6px; }
.srv-img-content h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; color: white; margin-bottom: 8px; }
.srv-img-content p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 14px; }
.srv-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.srv-tags span { font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 100px; background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.8); }

/* icon cards — row 2, 3 columns */
.srv-icon-card {
  padding: 28px; display: flex; flex-direction: column;
  border: 1px solid var(--border); box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  min-height: 220px;
}
.srv-icon-card .srv-num { color: var(--blue); margin-bottom: 10px; }
.srv-icon-card h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; margin-top: 4px; }
.srv-icon-card p { font-size: 13px; color: var(--ink2); line-height: 1.65; }

.srv-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.srv-icon.blue { background: rgba(24,69,200,0.1); color: var(--blue); }
.srv-icon.orange { background: rgba(249,115,22,0.1); color: var(--accent); }
.srv-icon.green { background: rgba(22,163,74,0.1); color: var(--green); }

/* row 2: 3 icon cards */
.srv-icon-card { grid-column: span 1; }
.services-grid > .srv-icon-card:nth-child(3) { grid-column: span 1; }
.services-grid > .srv-icon-card:nth-child(4) { grid-column: span 1; }
.services-grid > .srv-icon-card:nth-child(5) { grid-column: span 1; }

/* force row 2 to be 3-column by wrapping them */
/* Use explicit placement */
.srv-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.srv-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.srv-icon-row { display: contents; }

/* wide image card row 3 */
.srv-wide { grid-column: span 1; min-height: 260px; }
.srv-cta {
  padding: 36px 28px; display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(140deg, #1845C8 0%, #0c2fa0 100%);
  border: none; min-height: 260px;
}
.srv-cta-label { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; }
.srv-cta-title { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.03em; color: white; line-height: 1.15; }

/* 3-col row for icon cards */
.services-grid {
  grid-template-columns: repeat(6, 1fr);
}
.srv-card:nth-child(1) { grid-column: 1 / 4; }
.srv-card:nth-child(2) { grid-column: 4 / 7; }
.srv-card:nth-child(3) { grid-column: 1 / 3; }
.srv-card:nth-child(4) { grid-column: 3 / 5; }
.srv-card:nth-child(5) { grid-column: 5 / 7; }
.srv-card:nth-child(6) { grid-column: 1 / 4; }
.srv-card:nth-child(7) { grid-column: 4 / 7; }

/* ── WHY US ── */
.section-why { padding: 0 0 100px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.why-left .section-title { margin-bottom: 28px; }
.why-img { width: 100%; border-radius: 20px; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 24px 72px rgba(0,0,0,0.12); }
.why-right { padding-top: 16px; }
.why-item { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.why-item:first-child { border-top: 1px solid var(--border); }
.why-num { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 0.05em; flex-shrink: 0; padding-top: 3px; }
.why-body h4 { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 7px; }
.why-body p { font-size: 14px; color: var(--ink2); line-height: 1.75; }

/* ── CAREERS ── */
.section-careers { padding: 100px 0; position: relative; overflow: hidden; }
.careers-bg { position: absolute; inset: 0; z-index: 0; }
.careers-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.careers-bg-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(5,12,35,0.93) 0%, rgba(8,18,50,0.97) 100%); }
.careers-header { position: relative; z-index: 1; text-align: center; margin-bottom: 56px; }
.careers-header .section-sub { margin: 0 auto; }

/* 2-column jobs */
.jobs-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }

.job-card { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); transition: transform 0.5s var(--ease), border-color 0.3s; }
.job-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.job-card.featured-job { border-color: rgba(24,69,200,0.45); }
.job-card-inner { background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); padding: 36px; height: 100%; display: flex; flex-direction: column; }
.job-card.featured-job .job-card-inner { background: rgba(24,69,200,0.14); }

.job-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.job-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; }
.job-badge.active { color: #4ade80; }
.job-badge.partner { color: #60a5fa; }
.job-id { font-size: 11px; color: rgba(255,255,255,0.28); font-weight: 600; }

.job-title { font-size: 1.8rem; font-weight: 800; color: white; letter-spacing: -0.03em; margin-bottom: 6px; }
.job-subtitle { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 20px; font-weight: 500; }

.job-reqs { list-style: none; margin-bottom: 20px; }
.job-reqs li { font-size: 13px; color: rgba(255,255,255,0.6); padding: 5px 0 5px 16px; position: relative; }
.job-reqs li::before { content: '→'; position: absolute; left: 0; color: var(--sky); font-size: 11px; top: 6px; }

.job-pay { font-size: 2.2rem; font-weight: 800; color: white; letter-spacing: -0.04em; margin-bottom: 18px; line-height: 1; }
.job-pay span { font-size: 1rem; color: rgba(255,255,255,0.45); font-weight: 500; }

.job-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; margin-top: auto; }
.perk-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,0.55); }
.perk-item svg { color: #4ade80; flex-shrink: 0; }

.btn-job { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--ink); font-size: 14px; font-weight: 700; padding: 12px 22px; border-radius: 100px; text-decoration: none; transition: all 0.3s var(--ease); align-self: flex-start; letter-spacing: -0.01em; }
.btn-job:hover { background: var(--blue); color: white; transform: scale(1.03); }
.btn-job span { font-size: 13px; }
.btn-job.featured-btn { background: var(--blue); color: white; }
.btn-job.featured-btn:hover { background: white; color: var(--ink); }

/* hiring strip */
.hiring-strip {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 36px; border-radius: 16px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  margin-top: 14px;
}
.hs-label { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; }
.hs-sub { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ── APPLY ── */
.section-apply { padding: 100px 0; }
.apply-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.apply-left .section-title { margin-bottom: 16px; }
.apply-phone { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; font-size: 15px; font-weight: 700; color: var(--blue); text-decoration: none; transition: color 0.2s; }
.apply-phone:hover { color: var(--blue-dark); }

.apply-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--ink2); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 15px; background: white; border: 1.5px solid var(--border);
  border-radius: 12px; font-family: var(--font); font-size: 14px; color: var(--ink);
  outline: none; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(24,69,200,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #b0b4be; }
.form-group textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233A3D47' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.btn-submit { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; background: var(--ink); color: white; font-family: var(--font); font-size: 14px; font-weight: 700; padding: 13px 24px; border-radius: 100px; border: none; cursor: pointer; letter-spacing: -0.01em; transition: all 0.3s var(--ease); }
.btn-submit:hover { background: var(--blue); transform: scale(1.02); }
.btn-submit .btn-icon { background: rgba(255,255,255,0.15); }
.form-note { font-size: 12px; color: var(--ink2); opacity: 0.55; }

/* ── CONTACT ── */
.section-contact { padding: 100px 0; background: #0B0D15; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-left .section-title { color: white; margin-bottom: 14px; }
.contact-left .section-sub { color: rgba(255,255,255,0.5); margin: 0; }
.contact-cards { display: flex; flex-direction: column; gap: 10px; }
.contact-card { display: flex; flex-direction: column; gap: 5px; padding: 24px 28px; border-radius: 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); text-decoration: none; transition: all 0.35s var(--ease); }
.contact-card:hover { background: rgba(255,255,255,0.09); transform: translateX(5px); }
.cc-icon { color: var(--sky); margin-bottom: 3px; }
.cc-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.cc-val { font-size: 1.1rem; font-weight: 700; color: white; letter-spacing: -0.01em; }
.cc-val.small { font-size: 14px; line-height: 1.6; }

/* ── FOOTER ── */
.footer { background: #07090F; border-top: 1px solid rgba(255,255,255,0.06); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; color: white; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .container { padding: 0 20px; }
  .nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-wrap { padding: 76px 16px 0; }
  .hero { border-radius: 20px; min-height: 70vh; }
  .hero-content { padding: 0 28px 28px; }
  .hero-title { font-size: clamp(2rem, 6vw, 3.5rem); }

  .hero-stats { flex-wrap: wrap; }
  .stat-pill { flex: 1 1 40%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-pill:nth-child(2) { border-right: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .srv-card:nth-child(1) { grid-column: 1; }
  .srv-card:nth-child(2) { grid-column: 2; }
  .srv-card:nth-child(3) { grid-column: 1; }
  .srv-card:nth-child(4) { grid-column: 2; }
  .srv-card:nth-child(5) { grid-column: 1; }
  .srv-card:nth-child(6) { grid-column: 2; }
  .srv-card:nth-child(7) { grid-column: 1 / 3; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-img { display: none; }

  .jobs-grid { grid-template-columns: 1fr; }
  .hiring-strip { flex-direction: column; align-items: flex-start; gap: 16px; }

  .apply-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 600px) {
  .hero-wrap { padding: 72px 12px 0; }
  .hero { border-radius: 16px; min-height: 85vh; }
  .hero-logo-badge { top: 20px; left: 20px; font-size: 12px; }
  .hero-content { padding: 0 20px 0; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; }
  .stat-pill { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-pill:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .srv-card:nth-child(n) { grid-column: 1; }

  .section-services, .section-why, .section-careers, .section-apply, .section-contact { padding: 72px 0; }
  .section-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }

  .job-perks { grid-template-columns: 1fr; }
  .footer-links { display: none; }
}
