:root {
  --navy: #0B1D33;
  --navy-mid: #132D4F;
  --slate: #3A4F6A;
  --steel: #6B7F99;
  --sky: #D6E4F0;
  --ice: #EDF2F7;
  --cream: #F8F6F1;
  --white: #FFFFFF;
  --gold: #C4873A;
  --gold-light: #E8C891;
  --alert: #B54A32;
  --green: #2D6A4F;
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ===== HERO ===== */
.cp-hero {
  padding: 6rem 2rem 6rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cp-hero-corner-cta {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
  z-index: 2;
}

.cp-hero-corner-cta:hover { background: #b3762e; }

.cp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(196, 135, 58, 0.06) 50%, rgba(196, 135, 58, 0.12) 100%);
  pointer-events: none;
}

.cp-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cp-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cp-hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(196, 135, 58, 0.3);
  border-radius: 3px;
}

.cp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.cp-hero p {
  font-size: 1.15rem;
  color: var(--sky);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cp-hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s;
  border: 2px solid var(--gold);
}

.cp-hero-cta:hover {
  background: transparent;
  color: var(--gold);
}

/* ===== SHARED SECTION STYLES ===== */
.cp-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cp-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.cp-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.cp-section-body {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 2rem;
}

/* ===== COST OF INACTION ===== */
.cp-cost {
  padding: 5rem 2rem;
  background: var(--cream);
}

.cp-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cp-stat-card {
  background: var(--white);
  border: 1px solid rgba(11, 29, 51, 0.08);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
}

.cp-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--alert);
  border-radius: 6px 6px 0 0;
}

.cp-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--alert);
  margin-bottom: 0.5rem;
}

.cp-stat-label {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.5;
}

.cp-cost-callout {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(181, 74, 50, 0.06);
  border-left: 3px solid var(--alert);
  border-radius: 0 4px 4px 0;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
.cp-how {
  padding: 5rem 2rem;
  background: var(--white);
}

.cp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 2.5rem;
}

.cp-step {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--sky);
}

.cp-step:last-child { border-right: none; }

.cp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cp-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.cp-step p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}

.cp-how-note {
  margin-top: 2.5rem;
  text-align: center;
  padding: 1.5rem;
  background: var(--ice);
  border-radius: 6px;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
}

/* ===== PROOF ===== */
.cp-proof {
  padding: 5rem 2rem;
  background: var(--navy);
  color: var(--white);
}

.cp-proof .cp-section-label { color: var(--gold-light); }
.cp-proof .cp-section-title { color: var(--white); }
.cp-proof .cp-section-body { color: var(--sky); }

.cp-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cp-proof-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 2rem;
}

.cp-proof-icon {
  width: 40px;
  height: 40px;
  background: rgba(196, 135, 58, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.cp-proof-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cp-proof-card p {
  font-size: 0.9rem;
  color: var(--sky);
  line-height: 1.6;
}

.cp-proof-quote {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(196, 135, 58, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}

.cp-proof-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.cp-proof-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--steel);
}

/* ===== RISK REMOVAL ===== */
.cp-risk {
  padding: 5rem 2rem;
  background: var(--cream);
}

.cp-risk-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cp-risk-card {
  background: var(--white);
  border: 1px solid rgba(11, 29, 51, 0.08);
  border-radius: 6px;
  padding: 2rem;
}

.cp-risk-card::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green);
  margin-bottom: 1.25rem;
  border-radius: 2px;
}

.cp-risk-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.cp-risk-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ===== FIT SECTION ===== */
.cp-fit {
  padding: 5rem 2rem;
  background: var(--white);
}

.cp-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.cp-fit-col {
  padding: 2rem;
  border-radius: 6px;
}

.cp-fit-yes {
  background: rgba(45, 106, 79, 0.05);
  border: 1px solid rgba(45, 106, 79, 0.15);
}

.cp-fit-no {
  background: var(--ice);
  border: 1px solid rgba(11, 29, 51, 0.06);
}

.cp-fit-col h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.cp-fit-yes h3 { color: var(--green); }
.cp-fit-no h3 { color: var(--steel); }

.cp-fit-col ul {
  list-style: none;
  padding: 0;
}

.cp-fit-col li {
  font-size: 0.95rem;
  color: var(--slate);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.cp-fit-yes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.cp-fit-no li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: var(--steel);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== CLOSING CTA ===== */
.cp-closing-cta {
  padding: 5rem 2rem;
  background: var(--navy);
  position: relative;
}

.cp-closing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cp-closing-cta-inner {
  text-align: center;
}

.cp-closing-cta .cp-section-label { color: var(--gold-light); }
.cp-closing-cta .cp-section-title { color: var(--white); }
.cp-closing-cta .cp-section-body { color: var(--sky); max-width: 580px; margin-left: auto; margin-right: auto; }

.cp-closing-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--gold);
  transition: all 0.25s;
  margin-top: 0.5rem;
}

.cp-closing-cta-btn:hover {
  background: transparent;
  color: var(--gold);
}

.cp-closing-trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.cp-closing-trust span {
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.cp-footer {
  padding: 2rem;
  background: var(--navy-mid);
  text-align: center;
}

.cp-footer p {
  font-size: 0.8rem;
  color: var(--steel);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cp-hero { padding: 8rem 1.5rem 4rem; }
  .cp-steps { grid-template-columns: 1fr; }
  .cp-step { border-right: none; border-bottom: 1px solid var(--sky); }
  .cp-step:last-child { border-bottom: none; }
  .cp-proof-grid { grid-template-columns: 1fr; }
  .cp-stat-row { grid-template-columns: 1fr; }
  .cp-risk-cards { grid-template-columns: 1fr; }
  .cp-fit-grid { grid-template-columns: 1fr; }
  .cp-trust-points { flex-direction: column; gap: 0.75rem; }
  .cp-form-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes cpFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cp-hero-inner > * {
  animation: cpFadeUp 0.6s ease-out both;
}

.cp-hero-tag { animation-delay: 0.1s; }
.cp-hero h1 { animation-delay: 0.2s; }
.cp-hero p { animation-delay: 0.3s; }
.cp-hero-cta { animation-delay: 0.4s; }