/* ============================================================
   FORSYS WEBSITE — HOME.CSS
   Homepage-specific styles extracted from concept site
   ============================================================ */

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--purple); color: #fff;
  padding: 8px 16px; border-radius: 0 0 8px 0;
  font-size: 14px; font-weight: 600; text-decoration: none;
  z-index: 999; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── HERO ────────────────────────────────────────────────── */

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 24px) 48px 120px;
  overflow: hidden; text-align: center;
  background: var(--gradient-hero);
}
/* Wave at bottom */
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content { position: relative; z-index: 1; max-width: 860px; padding-bottom: 40px; }

.page-home .hero-badge { animation: heroFadeUp 0.6s 0.05s cubic-bezier(0.22, 0.61, 0.36, 1) both; }

/* Headline slideshow */
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 5.8vw, 80px);
  font-weight: 800; line-height: 1.04;
  letter-spacing: -0.038em; color: var(--text-primary);
  margin-bottom: 10px; min-height: 170px;
  animation: heroFadeUp 0.6s 0.15s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.slide-title { display: none; margin: 0; font-size: inherit; font-weight: inherit; line-height: inherit; letter-spacing: inherit; color: inherit; }
.slide-title.active { display: block; }

.hero-sub {
  font-size: 18px; color: var(--text-secondary); line-height: 1.65;
  max-width: 580px; margin: 0 auto 14px; min-height: 52px;
  animation: heroFadeUp 0.6s 0.25s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.slide-sub { display: none; }
.slide-sub.active { display: block; }

.slide-dots { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 36px; animation: heroFadeUp 0.6s 0.30s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.slide-dot {
  width: 8px; height: 8px; border-radius: var(--radius-pill);
  background: var(--border-strong); cursor: pointer; transition: all 0.25s; border: none;
}
.slide-dot.active { width: 24px; background: var(--purple); }

/* Hero CTA buttons */
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 56px; flex-wrap: wrap; animation: heroFadeUp 0.6s 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.btn-hero-primary {
  background: var(--purple); color: #fff;
  font-size: 16px; font-weight: 600; text-decoration: none;
  padding: 14px 32px; border-radius: var(--radius-pill);
  box-shadow: 0 6px 24px var(--purple-glow); transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 10px 32px var(--purple-glow); }
.btn-hero-secondary {
  color: var(--text-secondary); font-size: 16px; font-weight: 500;
  text-decoration: none; padding: 14px 32px;
  border: 1.5px solid var(--border-strong); border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7); transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.btn-hero-secondary:hover { color: var(--text-primary); border-color: var(--purple); background: var(--white); }

/* ── HERO STATS (2-item variant) ────────────────────────── */
.hero-stats {
  grid-template-columns: repeat(2, 1fr);
  max-width: 440px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(107,72,255,0.15);
  box-shadow: 0 8px 40px rgba(107,72,255,0.12);
  animation: heroFadeUp 0.6s 0.45s cubic-bezier(0.22,0.61,0.36,1) both;
}
.hero-stats .stat-item { padding: 28px 40px; }
.hero-stats .stat-number { font-size: 48px; }
.hero-stats .stat-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.01em; }

/* ── HERO MOCKUP CARDS ───────────────────────────────────── */
.hero-mockup {
  position: relative; z-index: 1; width: 100%; max-width: 1000px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 0 24px;
  animation: heroFadeUp 0.6s 0.50s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.mockup-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 18px 16px;
  box-shadow: 0 8px 32px rgba(13, 13, 43, 0.08);
  text-align: left;
}
.mockup-card-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.mockup-card-title { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.mockup-stat { font-size: 22px; font-weight: 800; color: var(--purple); margin-bottom: 3px; }
.mockup-sub { font-size: 11px; color: var(--text-muted); }
.mockup-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mockup-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.mockup-row strong { color: var(--text-primary); }

/* ── WHAT WE DO ──────────────────────────────────────────── */
.what-we-do { background: var(--white); }

/* 4-pillar layout */
.wwd-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.wwd-pillar-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-card-lg); padding: 32px 24px;
  transition: all 0.2s; display: flex; flex-direction: column;
}
.wwd-pillar-card:hover {
  background: var(--white); border-color: var(--purple);
  box-shadow: 0 8px 32px rgba(107,72,255,0.10); transform: translateY(-3px);
}
.wwd-pillar-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--purple-light); border: 1px solid rgba(107,72,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); margin-bottom: 18px; flex-shrink: 0;
}
.wwd-pillar-icon svg { width: 26px; height: 26px; flex-shrink: 0; }
.wwd-pillar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 10px;
}
.wwd-pillar-desc {
  font-size: 13.5px; color: var(--text-secondary); line-height: 1.65;
  margin-bottom: 18px;
}
.wwd-pillar-platform-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.wwd-platform-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--purple); background: var(--purple-light);
  border: 1px solid rgba(107,72,255,0.2); border-radius: var(--radius-pill);
  padding: 3px 10px;
}
.wwd-pillar-items {
  list-style: none; display: flex; flex-direction: column; gap: 5px;
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border);
}
.wwd-pillar-items li a {
  font-size: 13px; color: var(--text-secondary); text-decoration: none; font-weight: 500;
  display: flex; align-items: flex-start; gap: 7px; transition: color 0.15s;
}
.wwd-pillar-items li a::before {
  content: '·'; color: var(--purple); font-size: 20px; line-height: 0.7; flex-shrink: 0;
}
.wwd-pillar-items li a:hover { color: var(--purple); }
.wwd-pillar-items li span {
  font-size: 13px; color: var(--text-secondary); font-weight: 500;
  display: flex; align-items: flex-start; gap: 7px;
}
.wwd-pillar-items li span::before {
  content: '·'; color: var(--purple); font-size: 20px; line-height: 0.7; flex-shrink: 0;
}
.wwd-pillar-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--purple);
  text-decoration: none; margin-top: 14px; transition: gap 0.15s;
}
.wwd-pillar-cta:hover { gap: 11px; }

