/* Steadlines Business Solutions — Shared Stylesheet */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --purple: #6b3fa0;
  --purple-dark: #4a2870;
  --purple-mid: #8b5cc8;
  --purple-pale: #f0eaf8;
  --navy: #4a2870;
  --white: #ffffff;
  --off-white: #f8f7fc;
  --gray: #f3f4f8;
  --text-dark: #1a1a2e;
  --text-mid: #52526a;
  --text-light: #9090a8;
  --border: #e2e1ec;
  --max-w: 1080px;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── NAVBAR ─── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { height: 42px; width: auto; display: block; mix-blend-mode: multiply; }
.footer-logo { height: 36px; width: auto; display: block; margin-bottom: 18px; mix-blend-mode: multiply; }
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-links a.active { color: var(--purple); font-weight: 600; }
.nav-cta {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--purple);
  color: white;
  padding: 10px 22px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--purple-dark); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: white; z-index: 150;
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block; padding: 14px 0;
  font-family: 'Raleway', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--purple); }
.mobile-cta {
  display: block; margin-top: 24px;
  text-align: center;
  background: var(--purple); color: white;
  padding: 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--purple); color: white;
  padding: 13px 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--purple-dark); }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--purple);
  padding: 13px 32px;
  border: 1.5px solid var(--purple);
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--purple); color: white; }

.btn-white {
  display: inline-block;
  background: white; color: var(--purple);
  padding: 13px 32px;
  border: 1.5px solid white;
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; }

.btn-outline-white {
  display: inline-block;
  background: transparent; color: white;
  padding: 13px 32px;
  border: 1.5px solid rgba(255,255,255,0.55);
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-outline-dark {
  display: inline-block;
  background: transparent; color: var(--text-dark);
  padding: 13px 32px;
  border: 1.5px solid var(--border);
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-dark:hover { border-color: var(--purple); color: var(--purple); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ─── SECTION LABELS / TYPOGRAPHY ─── */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple);
  display: block; margin-bottom: 14px;
}
.section-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 34px; font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25; margin-bottom: 16px;
}
.section-heading span { color: var(--purple); }
.section-lead {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.85; max-width: 560px;
}

/* ─── PAGE BANNER (interior pages) ─── */
.page-banner {
  position: relative; height: 300px; overflow: hidden;
  display: flex; align-items: center;
  background: var(--purple);
}
.page-banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.18;
}
.page-banner-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px; width: 100%;
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 18px;
}
.breadcrumb a, .breadcrumb span {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-banner h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 44px; font-weight: 700;
  color: white; line-height: 1.18; margin-bottom: 12px;
}
.page-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 15px; max-width: 520px; line-height: 1.75;
}

/* ─── HOME HERO ─── */
.home-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.hero-img-side { position: relative; overflow: hidden; }
.hero-img-side img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 520px; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 9, 12, 0.616);
}
.hero-img-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; padding: 52px;
}
.hero-img-content h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 40px; font-weight: 700;
  color: white; line-height: 1.2; letter-spacing: -0.01em;
}
.hero-copy-side {
  background: var(--purple);
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 52px;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.88);
  font-family: 'Raleway', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; margin-bottom: 22px; align-self: flex-start;
}
.hero-copy-side h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 20px; font-weight: 600;
  color: rgba(255,255,255,0.95); line-height: 1.4; margin-bottom: 6px;
}
.hero-rule { width: 40px; height: 2px; background: rgba(255,255,255,0.38); margin: 18px 0; }
.hero-copy-side p {
  color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.85; margin-bottom: 24px;
}
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.8);
  font-family: 'Open Sans', sans-serif;
  font-size: 11px; padding: 4px 13px;
}

