@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy:        #1d1d49;
  --navy-mid:    #252560;
  --navy-light:  #2e2e70;
  --orange:      #df6719;
  --orange-light:#f07a30;
  --orange-pale: #fde8d8;
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --light-gray:  #e8eaf2;
  --mid-gray:    #b0b4cc;
  --text-body:   #3a3a6a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--text-body);
  display: flex;
  flex-direction: column;
}

.page {
  width: 100%;
  background: var(--white);
  position: relative;
  overflow-x: hidden;
}

/* ── HERO HEADER ── */
.p1-header {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
}

/* Blob shapes replicating brand background */
.p1-blob1 {
  position: absolute; width: 300px; height: 300px;
  background: rgba(255,255,255,0.045); border-radius: 50%;
  top: -100px; left: -80px;
}
.p1-blob2 {
  position: absolute; width: 400px; height: 400px;
  background: rgba(255,255,255,0.03); border-radius: 50%;
  top: -150px; right: -100px;
}
.p1-blob3 {
  position: absolute; width: 250px; height: 250px;
  background: rgba(255,255,255,0.03); border-radius: 50%;
  bottom: -80px; left: 30%;
}
.p1-blob4 {
  position: absolute; width: 220px; height: 220px;
  background: rgba(255,255,255,0.025); border-radius: 50%;
  bottom: -40px; right: 10%;
}
.p1-blob5 {
  position: absolute; width: 150px; height: 150px;
  background: rgba(255,255,255,0.025); border-radius: 50%;
  top: 50%; left: 60%; transform: translateY(-50%);
}

.container-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* Logo SVG lockup */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.logo-dots-svg {
  width: 45px;
  height: 45px;
}

.logo-wordmark {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-wordmark .orange { color: var(--orange); }

.header-series {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.header-main-title {
  font-family: 'Manrope', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .header-main-title {
    font-size: 42px;
  }
  .p2-title {
    font-size: 32px !important;
  }
  .p1-header-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .logo-lockup {
    justify-content: center;
  }
  .header-sub {
    margin: 0 auto;
    text-align: center;
  }
  .container-inner {
    padding: 0 35px;
  }
}

.header-main-title .accent { color: var(--orange); }

.header-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 600px;
}

.header-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--orange);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 25px 10px 20px;
  border-radius: 12px 0 0 0;
}

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--navy-mid);
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 4px solid var(--orange);
}

.stat-cell {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  min-width: 200px;
}
.stat-cell:last-child { border-right: none; }

.stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-lbl {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ── SECTION HEADING (brand pattern) ── */
.sec-eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.sec-eyebrow::before {
  content: '';
  width: 4px; height: 20px;
  background: var(--orange);
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.sec-eyebrow-center {
  justify-content: center;
}
.sec-eyebrow-center::before {
  display: none;
}

.sec-title {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 25px;
}

/* ── PAGE 1 BODY ── */
.p1-body { padding: 60px 0; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

.intro-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 400;
}

.callout {
  background: var(--navy);
  border-radius: 12px;
  padding: 35px 35px 35px 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(29, 29, 73, 0.15);
}

.callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--orange);
}

.callout::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 150px; height: 150px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.callout-q {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.callout-attr {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* ── PILLARS ── */
.pillars-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 60px;
}

.pillar {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-top: none;
}

.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(29, 29, 73, 0.1);
}

