/* CAiM CloudAI Master – palette from CloudAI Master (navy, blue, red) */
:root {
  --navy: #1a2942;
  --blue: #1556b8;
  --blue2: #1e6fe0;
  --red: #c0392b;
  --red2: #e74c3c;
  --light: #f4f7fc;
  --border: #dde4f0;
  --gray: #5a6a82;
  --white: #fff;
  /* mapped for existing components */
  --bg-dark: #1a2942;
  --bg-card: #1e3254;
  --bg-elevated: #253d5c;
  --bg-body: #162238;
  --text-primary: #f0f4f8;
  --text-muted: #94a3b8;
  --accent-red: #e74c3c;
  --accent-red-hover: #c0392b;
  --accent-cyan: #22d3ee;
  --accent-cyan-dim: rgba(34, 211, 238, 0.12);
  --charcoal: #1e293b;
  --radius: 12px;
  --font: "Barlow", "DM Sans", system-ui, sans-serif;
  --font-cond: "Barlow Condensed", "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1200px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(26, 41, 66, 0.08);
  backdrop-filter: blur(12px);
}

.site-header .nav-link {
  color: var(--navy);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--blue);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo-link {
  display: block;
}

.logo-main {
  height: 64px;
  width: auto;
  max-height: 72px;
  display: block;
  object-fit: contain;
}

@media (max-width: 600px) {
  .logo-main {
    height: 52px;
    max-height: 56px;
  }
}

.nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-red);
}

/* Hero – full-width navy bg; inner .hero-grid caps width (fixes huge gaps on desktop) */
.hero {
  padding: 3rem 0 4rem;
  min-height: auto;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero-l {
  position: relative;
  z-index: 1;
  padding: 0.5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red2);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-cond);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}

.hero-title .tc { color: var(--white); }
.hero-title .ta { color: var(--red2); }
.hero-title .tm { color: var(--white); }

.hero-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.62);
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero-desc strong {
  color: var(--white);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero right – vis-card (AI hexagon + rotating rings) */
.hero-r {
  position: relative;
  z-index: 1;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vis-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
  padding: 28px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
}

.vis-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red2));
  border-radius: 3px 3px 0 0;
}

.vis-inner {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vis-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vis-ring.r1 {
  width: 88%;
  height: 88%;
  border-color: rgba(21, 86, 184, .2);
  animation: vis-spin 22s linear infinite;
}

.vis-ring.r2 {
  width: 64%;
  height: 64%;
  border-color: rgba(192, 57, 43, .2);
  animation: vis-spin 14s linear infinite reverse;
}

.vis-ring.r3 {
  width: 43%;
  height: 43%;
  border-color: rgba(21, 86, 184, .25);
  animation: vis-spin 9s linear infinite;
}

.vis-ring .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  top: -4px;
  left: calc(50% - 4px);
}

.vis-ring .dot-red {
  background: var(--red2);
  box-shadow: 0 0 10px var(--red2);
  top: auto;
  bottom: -4px;
  right: calc(50% - 4px);
  left: auto;
}

@keyframes vis-spin {
  from { transform: translate(-50%, -50%) rotate(0); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.vis-hx {
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
  z-index: 2;
}

.vis-hx-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,86,184,.15), rgba(192,57,43,.1));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: vis-hx-pulse 3s ease-in-out infinite;
}