/* ─── SERVICES SECTION (home) ─── */
.services-section { background: var(--white); padding: 96px 28px; }
.section-header { max-width: var(--max-w); margin: 0 auto 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-lead { margin: 0 auto; }
.services-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.service-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--off-white); }
.svc-icon { width: 48px; height: 48px; margin-bottom: 22px; }
.svc-icon svg { width: 48px; height: 48px; }
.service-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 14px; line-height: 1.35;
}
.service-card ul { list-style: none; margin-bottom: 18px; }
.service-card ul li {
  font-size: 13px; color: var(--text-mid);
  padding: 4px 0 4px 14px; position: relative; line-height: 1.55;
}
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 5px; height: 5px;
  background: var(--purple-mid); border-radius: 50%;
}
.svc-highlight {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 700; color: var(--purple);
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px;
  font-style: italic;
}

/* ─── HOW WE WORK ─── */
.how-section { background: var(--gray); padding: 96px 28px; }
.how-grid {
  max-width: var(--max-w); margin: 52px auto 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
.how-grid::before {
  content: ''; position: absolute;
  top: 31px; left: 10%; right: 10%;
  height: 1px; background: var(--border); z-index: 0;
}
.step-card { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-num {
  width: 62px; height: 62px; border-radius: 50%;
  background: white; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Raleway', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--purple);
  transition: all 0.25s;
}
.step-card:hover .step-num { background: var(--purple); border-color: var(--purple); color: white; }
.step-card h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 8px;
}
.step-card p { font-size: 12.5px; color: var(--text-mid); line-height: 1.7; }

/* ─── RESULTS BAND ─── */
.results-section {
  background: var(--purple);
  padding: 80px 28px;
}
.results-inner { max-width: var(--max-w); margin: 0 auto; }
.results-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: flex-start; margin-bottom: 56px;
}
.results-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); display: block; margin-bottom: 12px;
}
.results-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 30px; font-weight: 700; color: white; line-height: 1.3;
}
.results-sub { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.result-item { border-left: 2px solid rgba(255,255,255,0.2); padding-left: 24px; }
.result-item h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px;
}
.result-item p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ─── INDUSTRIES ─── */
.ind-section { background: var(--white); padding: 96px 28px; }
.ind-grid {
  max-width: var(--max-w); margin: 52px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); overflow: hidden;
}
.ind-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ind-card:nth-child(2n) { border-right: none; }
.ind-card:nth-child(n+3) { border-bottom: none; }
.ind-card-img { overflow: hidden; }
.ind-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 210px; transition: transform 0.4s; }
.ind-card-img:hover img { transform: scale(1.04); }
.ind-card-text {
  background: var(--off-white); padding: 36px 28px;
  display: flex; flex-direction: column; justify-content: center;
}
.ind-card-text h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--purple); margin-bottom: 10px;
}
.ind-card-text p { color: var(--text-mid); font-size: 13px; line-height: 1.7; }

/* ─── ABOUT SNIPPET ─── */
.about-snippet { background: var(--gray); padding: 96px 28px; }
.about-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 0; right: -28px;
  background: var(--purple); color: white; padding: 22px 28px;
}
.about-badge strong {
  font-family: 'Raleway', sans-serif;
  font-size: 32px; font-weight: 700; display: block; line-height: 1;
}
.about-badge span { font-size: 11px; opacity: 0.82; letter-spacing: 0.04em; }
.about-copy .section-lead { max-width: 100%; margin-bottom: 28px; }
.about-list { list-style: none; }
.about-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.about-list li:first-child { border-top: 1px solid var(--border); }
.a-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.a-icon svg { width: 18px; height: 18px; }
.about-list li strong {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--text-dark);
  display: block; margin-bottom: 2px;
}
.about-list li p { font-size: 12.5px; color: var(--text-mid); line-height: 1.6; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--purple);
  padding: 100px 28px; text-align: center;
}
.cta-section .section-label { color: rgba(255,255,255,0.55); }
.cta-section h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 38px; font-weight: 700; color: white;
  line-height: 1.25; max-width: 580px; margin: 0 auto 14px;
}
.cta-section p {
  color: rgba(255,255,255,0.72); font-size: 15px;
  max-width: 460px; margin: 0 auto 40px; line-height: 1.8;
}
.cta-section .btn-row { justify-content: center; }

