/* ============================================================
   Kincaid Solutions — Campaign Review Site
   Colors: Navy #1B2B5E | Teal #1F8A82 | Gold #C9A84C
   ============================================================ */

/* ── Password Gate ────────────────────────────────────────── */
#passwordGate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #22446e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gate-card {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  overflow: hidden;
}

.gate-logo {
  background: var(--navy);
  padding: 36px 32px 28px;
  text-align: center;
}
.gate-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.gate-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
}
.gate-tag {
  font-size: .8rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 4px;
}

.gate-body {
  padding: 32px 32px 24px;
}
.gate-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.gate-sub {
  font-size: .875rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.gate-field {
  position: relative;
  margin-bottom: 12px;
}
.gate-input {
  width: 100%;
  padding: 13px 48px 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--navy);
  outline: none;
  transition: border-color .2s;
  background: var(--gray-50);
}
.gate-input:focus {
  border-color: var(--teal);
  background: var(--white);
}
.gate-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: .6;
  padding: 4px;
}
.gate-toggle:hover { opacity: 1; }

.gate-error {
  font-size: .82rem;
  color: #DC2626;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #FEF2F2;
  border-radius: 8px;
  border-left: 3px solid #DC2626;
}

.gate-btn {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .02em;
}
.gate-btn:hover {
  background: var(--teal);
  transform: translateY(-1px);
}
.gate-btn:active { transform: none; }

.gate-footer {
  padding: 16px 32px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  font-size: .78rem;
  color: var(--gray-600);
  text-align: center;
}
.gate-footer a { color: var(--teal); }

/* Shake animation for wrong password */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}
.shake { animation: shake .45s ease; }

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1B2B5E;
  --navy-dark: #121e45;
  --teal:    #1F8A82;
  --teal-light: #26a99f;
  --gold:    #C9A84C;
  --gold-light: #e2c36d;
  --bg:      #F5F7FA;
  --white:   #ffffff;
  --gray-50: #F9FAFB;
  --gray-100:#F3F4F6;
  --gray-200:#E5E7EB;
  --gray-400:#9CA3AF;
  --gray-600:#4B5563;
  --gray-800:#1F2937;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --radius:  12px;
  --radius-lg: 18px;
  --transition: .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--gray-800);
  line-height: 1.65;
  font-size: 16px;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-light); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
p  { margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }
section:nth-child(even) { background: var(--white); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 680px;
  margin-bottom: 48px;
}

/* ── Navigation ───────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  flex-direction: column;
}
.nav-brand .brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.nav-brand .brand-tag {
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .08em;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #22446e 100%);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(31,138,130,.25) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 16px;
}
.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  max-width: 600px;
  margin-bottom: 40px;
}

/* Stats row */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.stat-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 12px 18px;
}
.stat-chip .stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-chip .stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  line-height: 1.3;
}

/* CTA Buttons */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: var(--white);
}

/* ── Executive Summary ────────────────────────────────────── */
#summary {
  background: var(--white);
}

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

.summary-text p { color: var(--gray-600); }

.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 10px;
  border-left: 3px solid var(--teal);
}
.outcome-item .icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.outcome-item p {
  font-size: .9rem;
  color: var(--gray-600);
  margin: 0;
}

/* ── Campaigns Section ────────────────────────────────────── */
#campaigns {
  background: var(--bg);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.campaign-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.campaign-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--teal);
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.card-icon.c1 { background: #EEF2FF; }
.card-icon.c2 { background: #ECFDF5; }
.card-icon.c3 { background: #FFF7ED; }
.card-icon.c4 { background: #F0F9FF; }
.card-icon.c5 { background: #FEF9EE; }
.card-icon.c6 { background: #F0FDF4; }
.card-icon.c7 { background: #FDF4FF; }

.card-meta .campaign-num {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 2px;
}
.card-meta h3 { font-size: 1.05rem; margin: 0; }

.card-purpose {
  font-size: .9rem;
  color: var(--gray-600);
}

.card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  background: var(--bg);
  color: var(--navy);
  border: 1px solid var(--gray-200);
}
.pill.navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pill.teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.pill.gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.card-value {
  font-size: .85rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
  margin-top: 4px;
}
.card-value strong { color: var(--navy); }

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: auto;
}
.card-cta:hover { color: var(--teal-light); }

/* ── Campaign Detail ──────────────────────────────────────── */
#details {
  background: var(--white);
}

.detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0;
}

.tab-btn {
  padding: 10px 18px;
  border: none;
  background: transparent;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  border-radius: 6px 6px 0 0;
}
.tab-btn:hover { color: var(--navy); background: var(--gray-50); }
.tab-btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  background: transparent;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.detail-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

.detail-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}

.detail-info-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-200);
  margin-bottom: 16px;
}
.detail-info-card h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .875rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--gray-600); }
.info-row .value { font-weight: 600; color: var(--navy); text-align: right; max-width: 55%; }

.value-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: #ECFDF5;
  color: #065F46;
}

.detail-main {}

.detail-section {
  margin-bottom: 28px;
}
.detail-section h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Workflow steps */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  position: relative;
}
.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 13px;
  top: 34px;
  bottom: -4px;
  width: 2px;
  background: var(--gray-200);
}
.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.step-dot.exit { background: var(--gold); color: var(--navy); }
.step-content { font-size: .9rem; color: var(--gray-600); padding-top: 4px; }
.step-content strong { color: var(--navy); }