@keyframes vis-hx-pulse {
  0%, 100% { opacity: .8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.vis-hx-l {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.vis-hx-n {
  font-family: var(--font-cond);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.vis-chip {
  position: absolute;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  padding: 7px 13px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  box-shadow: 0 3px 12px rgba(0,0,0,.2);
  white-space: nowrap;
  border-radius: 2px;
}

.vis-chip.c1 { top: 8%; right: 0; animation: vis-chip-float 6s ease-in-out infinite; }
.vis-chip.c2 { bottom: 8%; left: 0; animation: vis-chip-float 7s 1s ease-in-out infinite; }
.vis-chip.c3 { top: 42%; right: -2%; animation: vis-chip-float 5s 2s ease-in-out infinite; }

@keyframes vis-chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.vis-foot {
  display: flex;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 18px;
  padding-top: 12px;
}

.vis-foot .vf {
  flex: 1;
  padding: 8px 10px;
  text-align: center;
}

.vis-foot .vf:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.1);
}

.vis-foot .vf-n {
  font-family: var(--font-cond);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  display: block;
}

.vis-foot .vf-l {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Ticker */
.ticker {
  background: var(--navy);
  padding: 11px 0;
  border-top: 3px solid var(--red2);
  overflow: hidden;
}

.t-track {
  display: flex;
  gap: 40px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.t-item {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.t-item::after {
  content: "◆";
  color: var(--red2);
  opacity: 0.6;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Stats row (light strip) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
  background: var(--light);
}

.stats-row .sr {
  padding: 2rem 5%;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.stats-row .sr:last-child {
  border-right: none;
}

.stats-row .sr:hover {
  background: rgba(21, 86, 184, 0.04);
}

.stats-row .sr-n {
  font-family: var(--font-cond);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}

.stats-row .sr-l {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Offerings subsection (e.g. cyber services) */
.offerings-subsection {
  padding: 4rem 0;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.offerings-subsection .subsection-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.offerings-subsection .subsection-head h2 {
  font-family: var(--font-cond);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.offerings-subsection .subsection-head p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray);
}

.cyber-teaser {
  padding: 3rem 0;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.cyber-teaser .section-title {
  color: var(--navy);
}

.cyber-teaser .section-intro {
  color: var(--gray);
}

.cyber-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
  text-align: left;
}

.cyber-teaser-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  border-left: 4px solid var(--blue);
}

@media (max-width: 768px) {
  .cyber-teaser-grid {
    grid-template-columns: 1fr;
  }
}

/* Cyber section: Microsoft technology stack, contact (technology), FAQs */
.offerings-subsection .cyber-tech-intro {
  margin-top: 3rem;
  padding: 2rem 1.75rem;
  background: var(--navy);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.offerings-subsection .cyber-tech-intro .cyber-tech-h3 {
  font-family: var(--font-cond);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1rem;
}

.offerings-subsection .cyber-tech-intro p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.offerings-subsection .cyber-tech-intro p:last-child {
  margin-bottom: 0;
}

.cyber-stack-title {
  font-family: var(--font-cond);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin: 2.5rem 0 0.5rem;
  text-align: center;
}

.cyber-stack-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.65;
}

.cyber-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.cyber-tech-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border-top: 4px solid var(--blue);
  box-shadow: 0 4px 18px rgba(26, 41, 66, 0.06);
}

.cyber-tech-card h4 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.cyber-tech-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray);
}

.cyber-contact-tech {
  margin-top: 2.75rem;
  padding: 2.25rem 1.75rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a6e 100%);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cyber-contact-tech-title {
  font-family: var(--font-cond);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.cyber-contact-tech-desc {
  margin: 0 auto 1.5rem;
  max-width: 640px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.cyber-contact-tech .btn-primary {
  background: var(--red2);
}

.cyber-contact-tech .btn-primary:hover {
  background: var(--red);
}

.cyber-faq-block {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.cyber-faq-title {
  font-family: var(--font-cond);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 1.25rem;
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 800;
  color: var(--blue);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray);
}

@media (max-width: 768px) {
  .cyber-tech-grid {
    grid-template-columns: 1fr;
  }
}

/* Offerings hub: sub-nav + technologies + cyber preview */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hub-crumb {
  font-size: 0.875rem;
  margin: 0 0 0.5rem;
}

.hub-crumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.hub-crumb a:hover {
  color: var(--accent-red);
}

.offerings-hub-nav {
  position: sticky;
  top: 73px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(26, 41, 66, 0.06);
}

.offerings-hub-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 0.85rem 1.5rem;
  justify-content: center;
}

.offerings-hub-inner a {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.offerings-hub-inner a:hover {
  color: var(--blue);
  border-bottom-color: var(--red2);
}

.tech-platforms-section {
  padding: 3rem 0;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.tech-platforms-title {
  font-family: var(--font-cond);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin: 0 0 0.75rem;
}

.tech-platforms-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.65;
}

.tech-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
}

.tech-platform-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border-top: 3px solid var(--blue);
}

.tech-platform-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.tech-platform-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray);
}

.tech-sub {
  font-weight: 600;
  font-size: 0.85em;
  color: var(--gray);
}

.tech-platform-card-wide {
  grid-column: 1 / -1;
  border-top-color: var(--red2);
}

@media (min-width: 900px) {
  .tech-platform-card-wide {
    grid-column: span 2;
  }
}

.section-anchor-title {
  font-family: var(--font-cond);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 1.5rem;
  text-align: center;
}

.cyber-preview-section {
  padding: 3rem 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
}

.cyber-preview-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cyber-preview-copy h2 {
  font-family: var(--font-cond);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 900;
  color: var(--white);
  margin: 0 0 1rem;
}

.cyber-preview-copy > p {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.cyber-preview-bullets {
  text-align: left;
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.subsection-lead-only {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.65;
}

/* Stats strip */
.stats-strip {
  padding: 2.5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin: 0 0 0.25rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* Section titles */
.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.section-intro {
  margin: 0 auto 2.5rem;
  max-width: 600px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Console / pillars grid */
.console-section {
  padding: 4rem 0;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.console-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.console-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
}

.console-card .icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--accent-cyan);
}

.console-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.console-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Lifecycle (Discover / Build / Run) */
.lifecycle-section {
  padding: 4rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.lifecycle-item {
  text-align: center;
  padding: 1.5rem;
}

.lifecycle-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.lifecycle-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-red-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-red);
  border: 2px solid var(--accent-red);
}

.btn-secondary:hover {
  background: var(--accent-red);
  color: #fff;
}

/* Enterprise Solutions / Offerings */
.offerings-section {
  padding: 4rem 0;
}

.offerings-core-light {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.offerings-core-light .section-anchor-title {
  color: var(--navy);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.offering-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.offering-card:hover {
  border-color: rgba(231, 76, 60, 0.3);
  transform: translateY(-2px);
}

.offering-card.featured {
  border-color: rgba(231, 76, 60, 0.4);
}

.offering-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-red);
  background: rgba(231, 76, 60, 0.2);
  border-radius: 6px;
}

.offering-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.offering-card .sub {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.offering-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.offering-card ul li {
  margin-bottom: 0.35rem;
}

/* Why CAiLM pillars */
.pillars-section {
  padding: 4rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}

.pillar-card .symbol {
  font-size: 1.5rem;
  color: var(--accent-red);
  margin-bottom: 0.75rem;
}

.pillar-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pillar-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Explained / checkmarks */
.explained-section {
  padding: 4rem 0;
}

.explained-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.explained-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
}

.explained-item .check {
  color: var(--accent-red);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.explained-icon {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.icon-governance {
  color: var(--accent-red);
}

.icon-mlops {
  color: #7dd3fc;
}

.icon-visibility {
  color: #22d3ee;
}

.icon-dynatag {
  color: #c084fc;
}

.explained-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.explained-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.explained-item p + p {
  margin-top: 0.75rem;
}

.section-divider-icons {
  margin: 1.25rem 0 0;
  font-size: 1.25rem;
  letter-spacing: 0.35rem;
  color: var(--accent-red);
}

.cta-option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.section-footnote {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* What you get */
.benefits-section {
  padding: 4rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
}

.benefit-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.benefit-item .sub {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: var(--accent-red);
}

.benefit-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Process steps */
.process-section {
  padding: 4rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.process-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent-red);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.process-step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Product (CAiLM) block */
.product {
  padding: 4rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.product-content {
  padding: 0 1rem;
}

.product-title {
  margin: 0 0 0.25rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.product-tagline {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--accent-red);
  font-weight: 500;
}

.product-desc {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* CTA */
.cta {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.cta-inner {
  text-align: center;
}

.cta-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
}

.cta-text {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

/* Contact form */
.contact-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.contact-form-wrap {
  max-width: 480px;
  margin: 2rem auto 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-ai-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact-ai-note strong {
  color: var(--accent-red);
}

.contact-form-note {
  margin-top: 1.25rem !important;
  font-size: 0.9375rem !important;
  color: var(--text-muted) !important;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  text-align: left;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  max-height: 64px;
  opacity: 0.95;
  object-fit: contain;
}

.footer-tagline {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin: 0.5rem 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-red);
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-ownership {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-copy .sep {
  margin: 0 0.5rem;
  opacity: 0.6;
}

/* Page hero */
.page-hero {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
}

.page-hero p {
  margin: 0;
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.about-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.about-section h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.about-section p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  max-width: 65ch;
}

.about-section p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    padding: 2.5rem 0 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-r {
    padding: 0;
    order: -1;
  }

  .vis-card {
    max-width: 340px;
    margin: 0 auto;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row .sr:nth-child(2) {
    border-right: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .console-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-visual {
    order: -1;
  }

  .product-logo {
    max-width: 220px;
  }

  .lifecycle-grid {
    grid-template-columns: 1fr;
  }

  .explained-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .console-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 1.25rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-row .sr {
    border-right: none;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }
}
