/* ── 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; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 120px 0 64px;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content .eyebrow-badge { background: rgba(24,69,200,0.25); color: var(--sky); border-color: rgba(24,69,200,0.4); margin-bottom: 16px; }
.page-title { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; color: white; }
.page-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: rgba(255,255,255,0.65); }
.page-sub { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 520px; line-height: 1.75; margin-top: 14px; }

/* nav active */
.nav-link.active { background: rgba(24,69,200,0.1); color: var(--blue); }

/* ── 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; text-decoration: none; }
.nav-logo-img { height: 54px; width: auto; object-fit: contain; display: block; }

.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: 101; background: rgba(10,13,22,0.97); backdrop-filter: blur(24px); display: flex; flex-direction: column; justify-content: flex-start; padding: 100px 40px 48px; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mm-close {
  position: absolute; top: 18px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: white; font-size: 18px; line-height: 1;
  transition: background 0.2s; flex-shrink: 0;
}
.mm-close:hover { background: rgba(255,255,255,0.22); }
.mm-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: auto; }
.mm-link { font-size: clamp(2rem, 7vw, 3.4rem); font-weight: 700; color: white; text-decoration: none; letter-spacing: -0.03em; line-height: 1.2; 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.08s; }
.mobile-menu.open .mm-link:nth-child(2) { opacity:1; transform:none; transition-delay:0.14s; }
.mobile-menu.open .mm-link:nth-child(3) { opacity:1; transform:none; transition-delay:0.20s; }
.mobile-menu.open .mm-link:nth-child(4) { opacity:1; transform:none; transition-delay:0.26s; }
.mm-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; margin-top: 24px; }
.mm-phone { font-size: 1.2rem; 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; }

/* 12-col grid — Dry Van (01) + Flatbed (03) are primary large */
.services-grid {
  grid-template-columns: repeat(12, 1fr);
}
.srv-card:nth-child(1) { grid-column: 1 / 9; }   /* Dry Van — primary */
.srv-card:nth-child(2) { grid-column: 9 / 13; }   /* Refrigerated */
.srv-card:nth-child(3) { grid-column: 1 / 9; }   /* Flatbed — primary */
.srv-card:nth-child(4) { grid-column: 9 / 13; }   /* Expedited */
.srv-card:nth-child(5) { grid-column: 1 / 5; }    /* LTL */
.srv-card:nth-child(6) { grid-column: 5 / 9; }    /* Heavy Equipment */
.srv-card:nth-child(7) { grid-column: 9 / 13; }   /* CTA */

/* primary cards taller */
.srv-primary { min-height: 420px !important; }
/* row 3 small cards */
.srv-card:nth-child(5),
.srv-card:nth-child(6) { min-height: 280px; }

/* ── 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; }

/* ── SMS OPT-IN CHECKBOX ── */
.sms-opt-in { padding: 16px 18px; background: rgba(24,69,200,0.05); border: 1px solid rgba(24,69,200,0.15); border-radius: 14px; margin-bottom: 4px; }
.sms-opt-in-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.sms-opt-in-label input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--blue); cursor: pointer; }
.sms-opt-in-label span { font-size: 12px; color: var(--ink2); line-height: 1.7; }
.sms-opt-in-label a { color: var(--blue); text-decoration: none; }
.sms-opt-in-label a:hover { text-decoration: underline; }

.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; }
.footer-logo-img { height: 52px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer-meta { display: flex; flex-direction: column; gap: 4px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-dot { font-size: 11px; color: rgba(255,255,255,0.18); letter-spacing: 0.04em; }
.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; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 300; width: calc(100% - 48px); max-width: 780px;
  background: rgba(13,15,20,0.97); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 18px;
  padding: 18px 22px; display: flex; align-items: center; gap: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.cookie-banner.hidden {
  opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none;
}
.cookie-text { flex: 1; font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.cookie-text a { color: var(--sky); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  background: var(--blue); color: white; border: none; cursor: pointer;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 100px; transition: background 0.2s;
  white-space: nowrap;
}
.cookie-accept:hover { background: var(--blue-dark); }
.cookie-decline {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12); cursor: pointer;
  font-family: var(--font); font-size: 13px; font-weight: 500;
  padding: 9px 16px; border-radius: 100px; transition: background 0.2s;
  white-space: nowrap;
}
.cookie-decline:hover { background: rgba(255,255,255,0.14); color: white; }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; bottom: 16px; width: calc(100% - 32px); }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; justify-content: center; }
}