/* Email accordion */
.email-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.email-accordion {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.email-accordion:hover { border-color: var(--teal); }

.email-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.email-header:hover { background: var(--gray-50); }
.email-header.open { background: var(--gray-50); }

.email-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.email-num.sms { background: var(--teal); }

.email-info { flex: 1; min-width: 0; }
.email-info .email-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.email-info .email-subject {
  font-size: .78rem;
  color: var(--gray-600);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.email-timing {
  font-size: .75rem;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
  text-align: right;
}
.email-chevron {
  font-size: .75rem;
  color: var(--gray-400);
  transition: transform .22s;
  flex-shrink: 0;
}
.email-header.open .email-chevron { transform: rotate(180deg); }

.email-body {
  display: none;
  padding: 0 18px 18px;
  background: var(--gray-50);
}
.email-body.open { display: block; }

.email-meta-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  font-size: .85rem;
}
.email-meta-table td {
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
.email-meta-table td:first-child {
  font-weight: 600;
  color: var(--gray-600);
  width: 130px;
  padding-right: 12px;
}

.preview-tag {
  display: inline-block;
  background: var(--gray-100);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: .78rem;
  color: var(--gray-600);
  font-style: italic;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .78rem;
  font-weight: 600;
}

/* Value tag */
.biz-value-tag {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  background: #F0FDF4;
  border-radius: 8px;
  border-left: 3px solid #22C55E;
  margin-bottom: 8px;
  font-size: .875rem;
  color: var(--gray-700);
}
.biz-value-tag::before {
  content: '✓';
  color: #22C55E;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Business Outcomes ────────────────────────────────────── */
#outcomes {
  background: var(--navy);
  color: var(--white);
}
#outcomes .section-label { color: var(--gold); }
#outcomes .section-title { color: var(--white); }
#outcomes .section-sub { color: rgba(255,255,255,.7); }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.outcome-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.outcome-card:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gold);
}
.outcome-card .oc-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.outcome-card h4 {
  color: var(--gold);
  font-size: .95rem;
  margin-bottom: 6px;
}
.outcome-card p {
  color: rgba(255,255,255,.72);
  font-size: .875rem;
  margin: 0;
}

/* ── Custom Values ────────────────────────────────────────── */
#custom-values {
  background: var(--bg);
}

.cv-intro {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-200);
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: .9rem;
  color: var(--gray-600);
}
.cv-intro .cv-intro-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cv-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.cv-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .875rem;
}
.cv-table thead tr {
  background: var(--navy);
  color: var(--white);
}
.cv-table th {
  padding: 12px 18px;
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cv-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
  vertical-align: top;
}
.cv-table tbody tr:last-child td { border-bottom: none; }
.cv-table tbody tr:hover { background: var(--gray-50); }
.cv-table td:first-child { font-weight: 600; color: var(--navy); }
.cv-table td:last-child { color: var(--teal); font-family: monospace; font-size: .82rem; }

.status-ok  { color: #065F46; font-weight: 700; }
.status-pending { color: #92400E; font-weight: 700; }

/* ── Approval Checklist ───────────────────────────────────── */
#checklist {
  background: var(--white);
}

.checklist-intro {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.checklist-item:hover { border-color: var(--teal); }

.check-box {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--gray-400);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--white);
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
}
.check-box.checked { background: var(--teal); border-color: var(--teal); }

.check-content .check-title {
  font-weight: 600;
  color: var(--navy);
  font-size: .9rem;
  display: block;
  margin-bottom: 4px;
}
.check-content .check-desc {
  font-size: .82rem;
  color: var(--gray-600);
}

.checklist-progress {
  margin-top: 24px;
  padding: 20px;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
}
.progress-bar-wrap {
  flex: 1;
  background: rgba(255,255,255,.2);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
  transition: width .4s ease;
  width: 0%;
}
.progress-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 80px;
  text-align: right;
}

/* ── Next Steps ───────────────────────────────────────────── */
#next-steps {
  background: var(--bg);
}

.next-steps-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.phase-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
}
.phase-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phase-badge {
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--navy);
  color: var(--white);
}

.workflow-item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workflow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--gray-600);
}
.workflow-item .wi-icon {
  width: 32px;
  height: 32px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.next-cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  position: sticky;
  top: 80px;
}
.next-cta-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.next-cta-card p { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 24px; }
.next-cta-card .contact-info {
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}
.next-cta-card .contact-info p {
  font-size: .85rem;
  margin-bottom: 4px;
  color: rgba(255,255,255,.9);
}
.next-cta-card .contact-info p:last-child { margin-bottom: 0; }
.next-cta-card .contact-info a {
  color: var(--gold-light);
  font-weight: 600;
}
.next-cta-card .btn-gold {
  width: 100%;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  padding: 13px;
}
.next-cta-card .btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.6);
  padding: 40px 0;
  text-align: center;
  font-size: .875rem;
}
footer .footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
footer .footer-tag {
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
}
footer p { margin-bottom: 4px; }

/* ── Utilities ────────────────────────────────────────────── */
.text-teal  { color: var(--teal); }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.font-bold  { font-weight: 700; }
.mt-0 { margin-top: 0; }
.gap-8 { gap: 8px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .summary-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .checklist-grid { grid-template-columns: 1fr; }
  .next-steps-layout { grid-template-columns: 1fr; }
  .next-cta-card { position: static; }
}

@media (max-width: 700px) {
  section { padding: 52px 0; }
  .nav-links { display: none; flex-direction: column; background: var(--navy-dark); position: absolute; top: 100%; left: 0; right: 0; padding: 12px 24px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; }
  .hero-stats { gap: 10px; }
  .stat-chip .stat-num { font-size: 1.2rem; }
  .detail-tabs { gap: 4px; }
  .tab-btn { padding: 8px 12px; font-size: .8rem; }
  .campaign-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
}