/* ─── FOOTER ─── */
.site-footer { background: var(--white); border-top: 1px solid var(--border); }
.footer-main { max-width: var(--max-w); margin: 0 auto; padding: 72px 28px 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { padding-right: 24px; }
.footer-brand .footer-logo { margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; }
.footer-col h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 18px; letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--text-mid);
  margin-bottom: 9px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--purple); }
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--purple); background: var(--purple-pale); }
.social-link svg { width: 16px; height: 16px; fill: var(--text-mid); transition: fill 0.2s; }
.social-link:hover svg { fill: var(--purple); }
.footer-bar {
  background: var(--purple); padding: 16px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bar p { color: rgba(255,255,255,0.82); font-size: 12px; }

/* ─── SERVICES PAGE ─── */
.svc-intro { background: var(--white); padding: 72px 28px 56px; }
.svc-intro .section-heading { margin-bottom: 14px; }
.svc-intro .section-lead { max-width: 620px; }

.svc-blocks { background: var(--white); padding: 0 28px 80px; }
.svc-block {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 72px 0; border-bottom: 1px solid var(--border);
}
.svc-block:last-child { border-bottom: none; }
.svc-block.flip { direction: rtl; }
.svc-block.flip > * { direction: ltr; }
.svc-img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-num {
  font-family: 'Raleway', sans-serif;
  font-size: 72px; font-weight: 700; color: var(--purple);
  opacity: 0.1; line-height: 1; display: block; margin-bottom: -22px;
}
.svc-block-content h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 26px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 20px; line-height: 1.3;
}
.svc-block-content ul { list-style: none; margin-bottom: 24px; }
.svc-block-content ul li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 9px; font-size: 14px; color: var(--text-mid);
}
.check-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.check-icon svg { width: 18px; height: 18px; }
.svc-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--purple);
  border-left: 3px solid var(--purple); padding-left: 16px;
  margin-top: 16px; line-height: 1.5;
}

.why-section { background: var(--gray); padding: 96px 28px; }
.why-inner {
  max-width: var(--max-w); margin: 52px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.why-list { list-style: none; }
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-num {
  font-family: 'Raleway', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--purple);
  min-width: 28px; margin-top: -2px;
}
.why-item h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px;
}
.why-item p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.why-img-wrap { overflow: hidden; aspect-ratio: 3/4; }
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.process-section { background: var(--white); padding: 96px 28px; }
.process-steps {
  max-width: var(--max-w); margin: 52px auto 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 29px; left: 10%; right: 10%;
  height: 1px; background: var(--border);
}
.p-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.p-num {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--purple); color: white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px; font-weight: 700;
}
.p-step h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px;
}
.p-step p { font-size: 12px; color: var(--text-mid); line-height: 1.65; }

/* ─── ABOUT PAGE ─── */
.who-section { background: var(--white); padding: 96px 28px; }
.who-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.who-img { overflow: hidden; aspect-ratio: 4/3; }
.who-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.who-copy .section-lead { max-width: 100%; margin-bottom: 28px; }
.who-copy blockquote {
  border-left: 3px solid var(--purple); padding-left: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--text-dark);
  line-height: 1.6; margin-top: 24px;
}

.mv-section { background: var(--gray); padding: 96px 28px; }
.mv-grid {
  max-width: var(--max-w); margin: 52px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.mv-card { padding: 44px 40px; background: white; border: 1px solid var(--border); }
.mv-icon { margin-bottom: 20px; }
.mv-icon svg { width: 38px; height: 38px; }
.mv-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--purple); margin-bottom: 14px;
}
.mv-card p { font-size: 14px; color: var(--text-mid); line-height: 1.85; }

