/* AmplifyOps shared stylesheet.
   Ported from the production homepage inline styles so every page carries the
   same brand system: forest green, warm gold, DM Sans / DM Serif Display,
   animated signal-bar logo, and the established card and section patterns. */

:root {
  --forest:      #1B4F3E;
  --forest-deep: #122e24;
  --forest-mid:  #1e5a47;
  --gold:        #D4A024;
  --gold-light:  #e8b840;
  --teal:        #4A8C78;
  --teal-soft:   #A8D5C8;
  --pale:        #EAF3F0;
  --white:       #F5F2EC;
  --ink:         #0e2a20;
  --muted:       #6b8578;
  --line:        rgba(27,79,62,0.1);
  --line-strong: rgba(27,79,62,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a { text-decoration: none; color: inherit; }

/* ── TYPE SYSTEM ── */
.display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.display em {
  font-style: italic;
  color: var(--gold);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(18, 46, 36, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168,213,200,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.signal-bars { display: flex; align-items: flex-end; gap: 3px; height: 22px; }
.signal-bars span {
  display: block; width: 5px; border-radius: 2px;
  background: var(--gold);
  animation: barPulse 1.8s ease-in-out infinite;
  opacity: 0.25;
}
.signal-bars span:nth-child(1) { height: 8px;  animation-delay: 0s; }
.signal-bars span:nth-child(2) { height: 12px; animation-delay: 0.2s; }
.signal-bars span:nth-child(3) { height: 16px; animation-delay: 0.4s; }
.signal-bars span:nth-child(4) { height: 21px; animation-delay: 0.6s; }
@keyframes barPulse {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 1; }
}
.logo-text {
  font-weight: 600; font-size: 1.2rem; color: var(--white);
  letter-spacing: -0.015em;
}
.logo-text em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; gap: 1.7rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.65); font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal-soft); }
.nav-links a[aria-current="page"] { color: var(--white); }
.nav-cta {
  background: var(--gold); color: var(--forest-deep) !important;
  padding: 0.55rem 1.15rem; border-radius: 6px;
  font-weight: 600 !important; font-size: 0.85rem !important;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ── HOMEPAGE HERO ── */
#hero {
  min-height: 88vh;
  background: linear-gradient(155deg, var(--forest-deep) 0%, var(--forest) 55%, var(--forest-mid) 100%);
  display: flex; align-items: center;
  padding: 8rem 3rem 5rem;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 75% 35%, rgba(168,213,200,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(212,160,36,0.05) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,213,200,0.22), transparent);
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.hero-narrow { max-width: 46rem; }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white); margin-bottom: 1.75rem;
}
.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 2.5rem; font-weight: 400;
  max-width: 36rem;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; }
.hero-support {
  margin-top: 2.25rem;
  font-size: 0.85rem; letter-spacing: 0.06em;
  color: var(--teal-soft);
}
.btn-primary {
  background: var(--gold); color: var(--forest-deep);
  padding: 0.95rem 1.9rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s; display: inline-block;
  letter-spacing: 0.01em;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212,160,36,0.25); }
.btn-secondary {
  background: transparent; color: var(--teal-soft);
  border: 1.5px solid rgba(168,213,200,0.3);
  padding: 0.9rem 1.75rem; border-radius: 8px;
  font-weight: 500; font-size: 0.95rem;
  transition: all 0.2s; display: inline-block;
  cursor: pointer; font-family: inherit;
}
.btn-secondary:hover { border-color: var(--teal-soft); background: rgba(168,213,200,0.08); }
/* Light-background variants for interior sections */
.btn-secondary-dark {
  background: transparent; color: var(--forest);
  border: 1.5px solid var(--line-strong);
  padding: 0.9rem 1.75rem; border-radius: 8px;
  font-weight: 500; font-size: 0.95rem;
  transition: all 0.2s; display: inline-block;
}
.btn-secondary-dark:hover { border-color: var(--forest); background: rgba(27,79,62,0.05); }

