/* =========================================================
   Systemvation — Bold Industrial
   Shared stylesheet for all pages
   ========================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2332;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #0a1628;   /* deepest bg */
  --navy-800: #0f1e36;   /* primary dark bg */
  --navy-700: #162a47;
  --navy-600: #1d3760;
  --blue-500: #1847b8;   /* brand blue */
  --blue-400: #2b5fd9;
  --blue-300: #4d7fee;
  --yellow:   #ffc73b;   /* safety/industrial accent */
  --gray-50:  #f7f8fa;
  --gray-100: #eef1f5;
  --gray-200: #d9dee6;
  --gray-400: #8893a6;
  --gray-600: #4a5568;
  --gray-800: #1a2332;
  --white: #ffffff;
  --max-w: 1200px;
  --radius: 4px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--gray-800);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
.eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 1rem;
  font-weight: 500;
}
.dark .eyebrow { color: var(--yellow); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--white); }
.dark p { color: #c4cbd8; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 48px 0; }
@media (min-width: 768px) { section { padding: 64px 0; } }
.section-head { max-width: 720px; margin-bottom: 32px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  font-size: 1.15rem;
}
.brand img {
  height: 56px;
  width: auto;
  max-width: none;
  object-fit: contain;
  aspect-ratio: 4 / 1;
  display: block;
}
@media (min-width: 980px) {
  .brand img { height: 64px; }
}
.site-footer .brand img { height: 44px; }
.brand-mark {
  width: 32px; height: 32px;
  background: var(--blue-500);
  display: grid; place-items: center;
  color: white; font-weight: 700;
  font-family: 'Oswald', sans-serif;
}
.main-nav {
  display: none;
  gap: 26px;
}
@media (min-width: 980px) { .main-nav { display: flex; } }
.main-nav a {
  color: #c4cbd8;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.header-cta {
  display: flex; align-items: center; gap: 10px;
}
.btn-phone, .btn-mail {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.15s;
}
.btn-phone {
  background: #25d366;   /* WhatsApp green */
  color: var(--white);
}
.btn-phone:hover { background: #1ebe57; }
.btn-mail {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-mail:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }
.btn-phone svg, .btn-mail svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-phone .label, .btn-mail .label { display: none; }
@media (min-width: 640px) { .btn-phone .label, .btn-mail .label { display: inline; } }

/* Mobile nav toggle */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: white;
}
@media (min-width: 980px) { .nav-toggle { display: none; } }
.mobile-nav {
  display: none;
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: #c4cbd8;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 500;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  padding: 72px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.70) 60%, rgba(24,71,184,0.50) 100%),
    url('images/landing-hero-web.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.3fr 1fr; gap: 60px; }
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero .tagline {
  font-size: 1.15rem;
  color: #d0d7e3;
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
  border: 2px solid transparent;
}
.btn-primary { background: var(--blue-500); color: var(--white); }
.btn-primary:hover { background: var(--blue-400); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-secondary:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }
.btn-dark { background: var(--navy-800); color: var(--white); }
.btn-dark:hover { background: var(--navy-700); }
.btn-yellow { background: var(--yellow); color: var(--navy-900); }
.btn-yellow:hover { background: #ffd466; }
.hero-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-meta .stat { }
.hero-meta .num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.hero-meta .label {
  display: block;
  font-size: 0.85rem;
  color: #a0abc2;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ---------- Value props (4 cards under hero) ---------- */
.value-props {
  background: var(--gray-50);
  padding: 40px 0;
}
.vp-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .vp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .vp-grid { grid-template-columns: repeat(4, 1fr); } }
.vp-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border-top: 3px solid var(--blue-500);
}
.vp-card h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--navy-900);
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.vp-card p { color: var(--gray-600); font-size: 0.95rem; margin: 0; }

/* ---------- Who we work best with ---------- */
.who-we-work {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .who-we-work { grid-template-columns: 1.2fr 0.85fr; gap: 48px; } }
.who-we-work ul { list-style: none; margin-top: 18px; }
.who-we-work li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}
.who-we-work li::before {
  content: '✓';
  position: absolute; left: 0; top: 10px;
  color: var(--blue-500);
  font-weight: 700;
}
.who-we-work .media {
  max-width: 460px;
  margin: 0 auto;
}
.who-we-work .media img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ---------- How we build (6 steps) ---------- */
.how-we-build { background: var(--navy-900); color: var(--white); }
.how-we-build h2 { color: var(--white); }
.steps-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: var(--navy-800);
  padding: 28px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--yellow);
}
.step-card .step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 8px;
  font-weight: 500;
}
.step-card h4 { color: var(--white); margin-bottom: 12px; font-family: 'Oswald', sans-serif; font-size: 1.15rem; }
.step-card ul { list-style: none; color: #c4cbd8; font-size: 0.92rem; }
.step-card li { padding: 4px 0 4px 16px; position: relative; }
.step-card li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--blue-300);
}