/* ── CLIENT RESULTS STRIP ────────────────────────────────── */
.results-strip {
  background: var(--bg); padding: 56px 48px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--container-max); margin: 0 auto;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-card-lg); overflow: hidden;
  box-shadow: 0 8px 32px rgba(13,13,43,0.07);
}
.result-item {
  padding: 32px 24px; border-right: 1px solid var(--border); text-align: center;
}
.result-item:last-child { border-right: none; }
.result-stat {
  font-family: 'Space Grotesk', sans-serif; font-size: 56px; font-weight: 800;
  background: var(--gradient-ai);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 8px;
}
.result-label {
  font-size: 14px; font-weight: 600; color: var(--text-primary); line-height: 1.4; margin-bottom: 6px;
}
.result-client { font-size: 11.5px; color: var(--text-muted); font-weight: 500; }

/* ── SPLIT SECTION (For Every Team) ─────────────────────── */
.split-section { background: var(--bg); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.split-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-card); padding: 24px; transition: all 0.2s;
}
.split-card:hover { border-color: var(--purple); box-shadow: 0 6px 24px rgba(107, 72, 255, 0.09); }
.split-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--purple-light); border: 1px solid rgba(107, 72, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); margin-bottom: 12px; flex-shrink: 0;
}
.split-card-icon svg { width: 26px; height: 26px; flex-shrink: 0; }
.split-card-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.split-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Inline text link */
.btn-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--purple); text-decoration: none; transition: gap 0.15s; }
.btn-link:hover { gap: 12px; }

