/* ── MIRA TECHNICAL CONSULTING — Shared Styles ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0f1f3d;
  --blue:   #1a4a8a;
  --accent: #2e7de9;
  --white:  #ffffff;
  --light:  #f0f4fb;
  --text:   #1e2d40;
  --muted:  #5a6a7e;
  --ai:     #2196F3;
  --engops: #00C4B4;
  --pm:     #8B3DB8;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

/* ── HEADER ── */
header {
  background: var(--white);
  padding: .9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(15,31,61,.10);
  border-bottom: 1px solid #e4eaf4;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
}
.logo-star { width: 44px; height: 44px; flex-shrink: 0; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.logo-wordmark .mira {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--navy);
}
.logo-wordmark .sub {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
}
nav { display: flex; align-items: center; gap: .15rem; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  padding: .4rem .7rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
nav a:hover        { color: var(--navy); background: var(--light); }
nav a.active       { color: var(--navy); font-weight: 700; }
nav a.nav-cta      { background: var(--accent); color: white !important; margin-left: .4rem; padding: .42rem .95rem; }
nav a.nav-cta:hover{ background: #1a6bd4; }
@media (max-width: 760px) {
  nav a:not(.nav-cta) { display: none; }
}

/* ── FOOTER ── */
footer {
  background: #060e1c;
  color: #44576b;
  text-align: center;
  padding: 1.8rem 2rem;
  font-size: .83rem;
}
footer a { color: #5a85b0; text-decoration: none; }
footer a:hover { color: #8ab4e8; }

/* ── SHARED LAYOUT ── */
section { padding: 5rem 2rem; }
.container { max-width: 1080px; margin: 0 auto; }

.section-label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .9rem;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(46,125,233,.4);
}
.btn-primary:hover { background: #1a6bd4; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid #c8d6ea;
}
.btn-outline-dark:hover { background: var(--light); transform: translateY(-2px); }

/* ── CONTACT CTA SECTION ── */
.contact {
  background: linear-gradient(135deg, var(--navy), #1a3a6e 50%, #1e5baa);
  color: white;
  text-align: center;
}
.contact .section-label { color: #7eb8ff; }
.contact .section-title { color: white; }
.contact .section-sub   { color: #b8d0f5; margin: 0 auto 2.5rem; }
.email-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.35);
  color: white;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.email-btn:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.email-btn svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; flex-shrink: 0; }
.contact-note { font-size: .88rem; color: #8ab4e8; margin-top: .9rem; }

/* ── CHECK LIST (Why Mira) ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.why-item {
  background: white;
  border-radius: 10px;
  padding: 1.3rem 1.4rem;
  display: flex;
  gap: .75rem;
}
.check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .15rem;
}
.check svg { width: 12px; height: 12px; stroke: white; fill: none; stroke-width: 2.5; }
.why-item strong { display: block; font-size: .93rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.why-item span   { font-size: .87rem; color: var(--muted); }

/* ── PILLAR SERVICE LIST ── */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 2rem;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1.1rem 1.3rem;
  background: var(--white);
  border-radius: 10px;
  border: 1.5px solid #e4eaf4;
  font-size: .97rem;
}
.service-list li:hover { border-color: #b8cfe8; background: #f8fbff; }
.svc-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: .05rem;
}
.svc-title { font-weight: 700; color: var(--navy); font-size: .97rem; }
.svc-desc  { font-size: .88rem; color: var(--muted); margin-top: .15rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: .9rem 2rem;
  background: var(--light);
  border-bottom: 1px solid #dce8f4;
  font-size: .83rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .4rem; }
