/* GAP Industries — gapindustries.com */
/* Brand: Deep Navy, Steel Blue, Bright Sky, Conversion Orange */

:root {
  --navy: #0B2447;
  --steel: #19376D;
  --sky: #576CBC;
  --pale: #A5D7E8;
  --offwhite: #F5F7FA;
  --charcoal: #1A1A1A;
  --orange: #FF6B35;
  --green: #2EC4B6;
  --border: rgba(11, 36, 71, 0.12);
  --shadow-sm: 0 1px 2px rgba(11, 36, 71, 0.05);
  --shadow-md: 0 4px 12px rgba(11, 36, 71, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 36, 71, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a { color: var(--sky); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--steel); }

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

/* ============ NAV ============ */
nav {
  position: sticky;
  top: 0;
  background: rgba(245, 247, 250, 0.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo span { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.9375rem;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 0.5rem 1.125rem;
  border-radius: 8px;
  font-weight: 600;
}
.nav-cta:hover { background: #e85a26; color: white !important; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--navy); }

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; right: 0; left: 0; background: var(--offwhite); flex-direction: column; padding: 1.5rem; gap: 1rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}

/* ============ SECTIONS ============ */
section { padding: 5rem 0; }
@media (max-width: 768px) { section { padding: 3rem 0; } }

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sky);
  margin-bottom: 0.75rem;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #06182f 0%, var(--navy) 50%, var(--steel) 100%);
  color: white;
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 220%;
  background: radial-gradient(ellipse, rgba(165, 215, 232, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero-eyebrow .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 0.5rem;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 { color: white; max-width: 22ch; margin-bottom: 1.5rem; font-size: clamp(2.25rem, 5.5vw, 4rem); }
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  display: block;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.15s, background 0.15s;
  border: none;
  font-family: inherit;
  text-align: center;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}
.btn-primary:hover { background: #e85a26; transform: translateY(-1px); color: white; }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); color: white; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }

/* ============ PROBLEM SECTION ============ */
.problem h2 { text-align: center; max-width: 22ch; margin: 0 auto 3rem; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.problem-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.problem-card h3 { color: var(--steel); }
@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; } }

/* ============ SYSTEMS SECTION ============ */
.systems { background: white; }
.systems-header { text-align: center; margin-bottom: 3rem; }
.systems-header h2 { max-width: 24ch; margin: 0 auto 1rem; }
.systems-header p { color: rgba(26,26,26,0.7); max-width: 50ch; margin: 0 auto; font-size: 1.0625rem; }
.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.system-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--offwhite);
  transition: transform 0.15s, box-shadow 0.15s;
}
.system-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.system-num {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 32px;
  font-size: 0.875rem;
  margin-bottom: 0.875rem;
}
.system-card h4 { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.system-card p { color: rgba(26,26,26,0.7); font-size: 0.9375rem; line-height: 1.5; margin: 0; }
@media (max-width: 1024px) { .systems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .systems-grid { grid-template-columns: 1fr; } }

/* ============ PROOF SECTION ============ */
.proof h2 { text-align: center; margin-bottom: 1rem; }
.proof-sub { text-align: center; color: rgba(26,26,26,0.7); margin-bottom: 3rem; max-width: 50ch; margin-left: auto; margin-right: auto; font-size: 1.0625rem; }
.case-card {
  background: linear-gradient(135deg, #06182f 0%, var(--navy) 50%, var(--steel) 100%);
  color: white;
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 36, 71, 0.25);
}
.case-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.case-card > * { position: relative; z-index: 1; }
.case-card h3 { color: white; font-size: 2rem; margin-bottom: 1rem; }
.case-card p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.stat {
  background: rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-num { font-family: 'Inter Tight', sans-serif; font-size: 1.625rem; font-weight: 700; color: var(--orange); display: block; line-height: 1.1; }
.stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.75); margin-top: 0.5rem; display: block; }
@media (max-width: 768px) { .case-card { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; } }

/* ============ SHOWCASE / SCREENSHOTS ============ */
.showcase {
  background: linear-gradient(180deg, var(--offwhite) 0%, white 100%);
}
.showcase-header { text-align: center; margin-bottom: 3.5rem; }
.showcase-header h2 { max-width: 24ch; margin: 0 auto 1rem; }
.showcase-header p { color: rgba(26,26,26,0.7); max-width: 55ch; margin: 0 auto; font-size: 1.0625rem; }

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.screenshot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 24px rgba(11, 36, 71, 0.08), 0 32px 80px rgba(11, 36, 71, 0.12);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.screenshot:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(11, 36, 71, 0.12), 0 40px 100px rgba(11, 36, 71, 0.18);
}
.screenshot img {
  width: 100%;
  height: auto;
  display: block;
}
.screenshot-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 36, 71, 0.92);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) { .screenshot-grid { grid-template-columns: 1fr; } }