/* ── AI SOLUTIONS ─────────────────────────────────────────── */
.ai-solutions { background: var(--white); }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: var(--container-max); margin: 0 auto; }
.sol-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-card); padding: 28px; transition: all 0.2s; position: relative; overflow: hidden;
  text-decoration: none; display: block;
}
.sol-card:hover { border-color: var(--purple); background: var(--white); box-shadow: 0 8px 28px rgba(107, 72, 255, 0.09); transform: translateY(-3px); }
.sol-card:hover .sol-arrow { opacity: 1; transform: translate(3px, -3px); }
.sol-arrow { position: absolute; top: 24px; right: 24px; font-size: 15px; color: var(--purple); opacity: 0; transition: all 0.2s; }
.sol-badge {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--purple); background: var(--purple-light);
  border: 1px solid rgba(107, 72, 255, 0.2); border-radius: var(--radius-pill);
  padding: 3px 10px; margin-bottom: 12px;
}
.sol-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 7px; }
.sol-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── PLATFORMS SECTION ───────────────────────────────────── */
.platforms { background: var(--white); }
.platform-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* Tab group — pill-track container with sliding indicator */
.platforms .platform-tabs {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 4px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

/* Sliding indicator — JS positions this over the active tab */
.ptab-slider {
  position: absolute;
  top: 4px;
  bottom: 4px;
  background: var(--purple);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px var(--purple-glow);
  pointer-events: none;
  z-index: 0;
  will-change: left, width;
  transition: left 0.22s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tabs sit above the slider */
.platforms .ptab {
  position: relative;
  z-index: 1;
  background: transparent;
  border-color: transparent;
}
.platforms .ptab:hover {
  background: rgba(107,72,255,0.08);
  border-color: transparent;
  color: var(--purple);
}
/* No-JS fallback: static purple fill on .active */
.platforms .ptab.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 2px 10px var(--purple-glow);
}
/* JS-ready: slider provides the fill — strip it from the button */
.platforms.tabs-js-ready .ptab.active {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

/* Tab content fade-in when switching panels */
@keyframes platformContentIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}
.platforms .platform-content.active {
  animation: platformContentIn 0.22s ease both;
}

/* Accordion — left accent bar on active, subtle hover */
.platforms .accord-item {
  border-left: 3px solid transparent;
  transition: background 0.15s, border-left-color 0.15s;
}
.platforms .accord-item.active {
  background: rgba(107,72,255,0.04);
  border-left-color: var(--purple);
}
.platforms .accord-item:not(.active):hover {
  background: rgba(107,72,255,0.025);
  border-left-color: var(--border-strong);
}

/* Platform panel footer CTA */
.ptab-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.2s;
}
.ptab-cta:hover { gap: 10px; }

/* Right visual panel — bg surface on white section */
.platforms .platform-visual { background: var(--bg); }
.platforms .pv-header {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.platforms .pv-row {
  background: var(--white);
  box-shadow: 0 1px 4px rgba(13,13,43,0.04);
}
.platforms .pv-row-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 800;
  background: var(--gradient-ai);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.platforms .pv-bar-wrap { margin-top: 16px; }
.platforms .pv-bar { background: var(--border); height: 6px; margin-bottom: 10px; }

/* ── INDUSTRIES ──────────────────────────────────────────── */
.industries { background: var(--bg); }
.ind-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; max-width: var(--container-max); margin: 0 auto; }
.ind-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-card); padding: 28px 20px; text-align: center; transition: all 0.2s;
  text-decoration: none; display: flex; flex-direction: column; align-items: center;
}
.ind-card:hover { border-color: var(--purple); background: var(--white); box-shadow: 0 6px 24px rgba(107, 72, 255, 0.09); transform: translateY(-3px); }
.ind-icon { display: block; width: 32px; height: 32px; margin: 0 auto 12px; color: var(--purple); }
.ind-name { font-size: 14px; font-weight: 700; color: var(--text-primary); line-height: 1.3; margin-bottom: 8px; }
.ind-desc { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.ind-clients {
  font-size: 11px; color: var(--text-muted); line-height: 1.5;
  padding-top: 10px; border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ── PARTNERSHIPS ────────────────────────────────────────── */
.partnerships { background: var(--bg); }

/* Tier label (Strategic Partners / Technology Partners) */
.partner-tier-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.partner-tier-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* Strategic partner cards (3-col, larger) */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--container-max); margin: 0 auto 48px; }
.partner-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-card-lg); padding: 36px 32px; text-align: center; transition: all 0.2s; }
.partner-card:hover { border-color: var(--purple); box-shadow: 0 8px 32px rgba(107, 72, 255, 0.09); transform: translateY(-3px); }
.partner-card-logo {
  display: block;
  height: 55px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin: 0 auto 16px;
}
.partner-card-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }
.partner-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--purple); text-decoration: none; transition: gap 0.15s; }
.partner-card-link:hover { gap: 10px; }

/* Other partner cards (5-col, compact) */
.partner-grid--others { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: 100%; }
.partner-card--sm {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-card); padding: 24px 18px; text-align: center;
  text-decoration: none; display: flex; flex-direction: column; align-items: center;
  transition: all 0.2s;
}
.partner-card--sm:hover { border-color: var(--purple); box-shadow: 0 6px 20px rgba(107,72,255,0.09); transform: translateY(-2px); }
.partner-card--sm-logo {
  display: block;
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  margin-bottom: 14px;
}
.partner-card--sm-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 14px; }
.partner-card--sm-link { font-size: 12px; font-weight: 600; color: var(--purple); text-decoration: none; margin-top: auto; transition: opacity 0.15s; }
.partner-card--sm:hover .partner-card--sm-link { opacity: 0.75; }