/* ── INTERIOR PAGE HERO ── */
.page-hero {
  background: linear-gradient(155deg, var(--forest-deep) 0%, var(--forest) 60%, var(--forest-mid) 100%);
  padding: 9.5rem 3rem 4.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 75% 30%, rgba(168,213,200,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.page-kicker {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem;
}
.page-title {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  color: var(--white); margin-bottom: 1.25rem;
  max-width: 48rem;
}
.page-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; max-width: 42rem;
}

/* ── SECTIONS SHARED ── */
.section-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
section { padding: 6rem 3rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem;
}
.section-label::before {
  content: ''; width: 20px; height: 1px; background: var(--gold);
}
.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  line-height: 1.12;
}
.section-header-center {
  text-align: center; max-width: 44rem; margin: 0 auto 3rem;
}
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-label::before { display: none; }
.section-intro {
  color: var(--muted); font-size: 1.02rem; line-height: 1.7;
  margin-top: 1.25rem;
}
.prose { max-width: 44rem; }
.prose p { font-size: 1rem; color: #3e5a4a; line-height: 1.75; }
.prose p + p { margin-top: 1rem; }
.prose strong { color: var(--forest); font-weight: 600; }
.bg-pale  { background: var(--pale); }
.bg-white { background: var(--white); border-top: 1px solid var(--line); }

/* ── FRICTION / PROBLEM LIST ── */
.friction-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin: 2.5rem 0;
}
.friction-item {
  background: var(--white);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 1.25rem 1.35rem;
  font-size: 0.92rem; color: #3e5a4a; line-height: 1.6;
  display: flex; gap: 0.7rem; align-items: flex-start;
}
.friction-item::before {
  content: '\2022';
  color: var(--gold); font-weight: 700; font-size: 1.1rem;
  line-height: 1.4;
}
.closing-statement {
  max-width: 44rem;
  font-size: 1.05rem; color: var(--forest); line-height: 1.7;
  font-weight: 500;
}

/* ── PULL QUOTE / BRAND PRINCIPLE ── */
.pull-quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-style: italic; line-height: 1.35;
  color: var(--forest);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin-top: 2.25rem;
  max-width: 40rem;
}
.pull-quote-dark { color: var(--white); }

