.elementor-626 .elementor-element.elementor-element-fe1e9f7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-626 .elementor-element.elementor-element-b83f96b{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS *//* ═══════════════════════════════════════════════════
   CREDEX — CPF LIFE LANDING PAGE STYLES
   Palette: Deep Navy (#0B1D3A) + Gold (#C9A84C)
   Namespace: cx-cpf-*
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

/* ── Tokens ── */
:root {
  --cpf-navy: #0B1D3A;
  --cpf-navy-deep: #071428;
  --cpf-navy-mid: #0F2647;
  --cpf-gold: #C9A84C;
  --cpf-gold-light: #D4B96A;
  --cpf-gold-muted: rgba(201, 168, 76, 0.15);
  --cpf-cream: #FAF8F5;
  --cpf-white: #FFFFFF;
  --cpf-text: #1A2A3A;
  --cpf-text-muted: #5A6A7A;
  --cpf-sans: 'Plus Jakarta Sans', sans-serif;
  --cpf-serif: 'Instrument Serif', serif;
}

/* ── Reset for standalone ── */
.cx-cpf-page * { box-sizing: border-box; margin: 0; padding: 0; }
.cx-cpf-page img { max-width: 100%; display: block; }

/* ── Shared ── */
.cx-cpf-inner {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cx-cpf-serif {
  font-family: var(--cpf-serif);
  font-weight: 400;
  font-style: italic;
}

/* ── Kicker Pill ── */
.cx-cpf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--cpf-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.cx-cpf-kicker--dark {
  border-color: rgba(11, 29, 58, 0.1);
  background: rgba(11, 29, 58, 0.04);
  color: var(--cpf-text-muted);
}

.cx-cpf-kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cpf-gold);
  animation: cxCpfBlink 2s ease-in-out infinite;
}

@keyframes cxCpfBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Primary CTA Button ── */
.cx-cpf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 999px;
  font-family: var(--cpf-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cx-cpf-btn:hover {
  transform: scale(1.04);
}

.cx-cpf-btn--primary {
  background: linear-gradient(135deg, var(--cpf-gold) 0%, var(--cpf-gold-light) 100%);
  color: var(--cpf-navy);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.3);
}

.cx-cpf-btn--primary:hover {
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.45);
}

/* ═══ 1. COMPLIANCE HEADER ═══ */
.cx-cpf-compliance {
  background: var(--cpf-navy-deep);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cx-cpf-compliance .cx-cpf-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.cx-cpf-compliance p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--cpf-sans);
  font-size: 11px;
  line-height: 1.6;
}

.cx-cpf-compliance svg {
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  margin-top: 2px;
}

.cx-cpf-compliance a {
  color: var(--cpf-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══ 2. HERO ═══ */
.cx-cpf-hero {
  position: relative;
  padding: 6rem 0 0;
  background: linear-gradient(180deg, var(--cpf-navy) 0%, var(--cpf-navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}

.cx-cpf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 65%);
  pointer-events: none;
}

.cx-cpf-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cx-cpf-hero-text {
  padding-bottom: 4rem;
}

.cx-cpf-hero-text .cx-cpf-kicker {
  margin-bottom: 1.75rem;
}

.cx-cpf-hero-title {
  font-family: var(--cpf-sans);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
}

.cx-cpf-hero-title .cx-cpf-serif {
  color: var(--cpf-gold);
}

.cx-cpf-hero-sub {
  max-width: 440px;
  margin: 0 0 2.25rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--cpf-sans);
  font-size: 15px;
  line-height: 1.75;
}

.cx-cpf-hero-sub strong {
  color: rgba(255, 255, 255, 0.75);
}

.cx-cpf-hero-image {
  position: relative;
  align-self: end;
}

.cx-cpf-hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px 20px 0 0;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.cx-cpf-hero-image::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 50%;
  border-radius: 20px 20px 0 0;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: none;
  pointer-events: none;
  z-index: 1;
}

/* ═══ 3. PAIN POINTS ═══ */
.cx-cpf-section {
  padding: 5rem 0;
}

.cx-cpf-section--cream {
  background: var(--cpf-cream);
  color: var(--cpf-text);
}

.cx-cpf-section--white {
  background: var(--cpf-white);
  color: var(--cpf-text);
}

.cx-cpf-section--navy {
  background: linear-gradient(180deg, var(--cpf-navy) 0%, var(--cpf-navy-deep) 100%);
  color: #fff;
}

.cx-cpf-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.cx-cpf-section-header .cx-cpf-kicker {
  margin-bottom: 1.25rem;
}

.cx-cpf-section-title {
  font-family: var(--cpf-sans);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0;
}

.cx-cpf-section-title .cx-cpf-serif {
  color: var(--cpf-gold);
}