/* ── CTA BAND footer layout fix ── */

/* ── 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-actions { margin-bottom: 40px; }
  .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; }
  .stat-pill:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-pill:nth-child(4) { border-right: none; }
  .stat-pill:nth-child(3), .stat-pill:nth-child(4) { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .srv-card:nth-child(1) { grid-column: 1 / 3; min-height: 320px; }
  .srv-card:nth-child(2) { grid-column: 1 / 2; min-height: 260px; }
  .srv-card:nth-child(3) { grid-column: 2 / 3; min-height: 260px; }
  .srv-card:nth-child(4) { grid-column: 1 / 3; min-height: 300px; }
  .srv-card:nth-child(5) { grid-column: 1; min-height: 220px; }
  .srv-card:nth-child(6) { grid-column: 2; min-height: 220px; }
  .srv-card:nth-child(7) { grid-column: 1 / 3; min-height: 200px; }

  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .why-img { display: none; }
  .why-left { padding-bottom: 0; }
  .why-left .section-title { margin-bottom: 0; }
  .why-right { padding-top: 0; }

  .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; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }

  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

/* ── CTA BAND ── */
.cta-band { padding: 80px 0; background: var(--ink); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: white; letter-spacing: -0.03em; margin-bottom: 8px; }
.cta-band-sub { font-size: 14px; color: rgba(255,255,255,0.5); }
.cta-band-btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.7);
  font-family: var(--font); font-size: 14px; font-weight: 600; padding: 12px 22px;
  border-radius: 100px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.08); color: white; }

/* ── SERVICES DETAIL PAGE ── */
.section-srv-detail { padding: 80px 0 100px; }
.srv-detail-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.srv-detail-card:last-child { border-bottom: none; }
.srv-detail-card.reverse .srv-detail-img { order: 2; }
.srv-detail-card.reverse .srv-detail-body { order: 1; }
.srv-detail-img img { width: 100%; border-radius: 20px; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 24px 72px rgba(0,0,0,0.12); }
.srv-detail-body { display: flex; flex-direction: column; gap: 16px; }
.srv-detail-body .btn-primary { align-self: flex-start; }
.srv-detail-body .srv-num { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 0.1em; }
.srv-detail-body h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--ink); }
.srv-detail-body p { font-size: 15px; color: var(--ink2); line-height: 1.8; }
.srv-detail-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 8px 0; }
.spec-item { padding: 14px 16px; background: white; border-radius: 14px; border: 1px solid var(--border); }
.spec-label { font-size: 10px; font-weight: 700; color: var(--ink2); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 4px; }
.spec-val { font-size: 14px; font-weight: 700; color: var(--ink); }

/* ── CAREERS WHY ── */
.careers-why { padding: 100px 0; }
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.perk-card {
  padding: 28px; border-radius: 20px; background: white;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.perk-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.1); }
