/* ================================================================
   HOMEPAGE STYLES — 2040 Digital
   Converted from inline styles for performance and maintainability.
   All class names prefixed with hp- to avoid theme/plugin conflicts.
   ================================================================ */


/* ============ BASE / TOKENS ============ */

.hp-wrap {
  font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
}


/* ---------- Reusable layout helpers ---------- */

.hp-full-bleed {
  margin: 0 -20px;
  width: calc(100% + 40px);
}

.hp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hp-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.hp-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #4a4a5a;
  margin-bottom: 14px;
}

.hp-section-subtitle {
  font-size: 17px;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.hp-underline {
  width: 60px;
  height: 4px;
  background: #2277bb;
  border-radius: 2px;
  margin: 16px auto 0;
}

.hp-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(33, 18, 109, 0.08);
}

.hp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hp-card-link {
  font-size: 13px;
  font-weight: bold;
  color: #2c54ff;
  text-decoration: none;
}

.hp-card-title {
  font-size: 17px;
  font-weight: bold;
  color: #4a4a5a;
  margin-bottom: 8px;
}

.hp-card-text {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

.hp-card-icon {
  margin-bottom: 14px;
}

.hp-card-icon img {
  width: 48px;
  height: auto;
}

.hp-btn-gradient {
  display: inline-block;
  background: linear-gradient(135deg, #21126D, #2C54FF);
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
}

.hp-section-bg {
  background: #f8f9fa;
}

.hp-section-pad {
  padding: 70px 20px;
}

.hp-section-pad-no-x {
  padding: 70px 0;
}


/* ============ HERO SECTION ============ */

.hp-hero {
  background: linear-gradient(135deg, #21126D 0%, #2C54FF 100%);
  color: white;
  padding: 100px 20px 90px;
  position: relative;
  overflow: hidden;
}

.hp-hero-circle-cyan {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 243, 253, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hp-hero-circle-lavender {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(182, 184, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hp-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hp-hero-text {
  flex: 1;
  min-width: 320px;
}

.hp-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hp-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  color: white;
}

.hp-hero-accent {
  color: #3bf3fd;
}

.hp-hero-desc {
  font-size: 19px;
  opacity: 0.92;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}

.hp-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hp-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  background: #fff;
  color: #21126d;
  text-decoration: none;
}

.hp-btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
}

.hp-hero-book {
  flex-shrink: 0;
  width: 320px;
  text-align: center;
}

.hp-hero-book img {
  width: 240px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: 0 auto 16px;
  display: block;
}

.hp-hero-book-links {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hp-hero-book-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}


/* ============ STATS BAR ============ */

.hp-stats {
  background: #1a1a2e;
  padding: 32px 20px;
}

.hp-stats-inner {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hp-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #3bf3fd;
  margin-bottom: 4px;
}

.hp-stat-label {
  font-size: 13px;
  color: #aaa;
  font-weight: 600;
}


/* ============ WHO WE ARE ============ */

.hp-who-flex {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.hp-who-body {
  flex: 1;
  min-width: 320px;
}

.hp-who-callout {
  background: linear-gradient(135deg, #B6B8FF 0%, #45B5FF 100%);
  border-left: 5px solid #2C54FF;
  border-radius: 0 15px 15px 0;
  padding: 20px 24px;
  color: #21126d;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 20px;
}

.hp-who-para {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.hp-who-sidebar {
  width: 380px;
  flex-shrink: 0;
}

.hp-who-stat-card {
  background: linear-gradient(135deg, #21126D 0%, #2C54FF 100%);
  border-radius: 20px;
  padding: 40px 32px;
  color: #fff;
  text-align: center;
}

.hp-who-stat-number {
  font-size: 56px;
  font-weight: 800;
  color: #3bf3fd;
  margin-bottom: 8px;
}

.hp-who-stat-text {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.5;
}


/* ============ OUR SERVICES ============ */

.hp-services-grid {
  gap: 24px;
}

.hp-service-card {
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.hp-service-card h3 {
  font-size: 17px;
  font-weight: bold;
  color: #4a4a5a;
  margin-bottom: 8px;
}

.hp-service-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

.hp-service-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.hp-service-stripe--primary-dark   { background: #21126D; }
.hp-service-stripe--primary-blue   { background: #2C54FF; }
.hp-service-stripe--light-blue     { background: #45B5FF; }
.hp-service-stripe--lavender       { background: #B6B8FF; }

.hp-services-cta {
  text-align: center;
  margin-top: 36px;
}


/* ============ WHAT SETS US APART ============ */

.hp-pillar-card {
  padding: 32px 24px;
  text-align: center;
}

.hp-pillar-card--primary-dark  { border-top: 4px solid #21126D; }
.hp-pillar-card--primary-blue  { border-top: 4px solid #2C54FF; }
.hp-pillar-card--light-blue    { border-top: 4px solid #45B5FF; }
.hp-pillar-card--lavender      { border-top: 4px solid #B6B8FF; }

.hp-pillar-icon {
  margin-bottom: 14px;
}

.hp-pillar-icon img {
  width: 52px;
  height: auto;
}

.hp-pillar-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: #4a4a5a;
  margin-bottom: 10px;
}

.hp-pillar-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}


/* ============ HOW WE WORK ============ */

.hp-steps-grid {
  gap: 28px;
}

.hp-step-card {
  padding: 44px 28px 36px;
  position: relative;
}

.hp-step-number {
  position: absolute;
  top: -16px;
  left: 28px;
  background: linear-gradient(135deg, #21126D, #2C54FF);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}

.hp-step-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: #4a4a5a;
  margin-bottom: 10px;
}

.hp-step-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}


/* ============ RESEARCH SERIES ============ */

.hp-research-grid {
  gap: 28px;
}

.hp-research-card {
  overflow: hidden;
}

.hp-research-card--tp    { border-left: 5px solid #21126D; }
.hp-research-card--cl    { border-left: 5px solid #2C54FF; }
.hp-research-card--mwm   { border-left: 5px solid #45B5FF; }

.hp-research-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 0;
}

.hp-research-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #21126D, #2C54FF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-research-icon img {
  width: 32px;
  height: 32px;
}

.hp-research-header h3 {
  font-size: 18px;
  font-weight: bold;
  color: #4a4a5a;
  margin-bottom: 4px;
}

.hp-research-header p {
  font-size: 13px;
  color: #888;
}

.hp-research-body {
  padding: 20px 24px 24px;
}

.hp-research-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hp-research-body a {
  font-size: 14px;
  font-weight: bold;
  color: #2c54ff;
  text-decoration: none;
}