/* ── AUDIENCE CARDS ── */
.audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.6rem 1.5rem;
  transition: all 0.25s;
  display: block;
}
.audience-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(27,79,62,0.08);
  transform: translateY(-2px);
}
.audience-card-header {
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.75rem;
}
.audience-icon-wrap {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.audience-icon-wrap svg { width: 18px; height: 18px; color: var(--gold); }
.audience-name {
  font-weight: 600; color: var(--forest); font-size: 0.98rem;
  letter-spacing: -0.01em;
}
.audience-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.audience-link {
  display: inline-block; margin-top: 0.9rem;
  font-size: 0.82rem; font-weight: 600; color: var(--forest);
}
.audience-card:hover .audience-link { color: var(--gold); }

/* ── SERVICE CARDS ── */
.services-header {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: end; margin-bottom: 3.5rem;
}
.services-intro { color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.services-intro strong { color: var(--forest); font-weight: 600; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 2rem 1.9rem; transition: all 0.25s;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 12px 36px rgba(27,79,62,0.1);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.35rem;
  color: var(--gold);
  box-shadow: 0 4px 12px rgba(27,79,62,0.18);
}
.service-icon svg { width: 22px; height: 22px; }
.service-num {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.service-name {
  font-weight: 600; font-size: 1.15rem; color: var(--forest);
  margin-bottom: 0.7rem; letter-spacing: -0.015em; line-height: 1.25;
}
.service-desc {
  font-size: 0.92rem; color: #3e5a4a;
  line-height: 1.7; flex-grow: 1;
}
.service-details {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.service-details span {
  display: inline-block;
  margin-right: 0.75rem;
  margin-bottom: 0.3rem;
}
.service-details span::before {
  content: '\2022';
  color: var(--gold);
  margin-right: 0.35rem;
  font-weight: 700;
}
.service-link {
  margin-top: 1.1rem;
  font-size: 0.85rem; font-weight: 600; color: var(--forest);
}
.service-card:hover .service-link { color: var(--gold); }

/* ── PROCESS / STEPS ── */
.process-grid-six {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 2rem 1.75rem; transition: all 0.25s;
  display: flex; flex-direction: column;
}
.process-step:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(27,79,62,0.08);
  transform: translateY(-2px);
}
.process-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest); color: var(--gold);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.process-name {
  font-weight: 600; font-size: 1.2rem; color: var(--forest);
  margin-bottom: 0.6rem; letter-spacing: -0.015em;
}
.process-desc { font-size: 0.9rem; color: #3e5a4a; line-height: 1.7; }
.process-handoff-note {
  max-width: 44rem; margin: 3rem auto 0;
  background: var(--pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 1.35rem 1.6rem;
}
.process-handoff-note p { font-size: 0.92rem; color: var(--forest); line-height: 1.7; }
.process-handoff-note strong {
  color: var(--forest); font-weight: 600;
  display: block; margin-bottom: 0.3rem;
  font-size: 0.82rem; letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── WHY / PRINCIPLES ── */
.why-grid-five {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.why-card {
  background: var(--white); border-radius: 12px; padding: 1.7rem;
  border: 1px solid rgba(27,79,62,0.06);
}
.why-card h3 {
  font-weight: 600; color: var(--forest); font-size: 1rem;
  margin-bottom: 0.55rem; letter-spacing: -0.015em;
}
.why-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── CASE STUDY (dark sections) ── */
.dark-section { background: var(--forest-deep); color: var(--white); }
.dark-section .section-title { color: var(--white); }
.case-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-bottom: 3rem;
}
.case-subtitle {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem; margin-top: 0.9rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
}
.case-intro {
  color: rgba(255,255,255,0.68);
  font-size: 1.02rem; line-height: 1.75;
}
.case-intro strong { color: var(--teal-soft); font-weight: 600; }
.case-intro a { color: var(--teal-soft); text-decoration: underline; text-underline-offset: 3px; }

.challenge-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(168,213,200,0.1);
  border-radius: 10px; overflow: hidden; margin-bottom: 3rem;
}
.challenge-item {
  background: rgba(255,255,255,0.03);
  padding: 1.4rem 1rem; text-align: center;
}
.challenge-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(212,160,36,0.15);
  border: 1px solid rgba(212,160,36,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--gold);
}
.challenge-icon svg { width: 18px; height: 18px; }
.challenge-item .ci-text { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.45; }

.schematic {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(168,213,200,0.12);
  border-radius: 14px; padding: 2.5rem 2rem;
  margin-bottom: 3rem;
}
.schematic-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-soft);
  margin-bottom: 1.75rem; text-align: center;
}
.schematic-flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem; align-items: stretch;
}
.schematic-node {
  background: rgba(168,213,200,0.05);
  border: 1px solid rgba(168,213,200,0.2);
  border-radius: 10px; padding: 1.4rem 1.1rem;
  text-align: center;
}
.schematic-node .node-badge {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem;
  color: var(--forest-deep);
}
.schematic-node .node-badge svg { width: 20px; height: 20px; }
.schematic-node .node-title {
  font-size: 0.9rem; font-weight: 600; color: var(--white);
  margin-bottom: 0.35rem; letter-spacing: -0.01em;
}
.schematic-node .node-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.55; }
.schematic-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  opacity: 0.5;
}
.schematic-note {
  font-size: 0.76rem; color: rgba(255,255,255,0.4);
  text-align: center; margin-top: 1.75rem;
  font-style: italic;
}

.built-title {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-soft); margin-bottom: 1.35rem;
}
.built-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-bottom: 3rem;
}
.built-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168,213,200,0.1);
  border-radius: 12px; padding: 1.75rem;
}
.built-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: var(--forest-deep);
  font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}