/* ============ THE PLATFORM (formerly INDUSTRIES) ============ */
.platform-claim {
  background: linear-gradient(135deg, #06182f 0%, var(--navy) 50%, #102d5e 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}
.platform-claim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 100%, rgba(255, 107, 53, 0.18) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 0%, rgba(165, 215, 232, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.platform-claim .container { position: relative; z-index: 1; }
.platform-claim-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.platform-claim h2 {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 22ch;
}
.platform-claim h2 .accent { color: var(--orange); }
.platform-claim .lede {
  color: rgba(255,255,255,0.85);
  font-size: 1.1875rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 50ch;
}
.platform-claim .proof-bullets { list-style: none; padding: 0; margin: 0 0 2rem; }
.platform-claim .proof-bullets li {
  padding: 0.625rem 0 0.625rem 2rem;
  position: relative;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
}
.platform-claim .proof-bullets li:last-child { border-bottom: none; }
.platform-claim .proof-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.5);
}
.platform-claim .proof-bullets li strong { color: white; }

/* Verticals list (right column) */
.verticals-stack {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  padding: 2rem;
}
.verticals-stack-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  display: block;
}
.vertical-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.2s;
}
.vertical-row:last-child { border-bottom: none; }
.vertical-row:hover { padding-left: 0.5rem; }
.vertical-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  color: white;
  font-size: 1.0625rem;
}
.vertical-status {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.vertical-row.live .vertical-status { background: rgba(46, 196, 182, 0.15); color: var(--green); }
.vertical-row.building .vertical-status { background: rgba(255, 107, 53, 0.15); color: var(--orange); }
.vertical-cta {
  display: block;
  margin-top: 1.5rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius);
  color: var(--orange);
  font-weight: 600;
  text-align: center;
  font-size: 0.9375rem;
  transition: background 0.15s;
}
.vertical-cta:hover {
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange);
}
@media (max-width: 900px) {
  .platform-claim-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .platform-claim { padding: 4rem 0; }
}