.pillar-stripe { height: 6px; flex-shrink: 0; }
.pillar-body {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pillar-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.pillar:hover .pillar-icon-wrap {
  transform: scale(1.1);
}

.pillar-icon-wrap svg { width: 24px; height: 24px; }

.pillar-num { font-size: 13px; font-weight: 600; color: var(--mid-gray); margin-bottom: 5px; font-family: 'Plus Jakarta Sans', sans-serif;}
.pillar-name { font-size: 18px; font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.pillar-desc { font-size: 14px; color: #5a5a8a; line-height: 1.6; font-weight: 400; }

.p1c .pillar-stripe { background: var(--orange); }
.p1c .pillar-icon-wrap { background: var(--orange-pale); }

.p2c .pillar-stripe { background: #2563EB; }
.p2c .pillar-icon-wrap { background: #DBEAFE; }

.p3c .pillar-stripe { background: #7C3AED; }
.p3c .pillar-icon-wrap { background: #EDE9FE; }

.p4c .pillar-stripe { background: #0EA5A0; }
.p4c .pillar-icon-wrap { background: #CCFBF1; }

.p5c .pillar-stripe { background: #16A34A; }
.p5c .pillar-icon-wrap { background: #DCFCE7; }

/* ── WHY STRIP ── */
.why-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.why-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-top: 4px solid var(--orange);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  background: #fff;
}

.why-icon { font-size: 32px; margin-bottom: 15px; }
.why-title { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.why-text { font-size: 15px; color: #5a5a8a; line-height: 1.6; }

.divider { height: 1px; background: var(--light-gray); margin: 60px 0; width: 100%; border: none;}

/* ══════════════════════════════
   PAGE 2 Styling (Now integrated cleanly as full-width blocks)
══════════════════════════════ */

.p2-header {
  background: var(--navy);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--orange);
}

.p2-blob1 {
  position: absolute; width: 300px; height: 300px;
  background: rgba(255,255,255,0.04); border-radius: 50%;
  top: -100px; right: 150px;
}
.p2-blob2 {
  position: absolute; width: 200px; height: 200px;
  background: rgba(255,255,255,0.03); border-radius: 50%;
  bottom: -60px; right: 350px;
}

.p2-head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  position: relative; z-index: 2;
  flex-wrap: wrap;
  gap: 20px;
}

.p2-title {
  font-family: 'Manrope', sans-serif;
  font-size: 42px; font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 5px;
}

.p2-sub {
  font-size: 16px; color: rgba(255,255,255,0.6); font-weight: 400;
}

.p2-bc {
  font-size: 13px; color: rgba(255,255,255,0.4); text-align: right; line-height: 1.6; font-weight: 600;
}

/* ── METHOD FLOW ── */
.method-sect { padding: 60px 0 40px; }

.method-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  justify-content: space-between;
}

.method-card {
  border: 1.5px solid var(--light-gray);
  border-radius: 12px;
  padding: 30px 20px;
  background: white;
  flex: 1;
  min-width: 220px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: var(--orange);
}

.method-card.highlight {
  border-color: var(--orange);
  background: #fff8f4;
  box-shadow: 0 8px 20px rgba(223, 103, 25, 0.1);
}

.m-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}

.method-card.highlight .m-num { background: var(--orange); }
.method-card:hover .m-num { background: var(--orange); }

.m-label { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.method-card.highlight .m-label { color: var(--orange); }
.m-desc { font-size: 14px; color: #5a5a8a; line-height: 1.6; }

.method-arrow {
  text-align: center; color: var(--orange); font-size: 28px; font-weight: 700;
}

@media (max-width: 992px) {
  .method-arrow { transform: rotate(90deg); padding: 10px 0; }
  .method-flow { flex-direction: column; align-items: stretch; }
  .p2-head-row { flex-direction: column; align-items: center; text-align: center; }
  .p2-sub { margin-left: auto; margin-right: auto; }
  .p2-bc { text-align: center; width: 100%; }
}

/* ── BANDS ── */
.bands-sect { padding: 40px 0; }

.bands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.band {
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--light-gray);
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.band:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.band-head {
  padding: 20px 25px;
  display: flex; align-items: center; gap: 15px;
}

.band-dot { width: 14px; height: 14px; border-radius: 50%; background: white; flex-shrink: 0; }
.band-label { font-size: 20px; font-weight: 800; color: white; margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; }

.band-body { padding: 25px; }
.band-meaning { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 15px; line-height: 1.4;}

.band-list { list-style: none; margin-bottom: 25px;}
.band-list li {
  font-size: 14px; color: #5a5a8a; line-height: 1.6; padding-left: 20px; position: relative; margin-bottom: 8px;
}
.band-list li::before { content: '—'; position: absolute; left: 0; color: var(--mid-gray); }

.band-impl {
  font-size: 14px; font-weight: 700; padding: 12px 18px; border-radius: 8px; margin-top: 10px; line-height: 1.5;
}

.band-now .band-head  { background: #16A34A; }
.band-now .band-impl  { background: #F0FDF4; color: #14532D; }

.band-next .band-head { background: var(--orange); }
.band-next .band-impl { background: #FFF4ED; color: #7C2D12; }

.band-later .band-head { background: #DC2626; }
.band-later .band-impl { background: #FEF2F2; color: #7F1D1D; }

/* ── EXECUTION WORKSTREAMS ── */
.exec-sect { padding: 40px 0; }

.exec-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.exec-card {
  border-radius: 12px;
  padding: 25px 20px;
  border-top: 4px solid;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.exec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.ec1 { background: #FFF4ED; border-color: var(--orange); }
.ec2 { background: #EFF6FF; border-color: #2563EB; }
.ec3 { background: #F5F3FF; border-color: #7C3AED; }
.ec4 { background: #F0FDFA; border-color: #0EA5A0; }
.ec5 { background: #F0FDF4; border-color: #16A34A; }

.ec-num { font-size: 13px; font-weight: 700; color: var(--mid-gray); margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif; text-transform: uppercase;}
.ec-name { font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.ec-outcome { font-size: 13px; color: #5a5a8a; line-height: 1.5; }

/* ── AI JOURNEY ── */
.journey-sect { padding: 40px 0; }

.journey-row {
  display: flex;
  align-items: stretch;
  gap: 15px;
  margin-top: 35px;
}

.j-step {
  flex: 1;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.j-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.j-active {
  background: var(--navy);
  border: 2px solid var(--orange);
}

.j-inactive {
  background: var(--off-white);
  border: 1.5px solid var(--light-gray);
  opacity: 0.85;
}

.j-arrow { font-size: 28px; color: var(--orange); padding: 0 10px; flex-shrink: 0; align-self: center;}

@media (max-width: 768px) {
  .journey-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .j-arrow { transform: rotate(90deg); padding: 10px 0; align-self: center;}
}

.j-num { font-size: 14px; font-weight: 700; margin-bottom: 10px; font-family: 'Plus Jakarta Sans', sans-serif; }
.j-active .j-num { color: var(--orange); }
.j-inactive .j-num { color: var(--mid-gray); }

.j-label { font-size: 18px; font-weight: 800; line-height: 1.3; margin-bottom: 8px; }
.j-active .j-label { color: white; }
.j-inactive .j-label { color: var(--navy); }

.j-desc { font-size: 14px; line-height: 1.5; }
.j-active .j-desc { color: rgba(255,255,255,0.7); }
.j-inactive .j-desc { color: #5a5a8a; }

.j-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 20px; white-space: nowrap;
}

/* ── CTA ── */
.cta-sect { padding: 40px 0 60px; }

.cta-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(29, 29, 73, 0.2);
}

@media (max-width: 900px) {
  .cta-box {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    text-align: center;
    justify-items: center;
  }
  .cta-bullets {
    align-items: center;
  }
  .cta-b {
    justify-content: center;
  }
  .cta-btn {
    display: inline-block;
    margin: 0 auto;
  }
}

/* Brand blob decorations inside CTA */
.cta-blob1 {
  position: absolute; width: 250px; height: 250px;
  background: rgba(255,255,255,0.03); border-radius: 50%;
  top: -80px; right: 100px; pointer-events: none;
}
.cta-blob2 {
  position: absolute; width: 150px; height: 150px;
  background: rgba(255,255,255,0.025); border-radius: 50%;
  bottom: -40px; right: 280px; pointer-events: none;
}

.cta-title {
  font-family: 'Manrope', sans-serif;
  font-size: 32px; font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 15px;
}

.cta-sub {
  font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 500px; font-weight: 400; margin-bottom: 25px;
}

@media (max-width: 900px) {
  .cta-sub { margin-left: auto; margin-right: auto; }
}

.cta-btn {
  background: var(--orange);
  color: white; font-size: 16px; font-weight: 800;
  padding: 15px 35px; border-radius: 8px;
  text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap;
  display: inline-block; cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: var(--orange-light);
  color: white;
  transform: translateY(-2px);
}

.cta-bullets { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

.cta-b {
  display: flex; align-items: center; gap: 12px;
}

.cta-b-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.cta-b-text { font-size: 15px; color: rgba(255,255,255,0.85); font-weight: 500;}

/* ── FOOTER ── */
.p2-foot {
  background: var(--navy);
  padding: 25px 0;
  margin-top: auto;
}

.p2-foot .container-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.foot-brand {
  display: flex; align-items: center; gap: 12px;
}

.foot-brand svg { width: 24px; height: 24px; }

.foot-brand-name {
  font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: 0.05em; font-family: 'Manrope', sans-serif;
}

.foot-tagline {
  font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500;
}

@media (max-width: 600px) {
  .p2-foot .container-inner {
    flex-direction: column;
    text-align: center;
  }
  .p1-header {
    padding: 60px 10px;
  }
  .p1-header .container-inner{
    padding:0 10px; 
  }
  .p1-body {
    padding: 60px 30px;
  }
}

/* ── HUBSPOT MODAL ── */
.hs-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 29, 73, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.hs-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hs-modal-content {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.hs-modal-overlay.active .hs-modal-content {
  transform: translateY(0);
}

.hs-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--mid-gray);
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.hs-modal-close:hover {
  color: var(--navy);
}

/* HubSpot Form Overrides for better fit */
.hs-modal-content .hs-form-field {
  margin-bottom: 20px;
}