/* ── RESOURCES ───────────────────────────────────────────── */
.resources { background: var(--white); }
.resources-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  max-width: 860px; margin: 0 auto;
}
.resource-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-card); padding: 28px 20px;
  text-decoration: none; display: flex; flex-direction: column;
  transition: all 0.2s;
}
.resource-card:hover {
  border-color: var(--purple); box-shadow: 0 8px 28px rgba(107,72,255,0.09);
  transform: translateY(-3px);
}
.resource-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--purple-light); border: 1px solid rgba(107,72,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); margin-bottom: 16px; flex-shrink: 0;
}
.resource-icon svg { width: 26px; height: 26px; flex-shrink: 0; }
.resource-type {
  font-size: 10px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 7px;
}
.resource-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 8px; line-height: 1.3;
}
.resource-desc {
  font-size: 12.5px; color: var(--text-secondary); line-height: 1.65;
  margin-bottom: 18px;
}
.resource-link {
  font-size: 12.5px; font-weight: 600; color: var(--purple); margin-top: auto;
}

/* ── COMPANY SECTION ─────────────────────────────────────── */
.company-section { background: var(--bg); }

.company-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; max-width: var(--container-max); margin: 0 auto 40px;
}

.company-copy-col .section-label { margin-bottom: 12px; }
.company-copy-col .section-title { margin-bottom: 16px; text-align: left; }
.company-copy-desc {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px;
}

.office-row { display: flex; align-items: flex-start; margin-bottom: 28px; }
.office-item { flex: 1; }
.office-city { font-size: 13.5px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.office-type { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; }
.office-sep { width: 1px; background: var(--border); margin: 4px 18px; align-self: stretch; }

.company-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-company {
  color: var(--text-secondary); font-size: 14px; font-weight: 500;
  text-decoration: none; padding: 11px 26px;
  border: 1.5px solid var(--border-strong); border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.7); transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-company:hover { color: var(--text-primary); border-color: var(--purple); background: var(--white); }

.company-nav-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.company-nav-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-card); padding: 24px 20px;
  text-decoration: none; transition: all 0.2s; display: block;
}
.company-nav-card:hover {
  border-color: var(--purple);
  box-shadow: 0 6px 24px rgba(107,72,255,0.09); transform: translateY(-2px);
}
.company-nav-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--purple-light); border: 1px solid rgba(107,72,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); margin-bottom: 12px; flex-shrink: 0;
}
.company-nav-icon svg { width: 26px; height: 26px; flex-shrink: 0; }
.company-nav-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.company-nav-desc { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; }

.awards-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-card); padding: 18px 32px;
  max-width: var(--container-max); margin: 0 auto;
}
.award-badge {
  font-size: 12px; font-weight: 600; color: var(--text-secondary); padding: 6px 20px;
  white-space: nowrap;
}
.award-accent { color: var(--purple); font-weight: 800; }
.award-badge-divider { width: 1px; height: 20px; background: var(--border); align-self: center; flex-shrink: 0; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wwd-pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-mockup { grid-template-columns: repeat(2, 1fr); }
  .split-grid, .platform-layout { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-item:nth-child(2) { border-right: none; }
  .result-item:nth-child(3) { border-top: 1px solid var(--border); }
  .result-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .partner-grid--others { grid-template-columns: repeat(3, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .company-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .hero { padding: 110px 24px 0; }
  .results-strip { padding: 40px 24px; }
  .wwd-pillar-grid { grid-template-columns: 1fr; }
  .solutions-grid, .partner-grid, .partner-grid--others { grid-template-columns: 1fr; }
  .hero-mockup, .ind-grid { grid-template-columns: 1fr; }
  .split-cards { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .result-item { border-right: none; border-bottom: 1px solid var(--border); }
  .result-item:last-child { border-bottom: none; }
  .resources-grid { grid-template-columns: 1fr; }
  .company-nav-grid { grid-template-columns: 1fr; }
  .office-row { flex-direction: column; gap: 14px; }
  .office-sep { display: none; }
  .awards-strip { padding: 18px 20px; }
  .award-badge { font-size: 11px; padding: 5px 14px; }
}