/* ============ CAPABILITIES PAGE — HERO (max specificity) ============ */
header.cap-hero,
.cap-hero {
  background: linear-gradient(135deg, #06182f 0%, var(--navy) 45%, var(--steel) 100%) !important;
  color: white !important;
  padding: 9rem 0 7rem !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  margin: 0 !important;
}
header.cap-hero::before,
.cap-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.22) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}
header.cap-hero::after,
.cap-hero::after {
  content: '';
  position: absolute;
  bottom: -60%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(165, 215, 232, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
header.cap-hero > .container,
.cap-hero > .container {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 1.5rem;
}
header.cap-hero .hero-eyebrow,
.cap-hero .hero-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 0 2.5rem 0 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: rgba(255, 255, 255, 0.92) !important;
}
header.cap-hero h1,
.cap-hero h1 {
  color: white !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(2.25rem, 4.2vw, 3.5rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
  max-width: 20ch !important;
  margin: 0 auto 2rem auto !important;
}
header.cap-hero h1 .accent,
.cap-hero h1 .accent {
  color: var(--orange) !important;
  display: inline !important;
}
header.cap-hero .lede,
.cap-hero .lede {
  color: rgba(255, 255, 255, 0.86) !important;
  max-width: 54ch !important;
  margin: 0 auto 3rem auto !important;
  font-size: 1.1875rem !important;
  line-height: 1.65 !important;
}
header.cap-hero .cap-counter,
.cap-hero .cap-counter {
  display: inline-flex !important;
  align-items: center !important;
  gap: 1rem !important;
  margin: 0 auto !important;
  padding: 1.125rem 2rem !important;
  background: rgba(255, 107, 53, 0.12) !important;
  border: 1px solid rgba(255, 107, 53, 0.42) !important;
  border-radius: 999px !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}
header.cap-hero .cap-counter-num,
.cap-hero .cap-counter-num {
  font-family: 'Inter Tight', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.625rem !important;
  color: var(--orange) !important;
  font-variant-numeric: tabular-nums !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
}
header.cap-hero .cap-counter-label,
.cap-hero .cap-counter-label {
  font-size: 0.9375rem !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500 !important;
  text-align: left !important;
  line-height: 1.4 !important;
}
@media (max-width: 768px) {
  header.cap-hero,
  .cap-hero { padding: 5rem 0 4rem !important; }
  header.cap-hero h1,
  .cap-hero h1 { font-size: 2rem !important; }
  header.cap-hero .cap-counter,
  .cap-hero .cap-counter {
    flex-direction: column;
    gap: 0.5rem !important;
    padding: 1rem 1.5rem !important;
  }
  header.cap-hero .cap-counter-label,
  .cap-hero .cap-counter-label { text-align: center !important; }
}

.cap-filter-bar {
  position: sticky;
  top: 64px;
  background: rgba(245, 247, 250, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
  padding: 1rem 0;
}
.cap-filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.cap-search {
  flex: 1;
  min-width: 240px;
  padding: 0.625rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  font-family: inherit;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.15s;
}
.cap-search:focus { border-color: var(--sky); }
.cap-chip {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--charcoal);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-family: inherit;
}
.cap-chip:hover { border-color: var(--sky); }
.cap-chip.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.cap-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.cap-section:last-child { border-bottom: none; }
.cap-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cap-section-title {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.cap-section-num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.cap-section h2 { margin: 0; font-size: 1.875rem; }
.cap-section-count {
  font-size: 0.875rem;
  color: rgba(26,26,26,0.55);
  background: var(--offwhite);
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.cap-card {
  background: white;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  position: relative;
}
.cap-card:hover {
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cap-card-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.cap-card-desc {
  font-size: 0.875rem;
  color: rgba(26,26,26,0.7);
  line-height: 1.55;
  margin: 0;
}
.cap-card.planned {
  background: rgba(255, 107, 53, 0.04);
  border-style: dashed;
}
.cap-card.planned::after {
  content: 'Planned';
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.cap-empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: rgba(26,26,26,0.5);
}

/* ============ ASSURANCE STRIP ============ */
.assurance {
  background: white;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.assurance-item h4 {
  color: var(--navy);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.assurance-item p {
  font-size: 0.875rem;
  color: rgba(26,26,26,0.65);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) { .assurance-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

/* ============ PROCESS SECTION ============ */
.process { background: white; }
.process h2 { text-align: center; margin-bottom: 3rem; }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.process-week {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { color: rgba(26,26,26,0.7); font-size: 0.9375rem; }
@media (max-width: 768px) { .process-timeline { grid-template-columns: 1fr; } }

/* ============ PRICING SECTION ============ */
.pricing { background: var(--offwhite); }
.pricing-header { text-align: center; margin-bottom: 3rem; }
.pricing-header h2 { margin-bottom: 0.5rem; }
.pricing-header p { color: rgba(26,26,26,0.7); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured { border: 2px solid var(--orange); transform: scale(1.02); box-shadow: var(--shadow-lg); }
.featured-badge { position: absolute; top: -12px; right: 24px; background: var(--orange); color: white; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.price-tier { font-family: 'Inter Tight', sans-serif; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sky); margin-bottom: 0.5rem; }
.price-amount { font-family: 'Inter Tight', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.price-amount small { font-size: 1rem; color: rgba(26,26,26,0.7); font-weight: 500; }
.price-sub { color: rgba(26,26,26,0.7); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.price-features { list-style: none; margin: 0 0 2rem; padding: 0; flex-grow: 1; }
.price-features li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.price-card .btn { width: 100%; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } .price-card.featured { transform: none; } }

/* ============ CONTACT / LEAD FORM ============ */
.contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { color: white; }
.contact-info p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.contact-info ul { list-style: none; padding: 0; }
.contact-info ul li {
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}
.contact-info ul li strong { color: white; }

.lead-form {
  background: white;
  color: var(--charcoal);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.lead-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--charcoal); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--offwhite);
  transition: border-color 0.15s, background 0.15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--sky);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8125rem; color: rgba(26,26,26,0.6); margin-top: 1rem; line-height: 1.5; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============ FOOTER ============ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
  font-size: 0.9375rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-brand .logo { color: white; font-size: 1.25rem; margin-bottom: 0.5rem; display: block; }
.footer-brand p { font-size: 0.875rem; max-width: 40ch; }
.footer-col h4 { color: white; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { padding: 0.25rem 0; }
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* Success / error messages */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}
.alert-success { background: rgba(46, 196, 182, 0.1); color: #16745f; border: 1px solid rgba(46, 196, 182, 0.3); }
.alert-error { background: rgba(255, 107, 53, 0.1); color: #b13d12; border: 1px solid rgba(255, 107, 53, 0.3); }

/* Page-specific tweaks */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: white;
  padding: 5rem 0 3rem;
  text-align: center;
}
.page-header h1 { color: white; margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,0.85); max-width: 60ch; margin: 0 auto; font-size: 1.125rem; }

.content-section { padding: 4rem 0; }
.content-section h2 { margin-top: 2rem; margin-bottom: 1rem; }
.content-section h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--steel); }
.content-section ul, .content-section ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.content-section li { padding: 0.25rem 0; }
.content-section .container { max-width: 800px; }

table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
table th, table td { text-align: left; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.9375rem; }
table th { background: var(--offwhite); font-weight: 600; color: var(--navy); }