.diff-section { background: var(--white); padding: 96px 28px; }
.diff-grid {
  max-width: var(--max-w); margin: 52px auto 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.diff-item {
  padding: 32px 20px; background: var(--gray);
  border: 1px solid var(--border); text-align: center;
}
.diff-item svg { width: 36px; height: 36px; margin: 0 auto 16px; }
.diff-item h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.4;
}

.team-section { background: var(--gray); padding: 96px 28px; }
.team-grid {
  max-width: var(--max-w); margin: 52px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.team-card { background: white; border: 1px solid var(--border); }
.team-photo { aspect-ratio: 3/4; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.4s; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 28px; border-top: 3px solid var(--purple); }
.team-info h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px;
}
.team-role {
  font-family: 'Raleway', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 14px; display: block;
}
.team-info p { font-size: 13px; color: var(--text-mid); line-height: 1.75; }

.values-section { background: var(--white); padding: 96px 28px; }
.values-grid {
  max-width: var(--max-w); margin: 52px auto 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.value-item { padding: 28px 20px; border: 1px solid var(--border); }
.value-item svg { width: 28px; height: 28px; margin-bottom: 14px; }
.value-item h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px;
}
.value-item p { font-size: 12px; color: var(--text-mid); line-height: 1.65; }

.trust-section { background: var(--gray); padding: 80px 28px; }
.trust-inner { max-width: 740px; margin: 0 auto; text-align: center; }
.trust-inner blockquote {
  font-family: 'Raleway', sans-serif;
  font-size: 22px; font-weight: 600; color: var(--text-dark);
  line-height: 1.55; margin-bottom: 24px;
}
.trust-inner blockquote span { color: var(--purple); }
.trust-inner p { font-size: 14px; color: var(--text-mid); line-height: 1.85; }

/* ─── CONTACT PAGE ─── */
.contact-section { background: var(--white); padding: 96px 28px; }
.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-form { }
.contact-form h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Raleway', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dark); margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); background: var(--off-white);
  font-family: 'Open Sans', sans-serif; font-size: 14px; color: var(--text-dark);
  outline: none; transition: border-color 0.2s, background 0.2s;
  border-radius: 0; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--purple); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { }
.contact-info h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px;
}
.contact-info > p { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 40px; }
.c-detail { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.c-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center;
}
.c-icon svg { width: 20px; height: 20px; }
.c-detail h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dark); margin-bottom: 4px;
}
.c-detail a, .c-detail p {
  font-size: 14px; color: var(--text-mid); transition: color 0.2s;
}
.c-detail a:hover { color: var(--purple); }
.divider-line { width: 100%; height: 1px; background: var(--border); margin: 36px 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .home-hero { grid-template-columns: 1fr; }
  .hero-img-side { min-height: 300px; }
  .hero-img-side img { min-height: 300px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .how-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .how-grid::before { display: none; }
  .results-top { grid-template-columns: 1fr; gap: 24px; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .ind-card { grid-template-columns: 1fr; }
  .ind-card-img { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-badge { right: 0; }
  .mv-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-block { grid-template-columns: 1fr; gap: 40px; }
  .svc-block.flip { direction: ltr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-img-wrap { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr 1fr; }
  .process-steps::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .who-inner { grid-template-columns: 1fr; }
  .section-heading { font-size: 28px; }
  .page-banner h1 { font-size: 34px; }
}

@media (max-width: 600px) {
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .section-heading { font-size: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .ind-card { border-right: none; border-bottom: 1px solid var(--border); }
  .ind-card:last-child { border-bottom: none; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bar { flex-direction: column; gap: 6px; text-align: center; }
  .cta-section h2 { font-size: 26px; }
  .page-banner { height: 220px; }
  .page-banner h1 { font-size: 26px; }
  .hero-img-content h1 { font-size: 28px; }
  .hero-copy-side { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
}
