/* ============================================================
   Pinnacle Hiring – Main Stylesheet
   Theme: Navy Blue (#0a1f44), White (#ffffff), Gold (#c9a84c)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- CSS Variables ---------- */
:root {
  --navy:    #0a1f44;
  --navy-mid:#122a5e;
  --navy-lt: #1a3a6e;
  --gold:    #c9a84c;
  --gold-lt: #e8c96a;
  --white:   #ffffff;
  --off-white: #f4f6fb;
  --text:    #1a1a2e;
  --muted:   #5a6480;
  --border:  #dde3f0;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(10,31,68,0.10);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Segoe UI', Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; margin-bottom: 0.5rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
p  { margin-bottom: 1rem; color: #333; }

/* ---------- Utility ---------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  font-size: 2.1rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  text-decoration: none;
}

/* ---------- Cookie Banner ---------- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 9999;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
}
#cookie-banner p { color: var(--white); margin: 0; font-size: 0.9rem; }
#cookie-banner a { color: var(--gold); text-decoration: underline; }
#cookie-accept {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 9px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  white-space: nowrap;
}
#cookie-accept:hover { background: var(--gold-lt); }

/* ---------- Navigation ---------- */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem; color: var(--navy);
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.logo-text span { display: block; font-size: 0.65rem; font-weight: 400; color: #a0b0cc; letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: #c8d4e8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); text-decoration: none; }
.nav-links .btn { margin-left: 8px; padding: 9px 22px; font-size: 0.85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e4a8a 100%);
  color: var(--white);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-label {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { color: #b8c8e0; font-size: 1.1rem; margin-bottom: 32px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.stat-card .num { font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.stat-card .lbl { font-size: 0.8rem; color: #a0b8d8; margin: 0; }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s;
}
.hero-card:hover { transform: translateX(6px); }
.hero-card-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.hero-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 2px; }
.hero-card p  { color: #9ab0cc; font-size: 0.82rem; margin: 0; }

/* ---------- Trusted By ---------- */
.trusted {
  background: var(--navy);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trusted-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trusted-label { color: #7a90b0; font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.trusted-logos { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; justify-content: center; }
.trusted-logos span {
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- Services Section ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p  { color: var(--muted); font-size: 0.93rem; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: var(--off-white);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ---------- Why Pinnacle ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content h2 { font-size: 2.1rem; margin-bottom: 16px; }
.why-content p  { color: var(--muted); }
.why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.why-item h4 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.why-item p  { color: var(--muted); font-size: 0.9rem; margin: 0; }
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.metric-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
}
.metric-card:nth-child(2) { background: var(--gold); }
.metric-card:nth-child(2) .metric-num { color: var(--navy); }
.metric-card:nth-child(2) .metric-lbl { color: var(--navy-mid); }
.metric-card:nth-child(3) { background: linear-gradient(135deg, var(--navy-lt), var(--navy-mid)); }
.metric-card:nth-child(4) { background: var(--off-white); }
.metric-card:nth-child(4) .metric-num { color: var(--navy); }
.metric-card:nth-child(4) .metric-lbl { color: var(--muted); }
.metric-num { font-size: 2.4rem; font-weight: 800; color: var(--gold); }
.metric-lbl { font-size: 0.82rem; margin: 0; color: #a0b8d8; }

/* ---------- Process Section ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step::after {
  content: '→';
  position: absolute;
  top: 28px; right: -16px;
  color: var(--gold);
  font-size: 1.4rem;
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 60px; height: 60px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
}
.process-step h4 { color: var(--navy); margin-bottom: 8px; }
.process-step p  { color: var(--muted); font-size: 0.88rem; }

/* ---------- Industries ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
  transition: all 0.3s;
}
.industry-card:hover { background: var(--navy); border-color: var(--navy); }
.industry-card:hover h4, .industry-card:hover p { color: var(--white); }
.industry-icon { font-size: 2rem; margin-bottom: 12px; }
.industry-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.industry-card p  { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 14px; }
.cta-banner p  { color: #a0b8d8; font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { color: var(--muted); }
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item h4 { font-size: 0.85rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-item p  { color: var(--navy); font-weight: 500; margin: 0; font-size: 0.95rem; }

/* ---------- Contact Form ---------- */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--muted); margin-bottom: 28px; font-size: 0.93rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,31,68,0.08);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-note a { color: var(--navy); text-decoration: underline; }
#form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 16px;
  border-radius: var(--radius);
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.blog-card-img.bg1 { background: linear-gradient(135deg, #0a1f44 0%, #1e4a8a 100%); }
.blog-card-img.bg2 { background: linear-gradient(135deg, #1a3a6e 0%, #c9a84c 100%); }
.blog-card-img.bg3 { background: linear-gradient(135deg, #122a5e 0%, #0d3b6e 100%); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.blog-cat {
  background: var(--off-white);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--border);
}
.blog-date { font-size: 0.8rem; color: var(--muted); }
.blog-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card p  { color: var(--muted); font-size: 0.88rem; flex: 1; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 16px;
  text-decoration: none;
  transition: gap 0.2s;
}
.blog-read-more:hover { gap: 10px; color: var(--gold); text-decoration: none; }

/* ---------- Blog Post Page ---------- */
.blog-post-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0 60px;
  color: var(--white);
}
.blog-post-hero .blog-cat { background: rgba(201,168,76,0.15); color: var(--gold); border-color: rgba(201,168,76,0.3); }
.blog-post-hero h1 { color: var(--white); font-size: 2.4rem; margin: 16px 0; max-width: 800px; }
.blog-post-hero .blog-meta { margin-top: 0; }
.blog-post-hero .blog-date { color: #a0b8d8; }
.blog-post-content { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.blog-post-content h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.blog-post-content h3 { font-size: 1.25rem; margin: 28px 0 10px; }
.blog-post-content p  { color: #333; line-height: 1.85; margin-bottom: 18px; }
.blog-post-content ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.blog-post-content ul li { color: #333; margin-bottom: 8px; line-height: 1.7; }
.blog-post-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 14px 20px;
  background: var(--off-white);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 32px;
  text-decoration: none;
}
.back-link:hover { color: var(--gold); text-decoration: none; }

/* ---------- Policy Pages ---------- */
.policy-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 70px 0 50px;
  text-align: center;
}
.policy-hero h1 { color: var(--white); }
.policy-hero p  { color: #a0b8d8; margin: 10px 0 0; }
.policy-content { max-width: 860px; margin: 0 auto; padding: 60px 24px; }
.policy-content h2 { font-size: 1.4rem; margin: 36px 0 12px; color: var(--navy); }
.policy-content p  { color: #444; line-height: 1.85; margin-bottom: 16px; }
.policy-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-content ul li { color: #444; margin-bottom: 6px; line-height: 1.7; }
.policy-updated { font-size: 0.85rem; color: var(--muted); margin-bottom: 36px; }

/* ---------- Footer ---------- */
footer {
  background: #06122b;
  color: #8a9ab8;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: #5a7090; }
.footer-brand p { color: #6a7a98; font-size: 0.88rem; margin-top: 14px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: #6a7a98; font-size: 0.88rem; transition: color 0.2s; text-decoration: none; }
.footer-col ul li a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: #4a5a78; font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: #5a6a88; font-size: 0.82rem; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-policy-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- About Page ---------- */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 90px 0 70px;
  color: var(--white);
}
.about-hero h1 { color: var(--white); }
.about-hero p  { color: #a0b8d8; max-width: 620px; margin-top: 14px; font-size: 1.1rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}
.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.team-card p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  border-left: 4px solid var(--gold);
  padding: 24px;
  background: var(--white);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 12px rgba(10,31,68,0.06);
}
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p  { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 56px 0; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 20px 24px; gap: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-links .btn { margin-left: 0; }
  .hamburger { display: flex; }

  .hero { padding: 70px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
}