.perk-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.perk-icon.blue { background: rgba(24,69,200,0.1); color: var(--blue); }
.perk-icon.green { background: rgba(22,163,74,0.1); color: var(--green); }
.perk-icon.orange { background: rgba(249,115,22,0.1); color: var(--accent); }
.perk-card h3 { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.perk-card p { font-size: 13px; color: var(--ink2); line-height: 1.7; }

/* ── ABOUT PAGE ── */
.about-story { padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.story-left { display: flex; flex-direction: column; gap: 0; }
.story-left .section-title { margin-bottom: 20px; }
.story-left p { font-size: 15px; color: var(--ink2); line-height: 1.8; }
.story-img-wrap img { width: 100%; border-radius: 20px; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 24px 72px rgba(0,0,0,0.12); margin-bottom: 14px; }
.story-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.story-stat { padding: 20px 22px; background: white; border-radius: 16px; border: 1px solid var(--border); }
.story-stat-n { display: block; font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.story-stat-l { display: block; font-size: 11px; font-weight: 600; color: var(--ink2); text-transform: uppercase; letter-spacing: 0.08em; }

.about-values { padding: 0 0 100px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.value-card {
  padding: 28px; border-radius: 20px; background: white;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.1); }
.value-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(24,69,200,0.1); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-card h3 { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--ink2); line-height: 1.7; }

/* ── CONTACT PAGE ── */
.section-contact-hero { padding: 80px 0 100px; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-info-blocks { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.contact-block {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 24px; border-radius: 18px;
  background: white; border: 1px solid var(--border);
  text-decoration: none; transition: all 0.3s var(--ease);
}
.contact-block:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: rgba(24,69,200,0.25); }
.cb-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(24,69,200,0.1); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cb-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--ink2); text-transform: uppercase; display: block; margin-bottom: 4px; }
.cb-val { font-size: 15px; font-weight: 700; color: var(--ink); }
.cb-val.small { font-size: 13px; line-height: 1.6; font-weight: 500; }

@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; }
  /* stats: 2 per row on mobile */
  .hero-stats { flex-wrap: wrap; }
  .stat-pill { flex: 1 1 50% !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; }
  .stat-pill:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1) !important; }
  .stat-pill:nth-child(even) { border-right: none !important; }
  .stat-pill:nth-child(3), .stat-pill:nth-child(4) { border-bottom: none !important; }

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

  .section-services, .section-why, .section-careers, .section-apply, .section-contact, .careers-why, .about-story, .about-values, .section-srv-detail, .section-contact-hero, .cta-band { padding: 60px 0; }

  /* services on mobile single column — reset ALL explicit placements */
  .services-grid { grid-template-columns: 1fr !important; display: flex !important; flex-direction: column !important; gap: 14px !important; }
  .srv-card { min-height: 280px !important; width: 100% !important; }

  /* perks + values */
  .perks-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* story stats */
  .story-stats-grid { grid-template-columns: 1fr 1fr; }

  /* srv detail specs */
  .srv-detail-specs { grid-template-columns: 1fr 1fr; }

  /* contact page */
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }

  /* page hero headings smaller on mobile */
  .page-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* CTA band mobile */
  .cta-band-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cta-band-btns { flex-direction: column; }
  .cta-band-btns .btn-primary, .cta-band-btns .btn-ghost-dark { width: 100%; justify-content: center; }

  /* footer centered on mobile */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { display: none; }

  /* form */
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }

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

/* ── NEW PAGES RESPONSIVE (must come after component base styles) ── */
@media (max-width: 960px) {
  /* services detail */
  .srv-detail-card { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .srv-detail-card.reverse .srv-detail-img { order: 0; }
  .srv-detail-card.reverse .srv-detail-body { order: 0; }
  /* about */
  .story-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr !important; }
  /* careers */
  .perks-grid { grid-template-columns: 1fr 1fr !important; }
  /* contact */
  .contact-page-grid { grid-template-columns: 1fr !important; gap: 48px; }
}

@media (max-width: 600px) {
  /* about */
  .story-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .values-grid { grid-template-columns: 1fr !important; }
  /* careers */
  .perks-grid { grid-template-columns: 1fr !important; }
  /* contact */
  .contact-page-grid { grid-template-columns: 1fr !important; gap: 32px; }
  /* srv detail */
  .srv-detail-card { grid-template-columns: 1fr !important; gap: 24px; padding: 40px 0; }
  .srv-detail-specs { grid-template-columns: 1fr 1fr !important; }
}