/* ---------- Core capabilities ---------- */
.capabilities {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .capabilities { grid-template-columns: 1.4fr 0.85fr; gap: 48px; align-items: center; } }
.cap-columns {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
}
.cap-columns h4 {
  color: var(--blue-500);
  font-family: 'Oswald', sans-serif;
  border-bottom: 2px solid var(--blue-500);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.cap-columns ul { list-style: none; }
.cap-columns li {
  padding: 6px 0 6px 16px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.cap-columns li::before {
  content: '■';
  position: absolute; left: 0;
  color: var(--blue-500);
  font-size: 0.6rem;
  top: 12px;
}
.capabilities .media {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
}
.capabilities .media img { width: 100%; height: auto; object-fit: contain; }

/* ---------- Industries strip ---------- */
.industries { background: var(--gray-50); padding: 48px 0; }
.industries h3 {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--navy-900);
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.15;
}
.industries .industry-sub {
  text-align: center;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1rem;
}
.industry-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
}
.industry-list li {
  font-family: 'Oswald', sans-serif;
  color: var(--navy-800);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

/* ---------- Selected work ---------- */
.selected-work {
  background: var(--gray-50);
}
.work-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
.work-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-100);
  transition: transform 0.2s, box-shadow 0.2s;
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(10,22,40,0.08); }
.work-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 320px;
  overflow: hidden;
  background: var(--white);
  display: grid;
  place-items: center;
  padding: 0;
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-body { padding: 24px; }
.work-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--blue-500);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.work-card h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--navy-900);
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.work-card p { color: var(--gray-600); font-size: 0.93rem; margin-bottom: 14px; }
.work-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.82rem;
  color: var(--gray-400);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
}
.work-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Mid CTA section ---------- */
.cta-section {
  position: relative;
  color: var(--white);
  padding: 60px 0;
  overflow: hidden;
  background: var(--navy-900);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.92), rgba(24,71,184,0.72)),
    url('images/cta image.jpg') center/cover no-repeat;
  z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; text-align: center; }
.cta-section h2 { color: var(--white); max-width: 680px; margin: 0 auto 16px; }
.cta-section p { color: #d0d7e3; max-width: 600px; margin: 0 auto 28px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-grid { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy-900);
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue-500);
  transition: transform 0.2s;
  font-weight: 400;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--gray-600);
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 18px; }

