:root {
  --ink: #071a33;
  --muted: #607086;
  --soft: #f5f8fc;
  --soft-strong: #eaf2fa;
  --surface: #ffffff;
  --line: #dce7f1;
  --brand: #063b78;
  --brand-strong: #082b5f;
  --blue: #0c73d8;
  --teal: #0fa89b;
  --amber: #f4b544;
  --orange: #ff6b35;
  --footer: #06182d;
  --shadow: 0 18px 44px rgba(7, 26, 51, 0.12);
  --shadow-soft: 0 12px 30px rgba(7, 26, 51, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(12, 115, 216, 0.32);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  color: var(--surface);
  background: var(--brand);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(220, 231, 241, 0.86);
  backdrop-filter: blur(18px) saturate(150%);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(7, 26, 51, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: 62px;
  max-width: 260px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-left: auto;
}

.site-nav a {
  min-height: 40px;
  padding: 9px 12px;
  color: #31435a;
  font-size: 15px;
  font-weight: 750;
  border-radius: var(--radius);
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand);
  background: #eaf4ff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: var(--radius);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.trust-bar {
  border-top: 1px solid rgba(220, 231, 241, 0.78);
  background: rgba(245, 248, 252, 0.78);
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  overflow-x: auto;
  scrollbar-width: none;
}

.trust-badges::-webkit-scrollbar {
  display: none;
}

.trust-badges span {
  flex: 0 0 auto;
  color: #273f58;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.trust-badges span::before,
.check-list li::before,
.feature-list li::before {
  content: "\2713";
  margin-right: 7px;
  color: var(--teal);
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--surface);
  background: linear-gradient(135deg, var(--brand), var(--blue));
  box-shadow: 0 16px 30px rgba(12, 115, 216, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(12, 115, 216, 0.3);
}

.btn-secondary {
  color: var(--brand);
  background: #edf6ff;
  border-color: #cfe5f7;
}

.btn-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.74);
}

.btn-large {
  min-height: 52px;
  padding: 14px 22px;
}

.btn-full {
  width: 100%;
}

.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--brand);
  font-weight: 850;
  background: transparent;
  border: 0;
}