.built-name {
  font-weight: 600; color: var(--white);
  font-size: 1rem; margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.built-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

.export-mock {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(168,213,200,0.12);
  border-radius: 14px; padding: 2rem;
  margin-bottom: 3rem;
}
.export-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.35rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(168,213,200,0.1);
}
.export-title-block .export-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-soft); margin-bottom: 0.3rem;
}
.export-title-block .export-title {
  font-size: 0.98rem; font-weight: 600; color: var(--white);
  letter-spacing: -0.01em;
}
.export-badge {
  font-size: 0.72rem; font-weight: 600;
  color: var(--gold); background: rgba(212,160,36,0.12);
  padding: 0.35rem 0.7rem; border-radius: 4px;
  letter-spacing: 0.05em;
}
.export-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.export-table th {
  text-align: left; padding: 0.6rem 0.75rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(168,213,200,0.75);
  border-bottom: 1px solid rgba(168,213,200,0.1);
}
.export-table td {
  padding: 0.7rem 0.75rem;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(168,213,200,0.05);
  font-variant-numeric: tabular-nums;
}
.export-table tr:last-child td { border-bottom: none; }
.export-table td.status { color: var(--teal-soft); font-weight: 600; }
.export-footer {
  font-size: 0.74rem; color: rgba(255,255,255,0.4);
  margin-top: 1rem; text-align: center;
  font-style: italic;
}

.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(168,213,200,0.1);
  border-bottom: 1px solid rgba(168,213,200,0.1);
}
.stat-block { text-align: center; }
.stat-block .num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.3rem; font-weight: 400; color: var(--gold);
  letter-spacing: -0.03em; line-height: 1;
}
.stat-block .lbl {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-top: 0.5rem; line-height: 1.4;
}

.compliance-box {
  background: rgba(168,213,200,0.06);
  border: 1px solid rgba(168,213,200,0.15);
  border-left: 3px solid var(--teal-soft);
  border-radius: 10px;
  padding: 1.75rem 1.9rem; margin-bottom: 2.5rem;
}
.compliance-box h4 {
  color: var(--teal-soft); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.compliance-box p { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.7; }

/* Work index card */
.work-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 2.25rem; transition: all 0.25s;
  max-width: 44rem;
}
.work-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(27,79,62,0.1);
  transform: translateY(-2px);
}
.work-card-category {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
.work-card-title {
  font-size: 1.35rem; font-weight: 600; color: var(--forest);
  letter-spacing: -0.015em; margin-bottom: 0.4rem;
}
.work-card-descriptor {
  font-size: 0.8rem; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.work-card p { font-size: 0.94rem; color: #3e5a4a; line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  position: relative; overflow: hidden;
  padding: 5.5rem 3rem;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(212,160,36,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(168,213,200,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  max-width: 900px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.cta-kicker {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.cta-title {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.cta-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem; line-height: 1.7;
  max-width: 560px; margin: 0 auto 2.25rem;
}
.cta-meta {
  display: flex; justify-content: center; gap: 2rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  margin-bottom: 2.25rem; flex-wrap: wrap;
}
.cta-meta-item { display: flex; align-items: center; gap: 0.5rem; }
.cta-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.cta-actions { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }
.cta-closing {
  margin-top: 2.25rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 2.35rem; transition: all 0.25s;
}
.team-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(27,79,62,0.08);
}
.team-name {
  font-size: 1.3rem; font-weight: 600; color: var(--forest);
  letter-spacing: -0.02em; margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.35rem;
}
.team-bio { font-size: 0.94rem; color: #3e5a4a; line-height: 1.75; }
.team-bio p + p { margin-top: 0.9rem; }
.team-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.team-tag {
  font-size: 0.72rem; font-weight: 500;
  background: var(--pale); color: var(--forest);
  padding: 0.35rem 0.8rem; border-radius: 100px;
}

/* MVV panel */
.mvv-panel {
  background: var(--forest-deep); color: var(--white);
  border-radius: 16px; padding: 2.5rem;
  position: relative; overflow: hidden;
}
.mvv-panel::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,36,0.12), transparent 70%);
}
.mvv-block { position: relative; z-index: 1; }
.mvv-block + .mvv-block {
  margin-top: 1.75rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(168,213,200,0.12);
}
.mvv-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-soft);
  margin-bottom: 0.7rem;
}
.mvv-text { font-size: 0.98rem; color: rgba(255,255,255,0.85); line-height: 1.7; }
.mvv-text strong { color: var(--gold); font-weight: 500; }
.about-layout {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: start;
}

/* ── CONTACT ── */
.contact-section { background: var(--forest); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}
.contact-title {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--white);
  line-height: 1.15; margin-bottom: 1.1rem;
}
.contact-sub {
  color: rgba(255,255,255,0.6); font-size: 1rem;
  line-height: 1.7; margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--forest-deep);
}
.contact-icon svg { width: 17px; height: 17px; }
.contact-lbl {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 0.2rem;
}
.contact-val {
  font-size: 0.94rem; color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
a.contact-val:hover { color: var(--teal-soft); }

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
}
.form-input, .form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(168,213,200,0.18);
  border-radius: 8px; padding: 0.85rem 1.05rem;
  color: var(--white); font-family: inherit;
  font-size: 0.94rem; transition: all 0.2s; outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-textarea:focus {
  border-color: rgba(212,160,36,0.5);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(212,160,36,0.12);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-consent {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  line-height: 1.55; padding: 0.25rem 0;
}
.form-consent input {
  margin-top: 0.25rem; accent-color: var(--gold);
  flex-shrink: 0;
}
.form-submit {
  background: var(--gold); color: var(--forest-deep);
  border: none; border-radius: 8px;
  padding: 0.95rem 1.5rem; font-family: inherit;
  font-size: 0.96rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212,160,36,0.25); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note {
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
  text-align: center; margin-top: -0.25rem;
}
#form-success {
  display: none;
  background: rgba(168,213,200,0.07);
  border: 1px solid rgba(168,213,200,0.22);
  border-left: 3px solid var(--teal-soft);
  border-radius: 12px; padding: 2.5rem 2rem;
  text-align: center;
}
#form-success .success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--forest-deep);
}
#form-success h3 {
  color: var(--white); font-size: 1.15rem; font-weight: 600;
  margin-bottom: 0.65rem;
}
#form-success p {
  color: rgba(255,255,255,0.6); font-size: 0.92rem;
  line-height: 1.7;
}
#form-success a { color: var(--teal-soft); }