/* ---------- Product teaser (coming soon) ---------- */
.teaser {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 48px 0;
}
.teaser-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) { .teaser-grid { grid-template-columns: 1fr 1fr; } }
.teaser .badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy-900);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  margin-bottom: 16px;
  font-weight: 600;
}
.teaser h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 14px; }
.teaser p { color: #c4cbd8; margin-bottom: 0; }
.teaser-visual {
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
}
.teaser-visual svg { max-width: 220px; width: 100%; height: auto; display: block; }
.teaser-visual img {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
}

/* Home-page blog teaser grid */
.home-blog {
  background: var(--gray-50);
}
.home-blog .section-head { text-align: left; }
.home-blog .blog-grid { grid-template-columns: 1fr; }
@media (min-width: 700px) { .home-blog .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.home-blog .see-all {
  text-align: right;
  margin-top: 28px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
}
.home-blog .see-all a {
  color: var(--blue-500);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.home-blog .see-all a:hover { text-decoration: underline; }

/* Blog card variant without thumbnail */
.blog-card.no-thumb { border-left: 3px solid var(--blue-500); }
.blog-card.no-thumb .body { padding: 24px; }

/* Appointment note on contact */
.appointment-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--blue-500);
  background: rgba(24,71,184,0.08);
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: 500;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  max-width: 720px;
}
.contact-info h3 { color: var(--navy-900); margin-bottom: 20px; font-family: 'Oswald', sans-serif; }
.contact-info .info-block {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-info .icon-box {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--blue-500);
  color: white;
  display: grid; place-items: center;
  border-radius: var(--radius);
}
.contact-info .icon-box svg { width: 18px; height: 18px; }
.contact-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-info .info-block p { color: var(--navy-900); margin: 0; font-weight: 500; }
.contact-info .info-block a { color: var(--blue-500); font-weight: 500; }
.contact-info .info-block a:hover { text-decoration: underline; }
.contact-info .info-block .muted { color: var(--gray-600); font-weight: 400; font-size: 0.9rem; }
.contact-info .info-block .appointment-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--blue-500);
  background: rgba(24,71,184,0.08);
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #a0abc2;
  padding: 56px 0 24px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.site-footer h5 {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
.site-footer a:hover { color: var(--white); }
.site-footer .brand { margin-bottom: 12px; }
.site-footer p { color: #8b95ab; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #6f7a91;
  font-size: 0.85rem;
}
.footer-certs {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.footer-certs img { height: 44px; width: auto; opacity: 0.9; background: white; padding: 4px; border-radius: 2px; }

/* ---------- Generic article (service / blog pages) ---------- */
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.96), rgba(24,71,184,0.55));
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 820px; margin-bottom: 16px; }
.page-hero p { color: #c4cbd8; max-width: 720px; font-size: 1.1rem; }
.page-hero .crumbs {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.page-hero .crumbs a { color: inherit; }
.page-hero .crumbs a:hover { color: var(--white); }

.article {
  max-width: 820px;
  margin: 0 auto;
}
.article h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
}
.article h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--navy-900);
  font-family: 'Oswald', sans-serif;
}
.article p, .article li {
  color: var(--gray-600);
  font-size: 1.02rem;
  line-height: 1.75;
}
.article ul, .article ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.article li { margin-bottom: 8px; }
.article strong { color: var(--navy-900); }
.article a { color: var(--blue-500); font-weight: 500; }
.article a:hover { text-decoration: underline; }
.article img {
  border-radius: var(--radius);
  margin: 24px 0;
}
.article blockquote {
  border-left: 4px solid var(--blue-500);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--gray-50);
  font-style: italic;
  color: var(--navy-900);
}
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.article th {
  background: var(--navy-900);
  color: white;
  padding: 12px 14px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.article td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

/* Service page feature grid */
.feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  border-top: 3px solid var(--blue-500);
}
.feature-card h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.feature-card p { color: var(--gray-600); font-size: 0.95rem; margin: 0; }

/* Team cards (founder bios with photos) */
.team-card { padding: 28px 24px; }
.team-photo {
  width: 160px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: 50%;
  margin: 0 0 20px 0;
  border: 3px solid var(--gray-100);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-text p { color: var(--gray-600); font-size: 0.95rem; }
.team-text p + p { margin-top: 12px; }

/* Blog card grid */
.blog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(10,22,40,0.08); }
.blog-card .thumb {
  width: 100%; height: 180px;
  background: var(--navy-800);
  overflow: hidden;
}
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.blog-card .meta { font-size: 0.82rem; color: var(--gray-400); font-family: 'Oswald', sans-serif; letter-spacing: 0.05em; }
.blog-card h4 { font-family: 'Oswald', sans-serif; color: var(--navy-900); font-size: 1.15rem; line-height: 1.3; }
.blog-card p { color: var(--gray-600); font-size: 0.93rem; flex-grow: 1; }
.blog-card .read-more {
  color: var(--blue-500);
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.hidden { display: none; }
