/* ==========================================================================
   Advanced Creation Studio — Brand Design System
   Colors, type, and visual language sourced from the official brand kit:
   Navy #0B1120 · Blue #1E90FF · White #FFFFFF · Support Gray
   Headings: Montserrat · Body: Lato
   ========================================================================== */

:root {
  --color-navy: #0B1120;
  --color-blue: #1E90FF;
  --color-white: #FFFFFF;
  --color-gray: #A0A4AB;

  --navy: var(--color-navy);
  --navy-soft: #121B33;
  --blue: var(--color-blue);
  --blue-dark: #1670CC;
  --blue-light: #5FACFF;
  --white: var(--color-white);
  --gray: var(--color-gray);
  --gray-light: #F4F6F9;
  --gray-border: rgba(160, 164, 171, 0.28);

  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Lato', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(11, 17, 32, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 17, 32, 0.35);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

body, p, a, li, span, label, input, textarea, select {
  font-family: var(--font-body);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { color: #454B57; }

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

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

.section {
  padding: 96px 0;
}

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

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy p { color: rgba(255,255,255,0.72); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.section--gray { background: var(--gray-light); }

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 15px 28px;
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-arrow { width: 10px; height: 10px; flex-shrink: 0; }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.3);
}
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover { border-color: var(--white); transform: translateY(-2px); }

.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover { background: #000; transform: translateY(-2px); }

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-border);
}
.btn--outline-navy:hover { border-color: var(--navy); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 17, 32, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img { height: 30px; width: auto; }

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: 16px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--white); }

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--blue);
}

.nav-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--white); border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 120px 0 110px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%;
  height: 140%;
  background:
    linear-gradient(135deg, rgba(30,144,255,0.35), rgba(30,144,255,0) 60%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-chevrons {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 42%;
  pointer-events: none;
  opacity: 0.9;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 22px;
}

.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { color: var(--blue); font-style: normal; }

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.hero-tags span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  position: relative;
  padding-left: 16px;
}
.hero-tags span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 1px;
}

.hero-panel {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(6px);
}

.hero-right {
  display: grid;
  gap: 16px;
}

.hero-side {
  display: grid;
  gap: 12px;
}

.info-card {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(160, 164, 171, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.info-card.accent {
  background: rgba(30, 144, 255, 0.1);
  border-color: rgba(30, 144, 255, 0.25);
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
  color: var(--white);
}

.info-card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.hero-panel-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 18px;
}

.hero-panel li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
}
.hero-panel li:first-child { border-top: none; }

.hero-panel li .num {
  color: var(--blue);
  font-weight: 800;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
}

.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.stat {
  text-align: left;
  border-left: 3px solid var(--blue);
  padding-left: 18px;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat span {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}

/* ---------- Cards / grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

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

.card-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  background: rgba(30,144,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg { width: 22px; height: 22px; stroke: var(--blue); }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--blue);
  margin-top: 18px;
}

/* value / pillar tiles (Credible / Dignified / Strategic / Compassionate) */
.pillar {
  text-align: center;
  padding: 30px 20px;
}

.pillar-mark {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--blue);
}

.pillar h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.pillar p { font-size: 0.88rem; }

/* checklist */
.checklist { display: flex; flex-direction: column; gap: 0; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-border);
}
.checklist li:first-child { border-top: none; }

.checklist .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 2px;
}

.checklist strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 3px;
}
.checklist p { font-size: 0.9rem; margin: 0; }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-media {
  background: var(--navy);
  border-radius: 10px;
  aspect-ratio: 4/3.2;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-media img { width: 40%; opacity: 0.95; }

.split-media::after {
  content: "";
  position: absolute;
  right: -20%; bottom: -30%;
  width: 70%; height: 90%;
  background: linear-gradient(135deg, rgba(30,144,255,0.5), transparent 70%);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}

.tag-line {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue);
  font-size: 1.05rem;
  margin: 22px 0;
}

/* ---------- Quote / positioning banner ---------- */
.banner {
  background: var(--blue);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.banner h2 { color: var(--white); max-width: 780px; margin: 0 auto; }
.banner p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 18px auto 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; right: -5%;
  width: 45%; height: 100%;
  background: linear-gradient(135deg, rgba(30,144,255,0.3), transparent 65%);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
}
.cta-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: #08101F;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col li { margin-bottom: 11px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--blue-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -8%;
  width: 45%; height: 160%;
  background: linear-gradient(135deg, rgba(30,144,255,0.32), transparent 65%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero .container { position: relative; z-index: 1; max-width: 780px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.08rem; }
.breadcrumb {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--blue-light);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Form ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 15px;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  color: var(--navy);
  background: var(--gray-light);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 6px; }

.contact-info-list { display: flex; flex-direction: column; gap: 26px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-item .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(30,144,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item .icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.contact-info-item h4 { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; margin: 0; }

.placeholder-note {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
  background: rgba(30,144,255,0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ---------- Timeline (process) ---------- */
.timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding-bottom: 44px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 34px; top: 50px; bottom: 0;
  width: 1px;
  background: var(--gray-border);
}
.timeline-item:last-child::before { display: none; }
.timeline-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.timeline-body h3 { margin-bottom: 8px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Logo showcase (brand page bits reused on About) ---------- */
.swatch-row { display: flex; gap: 18px; flex-wrap: wrap; }
.swatch {
  width: 110px;
}
.swatch-color {
  height: 70px;
  border-radius: 8px;
  border: 1px solid var(--gray-border);
  margin-bottom: 8px;
}
.swatch code { font-size: 0.76rem; color: var(--gray); }

.section--divider {
  position: relative;
}

.section--divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--blue) 0%, transparent 60%);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.pillars-grid .card {
  border-top: 3px solid var(--blue);
}

.pillars-grid .card-icon {
  border-radius: var(--radius);
}

.offerings-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.offerings-split .card {
  height: 100%;
}

.offerings-split ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.offerings-split li {
  padding-left: 1rem;
  border-left: 3px solid var(--blue);
  color: var(--navy);
  line-height: 1.6;
}

.form-status.success { color: #178f6a; }
.form-status.error { color: #c0392b; }

.section--navy .checklist .check {
  border-radius: var(--radius);
}
@media (max-width: 980px) {
  .offerings-split { grid-template-columns: 1fr; }
  .hero-side { margin-top: 24px; }
  .hero-panel { max-width: 460px; }
  .split { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr 1fr; }
  .stat-strip .container { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: 1fr 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .timeline-item { grid-template-columns: 50px 1fr; }
  .timeline-num { width: 50px; height: 50px; font-size: 1rem; }
  .timeline-item::before { left: 25px; }
}

/* Mobile nav open state */
.site-header.nav-open .nav-links {
  display: flex;
  position: absolute;
  top: 78px; left: 0; right: 0;
  background: var(--navy);
  flex-direction: column;
  padding: 24px;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-header.nav-open .nav-cta .btn { display: inline-flex; }