/* ── FOOTER ── */
footer {
  background: var(--forest-deep);
  padding: 2.25rem 3rem;
  border-top: 1px solid rgba(168,213,200,0.08);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.footer-tagline {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  font-style: italic;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-copy a:hover { color: rgba(255,255,255,0.6); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
  section { padding: 4.5rem 1.5rem; }
  #hero { padding: 7rem 1.5rem 4rem; }
  .page-hero { padding: 8rem 1.5rem 3.5rem; }
  .cta-band { padding: 4.5rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  .services-header, .case-header, .contact-inner, .about-layout {
    grid-template-columns: 1fr; gap: 2.5rem;
  }
  .audience-grid, .services-grid, .built-grid, .stats-strip, .team-grid,
  .process-grid-six, .friction-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid-five { grid-template-columns: 1fr 1fr; }
  .challenge-grid { grid-template-columns: repeat(2, 1fr); }
  .schematic-flow { grid-template-columns: 1fr; gap: 0.75rem; }
  .schematic-arrow { transform: rotate(90deg); padding: 0.25rem 0; }
  .export-table { font-size: 0.74rem; }
  .export-table th, .export-table td { padding: 0.55rem 0.5rem; }
}
@media (max-width: 560px) {
  .audience-grid, .services-grid, .built-grid, .stats-strip, .team-grid,
  .process-grid-six, .friction-grid, .why-grid-five {
    grid-template-columns: 1fr;
  }
  .challenge-grid { grid-template-columns: 1fr 1fr; }
}

/* Respect the user's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* Logo bars: static at full strength (base opacity is 0.25) */
  .signal-bars span { animation: none; opacity: 1; }
}