.cx-cpf-section-subtitle {
  max-width: 520px;
  margin: 1rem auto 0;
  font-family: var(--cpf-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--cpf-text-muted);
}

.cx-cpf-section--navy .cx-cpf-section-subtitle {
  color: rgba(255, 255, 255, 0.4);
}

/* ── Pain Cards ── */
.cx-cpf-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cx-cpf-pain-card {
  padding: 2.5rem 2rem;
  background: var(--cpf-white);
  border-radius: 16px;
  border: 1px solid rgba(11, 29, 58, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cx-cpf-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 29, 58, 0.08);
}

.cx-cpf-pain-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 14px;
  background: var(--cpf-gold-muted);
}

.cx-cpf-pain-heading {
  font-family: var(--cpf-sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cpf-navy);
  margin: 0 0 0.75rem;
}

.cx-cpf-pain-text {
  margin: 0;
  color: var(--cpf-text-muted);
  font-family: var(--cpf-sans);
  font-size: 14px;
  line-height: 1.75;
}

/* ═══ 4. HOW IT WORKS — Split Layout ═══ */
.cx-cpf-how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cx-cpf-how-image {
  border-radius: 20px;
  overflow: hidden;
}

.cx-cpf-how-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.cx-cpf-steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cx-cpf-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.cx-cpf-step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--cpf-gold-muted);
  font-family: var(--cpf-sans);
  font-size: 1rem;
  font-weight: 800;
  color: var(--cpf-gold);
}

.cx-cpf-step-body h3 {
  font-family: var(--cpf-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cpf-navy);
  margin: 0 0 0.4rem;
}

.cx-cpf-step-body p {
  margin: 0;
  color: var(--cpf-text-muted);
  font-family: var(--cpf-sans);
  font-size: 13px;
  line-height: 1.75;
}

.cx-cpf-steps-cta {
  margin-top: 2.5rem;
}

/* ═══ 5. TRUST GRID ═══ */
.cx-cpf-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cx-cpf-trust-card {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: border-color 0.3s ease;
}

.cx-cpf-trust-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
}

.cx-cpf-trust-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.12);
}

.cx-cpf-trust-heading {
  font-family: var(--cpf-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}

.cx-cpf-trust-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--cpf-sans);
  font-size: 14px;
  line-height: 1.75;
}

/* ═══ 6. TESTIMONIAL — Split w/ Image ═══ */
.cx-cpf-testimonial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cx-cpf-testimonial-image {
  border-radius: 20px;
  overflow: hidden;
}

.cx-cpf-testimonial-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.cx-cpf-quote-mark {
  margin-bottom: 1.25rem;
}

.cx-cpf-quote {
  font-family: var(--cpf-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.65;
  color: var(--cpf-navy);
  margin: 0 0 1.75rem;
  quotes: none;
}

.cx-cpf-quote-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--cpf-sans);
  font-size: 13px;
}

.cx-cpf-quote-author strong {
  color: var(--cpf-navy);
  font-weight: 700;
}

.cx-cpf-quote-author span {
  color: var(--cpf-text-muted);
}

/* ═══ 7. FOOTER ═══ */
.cx-cpf-footer {
  background: var(--cpf-navy-deep);
  padding: 2.5rem 0;
  text-align: center;
}

.cx-cpf-disclaimer {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.cx-cpf-disclaimer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--cpf-sans);
  font-size: 11px;
  line-height: 1.7;
}

.cx-cpf-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--cpf-sans);
  font-size: 11px;
}

.cx-cpf-footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}

.cx-cpf-footer-links a:hover {
  color: var(--cpf-gold);
}

.cx-cpf-footer-links span {
  color: rgba(255, 255, 255, 0.12);
}

.cx-cpf-footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--cpf-sans);
  font-size: 10px;
}

/* ═══ MOBILE ═══ */
@media (max-width: 767px) {
  .cx-cpf-hero {
    padding: 4rem 0 0;
  }

  .cx-cpf-hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cx-cpf-hero-text {
    padding-bottom: 0;
    text-align: center;
  }

  .cx-cpf-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .cx-cpf-hero-image img {
    height: 320px;
    border-radius: 16px 16px 0 0;
  }

  .cx-cpf-section {
    padding: 3.5rem 0;
  }

  .cx-cpf-pain-grid,
  .cx-cpf-trust-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .cx-cpf-how {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cx-cpf-how-image {
    order: -1;
  }

  .cx-cpf-how-image img {
    height: 280px;
  }

  .cx-cpf-testimonial-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cx-cpf-testimonial-image img {
    height: 260px;
  }

  .cx-cpf-btn {
    width: 100%;
  }

  .cx-cpf-inner {
    padding: 0 1rem;
  }

  .cx-cpf-footer-links {
    flex-wrap: wrap;
  }

  .cx-cpf-hero-actions {
    display: flex;
    justify-content: center;
  }
}/* End custom CSS */