/* ==========================================================================
   Enterprise Agility — Shared Stylesheet
   ========================================================================== */

:root {
  --navy: #3a4459;
  --navy-dark: #2b3244;
  --navy-darker: #1f2433;
  --orange: #f2a93c;
  --orange-dark: #e0932a;
  --ink: #232838;
  --body: #4c5265;
  --muted: #7b8199;
  --line: #e6e8ef;
  --panel: #f6f7fb;
  --white: #ffffff;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px -12px rgba(31, 36, 51, 0.18);
  --shadow-sm: 0 4px 14px -6px rgba(31, 36, 51, 0.14);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 14px;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
}

.section {
  padding: 88px 0;
}

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

.section--panel {
  background: var(--panel);
}

.section--navy {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-darker));
  color: #cfd3e0;
}

.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--white); }

.section-head {
  max-width: 700px;
  margin: 0 0 48px;
}

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--navy-darker);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand { display: flex; align-items: center; }
.brand img { height: 36px; width: auto; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy);
  transition: background 0.15s, color 0.15s;
}

.main-nav a:hover { background: var(--panel); }

.main-nav a.is-active {
  background: var(--navy);
  color: var(--white);
}

.nav-cta { margin-left: 8px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-darker) 100%);
  color: #d7dae4;
  padding: 110px 0 100px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(242,169,60,0.28), rgba(242,169,60,0) 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { color: var(--white); }
.hero .lede { color: #b9bfd1; font-size: 1.2rem; max-width: 560px; }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

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

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.hero-panel li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #d7dae4;
}

.hero-panel .stat {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  min-width: 78px;
}

.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-darker) 100%);
  color: #cfd3e0;
  padding: 88px 0 76px;
}
.page-hero h1 { color: var(--white); }
.page-hero .lede { color: #b9bfd1; }

/* ---------- Cards / Grids ---------- */

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(242,169,60,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}
.card ul li { margin-bottom: 6px; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.card:hover .card-link { color: var(--orange-dark); }

/* ---------- Quote ---------- */

.quote-block {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.quote-block blockquote {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 22px;
  line-height: 1.4;
}
.quote-block cite {
  font-style: normal;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---------- Industries ---------- */

.industry-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 20px;
  text-align: center;
  transition: box-shadow .18s ease, transform .18s ease;
}
.industry-tile:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.industry-tile .tile-icon { font-size: 1.8rem; margin-bottom: 10px; }
.industry-tile h4 { margin: 0 0 6px; font-size: 1rem; }
.industry-tile p { font-size: 0.87rem; color: var(--muted); margin: 0; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--navy-darker);
  color: var(--white);
  border-radius: var(--radius);
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: #b9bfd1; margin: 0; }

/* ---------- Values list ---------- */

.value-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  min-width: 52px;
}

/* ---------- Stories / blog ---------- */

.story-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .18s ease, transform .18s ease;
}
.story-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.story-thumb {
  height: 150px;
  background: linear-gradient(135deg, var(--navy), var(--navy-darker));
  position: relative;
}
.story-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(242,169,60,0.35), transparent 60%);
}
.story-body { padding: 22px 24px 26px; }
.story-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 10px;
}
.story-body h3 { margin-bottom: 8px; }
.story-body p { font-size: 0.92rem; color: var(--muted); margin-bottom: 0; }
.story-meta { font-size: 0.8rem; color: var(--muted); margin-top: 14px; }

/* ---------- Newsletter ---------- */

.newsletter {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.newsletter form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter input[type="email"] {
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  min-width: 260px;
  font-family: var(--font);
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,169,60,0.18);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ci-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--panel);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 { margin: 0 0 4px; font-size: 0.98rem; }
.contact-info-item p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: -6px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-darker);
  color: #a9aec2;
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 32px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.92rem; transition: color .15s; }
.footer-col a:hover { color: var(--orange); }

.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: background .15s, border-color .15s;
}
.social-row a:hover { background: var(--orange); border-color: var(--orange); color: var(--navy-darker); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--orange); }
.footer-legal { display: flex; gap: 18px; }

/* ---------- Utility ---------- */

.mt-0 { margin-top: 0; }
.text-center { text-align: center; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .industry-row { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 4px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .section { padding: 60px 0; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .industry-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; text-align: center; }
  .newsletter form { width: 100%; }
  .newsletter input[type="email"] { flex: 1; min-width: 0; }
}