.text-link::after,
.text-button::after {
  content: ">";
  color: var(--orange);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--surface);
  background: var(--footer);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 32, 0.96) 0%, rgba(6, 29, 54, 0.88) 48%, rgba(6, 29, 54, 0.38) 100%),
    linear-gradient(180deg, rgba(6, 24, 45, 0.1) 0%, rgba(6, 24, 45, 0.74) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 680px;
  padding: 104px 0 82px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-section .eyebrow,
.quote-section .eyebrow {
  color: #87eee4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy,
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 840px;
  margin-top: 44px;
}

.proof-item {
  min-height: 88px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.proof-item strong {
  display: block;
  color: var(--surface);
  font-size: 24px;
  line-height: 1.1;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 30px 0;
}

.section-muted {
  background: var(--soft);
}

.section-blue {
  color: var(--surface);
  background: var(--brand-strong);
}

.section-header {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header h2,
.section-copy h2,
.article-flow h2,
.contact-info h2,
.form-shell h2,
.modal-card h2,
.cta-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-header p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.contact-info p:not(.eyebrow),
.cta-section p:not(.eyebrow),
.article-flow p {
  color: var(--muted);
  font-size: 17px;
}

.service-ribbon {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ribbon-inner span {
  padding: 9px 12px;
  color: #364a62;
  font-size: 14px;
  font-weight: 850;
  background: #eef6fd;
  border: 1px solid #deebf5;
  border-radius: var(--radius);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.feature-list,
.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.feature-list li,
.check-list li {
  min-height: 52px;
  padding: 12px 14px;
  color: #263a52;
  font-weight: 800;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.dashboard-panel,
.lead-box,
.form-shell,
.overview-visual,
.career-panel {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dashboard-panel {
  display: grid;
  gap: 14px;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.metric-row span {
  color: var(--muted);
  font-weight: 750;
}

.metric-row strong {
  color: var(--brand);
  font-size: 22px;
  text-align: right;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.module-grid span {
  min-height: 54px;
  padding: 10px;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  background: #f0f7fe;
  border: 1px solid #dbeaf6;
  border-radius: var(--radius);
}

.services-grid,
.values-grid,
.mission-grid,
.blog-grid,
.program-grid,
.growth-grid,
.timeline,
.erp-grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.value-card,
.mission-card,
.blog-card,
.program-card,
.growth-card,
.timeline-item,
.erp-card {
  min-height: 100%;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.blog-card:hover,
.program-card:hover,
.erp-card:hover {
  transform: translateY(-5px);
  border-color: #b6ddf8;
  box-shadow: var(--shadow);
}

.service-card.featured,
.erp-card.featured {
  color: var(--surface);
  background: linear-gradient(135deg, var(--brand-strong), var(--blue));
  border-color: transparent;
}

.service-card.featured p,
.service-card.featured a,
.service-card.featured .text-button,
.erp-card.featured p,
.erp-card.featured span {
  color: rgba(255, 255, 255, 0.86);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--surface);
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  border-radius: var(--radius);
}

.featured .card-icon {
  color: var(--brand);
  background: var(--surface);
}

.service-card h3,
.value-card h3,
.mission-card h3,
.blog-card h3,
.program-card h3,
.growth-card h3,
.timeline-item h3,
.lead-box h3,
.erp-card h3 {
  margin: 0 0 10px;
  color: inherit;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.service-card p,
.value-card p,
.mission-card p,
.blog-card p,
.program-card p,
.growth-card p,
.timeline-item p,
.lead-box p,
.erp-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.service-card a,
.blog-card a,
.program-card a,
.erp-card a {
  color: var(--brand);
  font-weight: 850;
}

.overview-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.overview-visual {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.overview-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.since-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: 132px;
  padding: 18px 14px;
  color: var(--surface);
  text-align: center;
  background: var(--brand);
  border-radius: var(--radius);
  box-shadow: 0 20px 38px rgba(6, 59, 120, 0.28);
}

.since-badge strong {
  display: block;
  font-size: 36px;
  line-height: 1;
}

.since-badge span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 850;
}

.mission-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mission-card {
  text-align: center;
}

.mission-symbol {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  color: var(--surface);
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: var(--radius);
}

.mission-card:nth-child(2) .mission-symbol {
  background: linear-gradient(135deg, var(--teal), #28bd68);
}

.mission-card:nth-child(3) .mission-symbol {
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.quote-section {
  color: rgba(255, 255, 255, 0.82);
  background: var(--brand-strong);
}

.quote-section h2,
.quote-section h3 {
  color: var(--surface);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.quote-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.quote-mark {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 54px;
  line-height: 0.8;
}

.quote-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
}

.quote-author {
  padding-left: 14px;
  color: var(--surface);
  font-weight: 850;
  border-left: 3px solid var(--orange);
}

.quote-author span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 700;
}

.values-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.value-card span,
.timeline-item span,
.blog-card span,
.erp-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brand);
  font-weight: 900;
}

.timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.article-flow {
  display: grid;
  gap: 24px;
}

.article-flow h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.article-flow p {
  margin: 0;
}

.technique-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 34px 0 40px;
}

.tab-button {
  min-width: 118px;
  min-height: 46px;
  padding: 10px 18px;
  color: var(--brand);
  font-weight: 850;
  background: var(--surface);
  border: 1px solid var(--brand);
  border-radius: var(--radius);
}

.tab-button[aria-selected="true"] {
  color: var(--surface);
  background: var(--brand);
}

.tab-panel[hidden] {
  display: none;
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-card {
  text-align: center;
}

.program-card .card-icon,
.growth-card .card-icon {
  margin-right: auto;
  margin-left: auto;
}

.program-card small {
  display: block;
  color: var(--muted);
  font-weight: 750;
}

.growth-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.growth-card {
  text-align: center;
}

.page-hero {
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(6, 24, 45, 0.96), rgba(6, 59, 120, 0.94)),
    var(--brand-strong);
  padding: 128px 0 88px;
}

.page-hero-inner {
  display: grid;
  justify-items: start;
}

.page-hero h1,
.cta-section h2,
.page-hero p:not(.eyebrow),
.cta-section p:not(.eyebrow) {
  color: var(--surface);
}

.erp-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-list div {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-list strong,
.contact-list span {
  display: block;
}

.contact-list span,
.contact-list a {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(12, 115, 216, 0.12);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 850;
}

.cta-section {
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(6, 24, 45, 0.98), rgba(6, 59, 120, 0.95)),
    var(--brand-strong);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-inner > div:first-child {
  max-width: 700px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr 1fr 1.05fr;
  gap: 30px;
  padding: 62px 0 36px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer .brand-logo {
  height: 64px;
  padding: 4px;
  background: var(--surface);
  border-radius: var(--radius);
}

.site-footer p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--surface);
  font-size: 16px;
  letter-spacing: 0;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: var(--surface);
}

.footer-contact {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.social-links span {
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 26px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 30, 0.72);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: min(92vh, 780px);
  overflow: auto;
  padding: 30px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.modal-card p:not(.eyebrow) {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

@media (max-width: 1100px) {
  .header-actions .btn-secondary {
    display: none;
  }

  .services-grid,
  .services-grid.three,
  .blog-grid,
  .values-grid,
  .timeline,
  .program-grid,
  .growth-grid,
  .erp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 112px;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
    min-height: 74px;
    padding: 8px 0;
  }

  .brand-logo {
    height: 50px;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    flex: 1 0 100%;
    order: 5;
    margin-left: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    padding: 12px;
  }

  .trust-badges {
    justify-content: flex-start;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 72px 0;
  }

  .split-layout,
  .split-layout.reverse,
  .contact-grid,
  .technique-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .overview-visual,
  .split-layout.reverse .career-panel {
    order: 2;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: grid;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-actions .btn-primary {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .brand-logo {
    height: 44px;
    max-width: 160px;
  }

  .trust-bar {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 590px;
  }

  .hero-content {
    padding: 82px 0 64px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .hero-copy,
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof,
  .feature-list,
  .check-list,
  .services-grid,
  .services-grid.three,
  .blog-grid,
  .values-grid,
  .timeline,
  .program-grid,
  .growth-grid,
  .erp-grid,
  .footer-grid,
  .form-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .section-copy h2,
  .contact-info h2,
  .form-shell h2,
  .modal-card h2,
  .cta-section h2 {
    font-size: 31px;
  }

  .page-hero {
    padding: 90px 0 64px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .modal-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}



/* ===============================
   Premium 2026 Social Icons
================================ */

.social-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:22px;
    margin-top:25px;
}

.social-links a{
    width:65px;
    height:65px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:30px;
    text-decoration:none;
    position:relative;
    overflow:hidden;

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:2px solid rgba(255,255,255,.15);

    transition:.45s ease;
}

/* ICON COLORS */

.linkedin{
    color:#0A66C2;
    box-shadow:0 0 20px rgba(10,102,194,.35);
}

.facebook{
    color:#1877F2;
    box-shadow:0 0 20px rgba(24,119,242,.35);
}

.instagram{
    color:#E1306C;
    box-shadow:0 0 20px rgba(225,48,108,.35);
}

.youtube{
    color:#FF0000;
    box-shadow:0 0 20px rgba(255,0,0,.35);
}

/* Hover */

.social-links a:hover{

    transform:translateY(-8px) scale(1.15) rotate(360deg);

}

/* Hover Background */

.linkedin:hover{
    background:#0A66C2;
    color:#fff;
    box-shadow:0 0 35px #0A66C2;
}

.facebook:hover{
    background:#1877F2;
    color:#fff;
    box-shadow:0 0 35px #1877F2;
}

.instagram:hover{
    background:linear-gradient(
        45deg,
        #FEDA75,
        #FA7E1E,
        #D62976,
        #962FBF,
        #4F5BD5
    );
    color:#fff;
    box-shadow:0 0 35px #E1306C;
}

.youtube:hover{
    background:#FF0000;
    color:#fff;
    box-shadow:0 0 35px #FF0000;
}

