:root {
  --primary-color: #faa61a;
  --primary-dark: #bf693d;
  --secondary-color: #17295c;
  --dark-blue: #0d47a1;
  --white: #FFFFFF;
  --black: #000000;
  --text-color: #1A202C;
  --light-gray: #f5f5f5;
  --medium-gray: #666666;
  --dark-gray: #333333;
  --border-gray: #e0e0e0;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: 'Sora', sans-serif;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

.bg-section {
  background-color: #be6a3c6a;
}

.hero-section {
  background: linear-gradient(135deg, rgba(191, 105, 61, 0.8) 0%, rgba(23, 41, 92, 0.8) 100%),
    url('/images/projet-jambaar.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white);
  padding: 220px 0 80px;
  text-align: center;
  position: relative;
  height: 550px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: fadeInDown 1.2s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 250px 0 80px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  color: var(--dark-gray);
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.partner-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partner-icon img {
  margin-bottom: 1.5rem;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.partner-card:hover .partner-icon {
  transform: scale(1.1);
}

.partner-name {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: var(--dark-gray);
}

.partner-role {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  text-align: center;
}

.partner-description {
  color: var(--medium-gray);
  line-height: 1.3;
  flex-grow: 1;
  font-size: 1rem;
}

.regional-ports-section .partner-card {
  align-items: stretch;
  text-align: left;
  padding: 1.5rem;
  min-height: 100%;
}

.regional-ports-section .partner-icon {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
}

.regional-ports-section .partner-icon img {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.regional-ports-section .partner-description {
  text-align: justify;
  line-height: 1.6;
  font-size: 0.95rem;
  min-height: 7.6rem;
}

.regional-ports-section .partner-name {
  min-height: 2.8rem;
}

@media (max-width: 991.98px) {

  .regional-ports-section .partner-name,
  .regional-ports-section .partner-description {
    min-height: auto;
  }
}

.partner-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--medium-gray);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.partnership-model {
  background-color: transparent;
  border-radius: 12px;
  padding: 0;
  margin-top: 3rem;
}

.model-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

.model-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.model-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border-gray);
  padding: 1rem 1.1rem;
}

.model-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.model-card--full {
  grid-column: 1 / -1;
}

.model-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.model-features li {
  margin-bottom: 0.6rem;
  padding-left: 2rem;
  position: relative;
}

.model-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white) !important;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.timeline {
  position: relative;
  padding-left: 30px;
  margin-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary-color);
}

.alliance-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 3rem;
  margin-top: 2rem;
}

.alliance-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  text-align: center;
}

.alliance-subtitle {
  font-size: 1.3rem;
  color: var(--medium-gray);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.alliance-partner {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.alliance-partner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.alliance-partner-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.alliance-partner-country {
  display: inline-block;
  background-color: var(--light-blue);
  color: var(--dark-gray);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.alliance-partner-description {
  color: var(--medium-gray);
  line-height: 1.6;
}

.alliance-benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.benefit-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefit-content h5 {
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .partner-icon {
    font-size: 3rem;
  }

  .partner-name {
    font-size: 1.8rem;
  }

  .partnership-model {
    padding: 0;
  }

  .model-cards {
    grid-template-columns: 1fr;
  }

  .model-card {
    padding: 0.9rem 1rem;
  }

  .alliance-section {
    padding: 2rem;
  }

  .stat-number {
    font-size: 1rem;
    font-weight: 400;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}

/* ===== JAMBAAR TPM PARTNERSHIP CARD ===== */
.jambaar-tpm-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.jt-card {
  position: relative;
  background: linear-gradient(165deg, #fbfcfe 0%, #f3f6fc 100%);
  border: 1px solid var(--border-gray);
  border-radius: 28px;
  padding: 56px 56px 48px;
  box-shadow: var(--shadow-light);
  overflow: hidden;
  margin-top: 1.5rem;
}

.jt-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.jt-blob-1 {
  width: 380px;
  height: 380px;
  top: -150px;
  left: -120px;
  background: radial-gradient(circle, rgba(250, 166, 26, 0.09) 0%, transparent 65%);
}

.jt-blob-2 {
  width: 420px;
  height: 420px;
  bottom: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(23, 41, 92, 0.07) 0%, transparent 65%);
}

/* Header */
.jt-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.jt-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  margin-bottom: 22px;
}

.jt-logo {
  height: 80px;
  width: auto;
  display: block;
}

.jt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(250, 166, 26, 0.1);
  border: 1px solid rgba(250, 166, 26, 0.25);
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.jt-title {
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.35;
  margin: 0 auto;
  max-width: 760px;
}

.jt-title span {
  color: var(--primary-color);
}

/* Connector */
.jt-connector {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.jt-entity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 18px;
  padding: 22px 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.jt-entity:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 166, 26, 0.35);
  box-shadow: var(--shadow-medium);
}

.jt-entity-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(250, 166, 26, 0.12);
  color: var(--primary-color);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.35s ease;
}

.jt-entity-public .jt-entity-icon {
  background: rgba(23, 41, 92, 0.08);
  color: var(--secondary-color);
}

.jt-entity:hover .jt-entity-icon {
  transform: rotate(-8deg) scale(1.08);
}

.jt-entity h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 0 0 4px;
  line-height: 1.3;
}

.jt-entity span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--medium-gray);
  letter-spacing: 0.4px;
}

/* Link between entities */
.jt-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.jt-link-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, rgba(250, 166, 26, 0.25), rgba(23, 41, 92, 0.25));
  border-radius: 2px;
}

.jt-link-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 1px solid rgba(250, 166, 26, 0.3);
  color: var(--primary-color);
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(23, 41, 92, 0.08);
  white-space: nowrap;
}

.jt-link-badge i {
  font-size: 1.1rem;
}

.jt-link-badge small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--secondary-color);
}

/* Body */
.jt-body {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.jt-desc {
  font-size: 1rem;
  color: var(--medium-gray);
  line-height: 1.8;
  text-align: center;
  margin: 0 0 14px;
}

.jt-desc:last-child {
  margin-bottom: 0;
}

.jt-desc strong {
  color: var(--secondary-color);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 860px) {
  .jt-card {
    padding: 40px 24px 36px;
  }

  .jt-connector {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .jt-link {
    min-width: unset;
    flex-direction: row;
    justify-content: center;
  }

  .jt-link-line {
    width: 50px;
    flex: 0 0 auto;
  }

  .jt-logo {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .jt-link-badge small {
    font-size: 0.6rem;
  }
}

/* ===== REGIONAL PORTS V2 ===== */
.regional-ports-v2 {
  background: linear-gradient(175deg, #f0f3fa 0%, #e8ecf5 100%);
  position: relative;
  overflow: hidden;
}

.regional-ports-v2::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 41, 92, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== HEADER ===== */
.rp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(23, 41, 92, 0.08);
  border: 1px solid rgba(23, 41, 92, 0.15);
  color: var(--secondary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.rp-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 14px;
  line-height: 1.2;
}

.rp-title span {
  color: var(--primary-color);
}

.rp-subtitle {
  color: var(--medium-gray);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== GRID ===== */
.rp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .rp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .rp-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CARD ===== */
.rp-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-gray);
  position: relative;
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.38s ease;
  display: flex;
  flex-direction: column;
}

.rp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 55px rgba(23, 41, 92, 0.14);
}

/* Animated bottom line */
.rp-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  border-radius: 0 0 22px 22px;
  transition: width 0.4s ease;
}

.rp-card:hover .rp-hover-line {
  width: 100%;
}

/* ===== IMAGE BLOCK ===== */
.rp-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}

.rp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  filter: brightness(0.82);
}

.rp-card:hover .rp-img {
  transform: scale(1.08);
  filter: brightness(0.65);
}

.rp-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 40%,
      rgba(10, 21, 53, 0.55) 100%);
}

/* Ghost number on image */
.rp-number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s;
  z-index: 1;
}

.rp-card:hover .rp-number {
  color: rgba(250, 166, 26, 0.25);
}

/* ===== CARD BODY ===== */
.rp-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Top row: icon + badge */
.rp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.rp-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(250, 166, 26, 0.1);
  color: var(--primary-color);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.rp-card:hover .rp-icon-wrap {
  background: var(--primary-color);
  color: white;
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 6px 18px rgba(250, 166, 26, 0.3);
}

.rp-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: rgba(23, 41, 92, 0.07);
  border: 1px solid rgba(23, 41, 92, 0.12);
  padding: 4px 10px;
  border-radius: 50px;
}

/* Name */
.rp-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 0 0 10px;
  line-height: 1.3;
}

/* Description */
.rp-desc {
  font-size: 0.855rem;
  color: var(--medium-gray);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
}

/* Tags */
.rp-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.rp-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--secondary-color);
  background: rgba(23, 41, 92, 0.06);
  border: 1px solid rgba(23, 41, 92, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.rp-card:hover .rp-tags span {
  background: rgba(250, 166, 26, 0.1);
  border-color: rgba(250, 166, 26, 0.25);
  color: var(--primary-dark);
}

.rp-tags span i {
  color: var(--primary-color);
  font-size: 0.7rem;
}


/* ===== PARTNERSHIP SECTION V2 ===== */
.partnership-section-v2 {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.partnership-section-v2::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 166, 26, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.ps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(250, 166, 26, 0.1);
  border: 1px solid rgba(250, 166, 26, 0.25);
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.ps-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 14px;
}

.ps-title span {
  color: var(--primary-color);
}

.ps-subtitle {
  color: var(--medium-gray);
  font-size: 0.9rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== TWO-COL LAYOUT ===== */
.ps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 960px) {
  .ps-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ===========================
   TIMELINE
=========================== */
.ps-timeline {
  display: flex;
  flex-direction: column;
}

.ps-timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 18px;
  position: relative;
}

/* Connector column */
.ps-tl-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Dot */
.ps-tl-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-gray);
  color: var(--medium-gray);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-light);
}

.ps-timeline-item:hover .ps-tl-dot {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 6px 20px rgba(250, 166, 26, 0.35);
  transform: scale(1.1);
}

/* Vertical line */
.ps-tl-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(to bottom, rgba(250, 166, 26, 0.3), rgba(250, 166, 26, 0.05));
  margin: 6px 0;
}

/* Timeline card */
.ps-tl-card {
  background: var(--light-gray);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 20px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.ps-tl-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
  border-radius: 16px 0 0 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ps-timeline-item:hover .ps-tl-card {
  background: var(--white);
  border-color: rgba(250, 166, 26, 0.3);
  box-shadow: var(--shadow-medium);
  transform: translateX(4px);
}

.ps-timeline-item:hover .ps-tl-card::before {
  opacity: 1;
}

.ps-tl-step {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  display: block;
  margin-bottom: 6px;
}

.ps-tl-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 8px;
}

.ps-tl-card p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  line-height: 1.65;
  margin: 0 0 12px;
}

.ps-tl-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(250, 166, 26, 0.1);
  border: 1px solid rgba(250, 166, 26, 0.2);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
}

/* ===========================
   ADVANTAGE CARDS
=========================== */
.ps-adv-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-gray);
  position: relative;
}

.ps-adv-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--primary-color);
}

.ps-adv-card {
  border-radius: 18px;
  padding: 22px 22px 20px;
  margin-bottom: 16px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ps-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* État — deep navy */
.ps-adv-state {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a7a 100%);
  border-color: transparent;
}

.ps-adv-state h4,
.ps-adv-state .ps-adv-label {
  color: white;
}

.ps-adv-state .ps-adv-list li {
  color: rgba(255, 255, 255, 0.8);
}

.ps-adv-state .ps-adv-list i {
  color: var(--primary-color);
}

.ps-adv-state .ps-adv-icon {
  background: rgba(250, 166, 26, 0.2);
  color: var(--primary-color);
}

/* Jambaar — light golden */
.ps-adv-jambaar {
  background: rgba(250, 166, 26, 0.06);
  border-color: rgba(250, 166, 26, 0.2);
}

.ps-adv-jambaar h4 {
  color: var(--secondary-color);
}

.ps-adv-jambaar .ps-adv-label {
  color: var(--medium-gray);
}

.ps-adv-jambaar .ps-adv-list li {
  color: var(--dark-gray);
}

.ps-adv-jambaar .ps-adv-list i {
  color: var(--primary-color);
}

.ps-adv-jambaar .ps-adv-icon {
  background: rgba(250, 166, 26, 0.15);
  color: var(--primary-color);
}

/* Shared — light blue */
.ps-adv-shared {
  background: rgba(23, 41, 92, 0.04);
  border-color: rgba(23, 41, 92, 0.12);
}

.ps-adv-shared h4 {
  color: var(--secondary-color);
}

.ps-adv-shared .ps-adv-label {
  color: var(--medium-gray);
}

.ps-adv-shared .ps-adv-list li {
  color: var(--dark-gray);
}

.ps-adv-shared .ps-adv-list i {
  color: var(--secondary-color);
}

.ps-adv-shared .ps-adv-icon {
  background: rgba(23, 41, 92, 0.1);
  color: var(--secondary-color);
}

/* Card header */
.ps-adv-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ps-adv-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.ps-adv-card:hover .ps-adv-icon {
  transform: rotate(-8deg) scale(1.08);
}

.ps-adv-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 2px;
  opacity: 0.6;
}

.ps-adv-card-header h4 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

/* Advantage list */
.ps-adv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ps-adv-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.865rem;
  line-height: 1.55;
}

.ps-adv-list i {
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}


/* ===== BENEFICIAIRES SECTION ===== */
.beneficiaires-section {
  background: linear-gradient(165deg, #f0f3fa 0%, #e8ecf5 100%);
  position: relative;
  overflow: hidden;
}

.beneficiaires-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 166, 26, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.ben-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(23, 41, 92, 0.08);
  border: 1px solid rgba(23, 41, 92, 0.15);
  color: var(--secondary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.ben-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 14px;
}

.ben-title span {
  color: var(--primary-color);
}

.ben-subtitle {
  color: var(--medium-gray);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== GRID ===== */
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 960px) {
  .ben-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* ===== CARD ===== */
.ben-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-light);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  cursor: default;
}

.ben-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(23, 41, 92, 0.13);
}

/* Flip inner */
.ben-card-inner {
  position: relative;
  min-height: 420px;
}

/* Front face */
.ben-card-front {
  padding: 32px 26px 28px;
  position: relative;
  z-index: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Detail face — slides up on hover */
.ben-card-detail {
  position: absolute;
  inset: 0;
  padding: 32px 26px;
  background: linear-gradient(145deg, var(--secondary-color) 0%, #1e3a7a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.38s ease, transform 0.38s ease;
  z-index: 2;
  border-radius: 24px;
}

.ben-card:hover .ben-card-front {
  opacity: 0;
  transform: translateY(-10px);
}

.ben-card:hover .ben-card-detail {
  opacity: 1;
  transform: translateY(0);
}

/* Background ghost icon */
.ben-bg-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 7rem;
  color: rgba(23, 41, 92, 0.04);
  pointer-events: none;
  z-index: 0;
  transition: color 0.3s;
}

/* Icon wrap */
.ben-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 14px;
  position: relative;
  z-index: 1;
}

.ben-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ben-icon-human {
  background: rgba(250, 166, 26, 0.1);
  border: 1.5px solid rgba(250, 166, 26, 0.2);
}

.ben-icon-biz {
  background: rgba(23, 41, 92, 0.07);
  border: 1.5px solid rgba(23, 41, 92, 0.12);
}

.ben-icon-region {
  background: rgba(46, 204, 113, 0.08);
  border: 1.5px solid rgba(46, 204, 113, 0.2);
}

/* Role badge */
.ben-role-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  background: rgba(250, 166, 26, 0.1);
  border: 1px solid rgba(250, 166, 26, 0.25);
  color: var(--primary-dark);
}

.ben-role-secondary {
  background: rgba(23, 41, 92, 0.07);
  border-color: rgba(23, 41, 92, 0.15);
  color: var(--secondary-color);
}

.ben-role-indirect {
  background: rgba(46, 204, 113, 0.08);
  border-color: rgba(46, 204, 113, 0.25);
  color: #27ae60;
}

/* Name */
.ben-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 0 0 10px;
}

/* Desc */
.ben-desc {
  font-size: 0.86rem;
  color: var(--medium-gray);
  line-height: 1.65;
  margin: 0 0 20px;
}

/* Metrics row */
.ben-metrics {
  display: flex;
  gap: 6px;
}

.ben-metric {
  flex: 1;
  background: var(--light-gray);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ben-metric i {
  font-size: 1rem;
  color: var(--primary-color);
}

/* ===== DETAIL FACE ===== */
.ben-detail-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.ben-card-detail h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.ben-card-detail p {
  font-size: 0.865rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 20px;
}

.ben-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ben-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.865rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.ben-detail-list i {
  color: var(--primary-color);
  font-size: 0.95rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Bottom hover line */
.ben-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  border-radius: 0 0 24px 24px;
  transition: width 0.4s ease;
  z-index: 10;
}

.ben-card:hover .ben-hover-line {
  width: 100%;
}

/* ===== ALLIANCE SECTION V2 ===== */
.alliance-section-v2 {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.alliance-section-v2::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 41, 92, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.al-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(250, 166, 26, 0.1);
  border: 1px solid rgba(250, 166, 26, 0.25);
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.al-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 14px;
}

.al-title span {
  color: var(--primary-color);
}

.al-subtitle {
  color: var(--medium-gray);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== PARTNERS GRID ===== */
.al-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

@media (max-width: 1100px) {
  .al-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .al-partners-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PARTNER CARD ===== */
.al-partner-card {
  background: var(--light-gray);
  border: 1px solid var(--border-gray);
  border-radius: 22px;
  padding: 26px 22px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.38s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.al-partner-drapeau {
  border: 1px solid var(--border-gray);
  border-radius: 22px;
  height: 150px;
  width: 250px;
}

.sn {
  background: url('/images/sn.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.esp {
  background: url('/images/esp.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.belge {
  background: url('/images/belge.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.al-partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(23, 41, 92, 0.12);
  border-color: rgba(250, 166, 26, 0.35);
  background: var(--white);
}

/* Featured card */
.al-partner-featured {
  background: linear-gradient(145deg, var(--secondary-color) 0%, #1e3a7a 100%);
  border-color: transparent;
}

.al-partner-featured:hover {
  background: linear-gradient(145deg, #1e3a7a 0%, #0d1f4e 100%);
  border-color: rgba(250, 166, 26, 0.4);
}

.al-partner-featured .al-partner-name,
.al-partner-featured .al-partner-desc {
  color: white;
}

.al-partner-featured .al-partner-role {
  color: var(--primary-color);
  background: rgba(250, 166, 26, 0.15);
  border-color: rgba(250, 166, 26, 0.3);
}

.al-partner-featured .al-partner-tags span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.al-partner-featured .al-partner-tags i {
  color: var(--primary-color);
}

.al-partner-featured .al-partner-number {
  color: rgba(255, 255, 255, 0.07);
}

.al-partner-featured .al-country {
  color: rgba(255, 255, 255, 0.5);
}

.al-partner-featured .al-partner-icon {
  background: rgba(250, 166, 26, 0.15);
  color: var(--primary-color);
}

/* Glow effect */
.al-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 0%, rgba(250, 166, 26, 0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.al-partner-card:hover .al-card-glow {
  opacity: 1;
}

/* Top row */
.al-partner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.al-flag-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.al-flag {
  font-size: 1.3rem;
}

.al-country {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.al-partner-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(23, 41, 92, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Icon */
.al-partner-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(250, 166, 26, 0.1);
  color: var(--primary-color);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.35s ease;
}

.al-partner-card:hover .al-partner-icon {
  background: var(--primary-color);
  color: white;
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 8px 22px rgba(250, 166, 26, 0.3);
}

/* Name */
.al-partner-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 0 0 6px;
  line-height: 1.3;
}

/* Role */
.al-partner-role {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 50px;
  margin-bottom: 12px;
  background: rgba(23, 41, 92, 0.07);
  border: 1px solid rgba(23, 41, 92, 0.12);
  color: var(--secondary-color);
}

/* Desc */
.al-partner-desc {
  font-size: 0.845rem;
  color: var(--medium-gray);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
}

/* Tags */
.al-partner-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.al-partner-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--secondary-color);
  background: rgba(23, 41, 92, 0.05);
  border: 1px solid rgba(23, 41, 92, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.al-partner-card:hover .al-partner-tags span {
  background: rgba(250, 166, 26, 0.08);
  border-color: rgba(250, 166, 26, 0.2);
  color: var(--primary-dark);
}

.al-partner-tags i {
  color: var(--primary-color);
  font-size: 0.65rem;
}

/* ===== BENEFITS STRIP ===== */
.al-benefits {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a7a 100%);
  border-radius: 24px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.al-benefits::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 166, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.al-benefits-header {
  margin-bottom: 28px;
}

.al-benefits-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(250, 166, 26, 0.15);
  border: 1px solid rgba(250, 166, 26, 0.3);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.al-benefits-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

@media (max-width: 768px) {
  .al-benefits-grid {
    flex-direction: column;
  }

  .al-benefit-divider {
    width: 100%;
    height: 1px;
    min-height: unset;
  }

  .al-benefits {
    padding: 28px 22px;
  }
}

.al-benefit-divider {
  width: 1px;
  min-height: 80px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  align-self: center;
  margin: 0 4px;
}

.al-benefit-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 20px;
  border-radius: 16px;
  transition: background 0.3s ease;
}

.al-benefit-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.al-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(250, 166, 26, 0.15);
  color: var(--primary-color);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.al-benefit-item:hover .al-benefit-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.08);
}

.al-benefit-body h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin: 0 0 5px;
}

.al-benefit-body p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* ===== STRUCTURING CTA SECTION ===== */
.structuring-cta-section {
  background: linear-gradient(165deg, #f0f3fa 0%, #e8ecf5 100%);
  position: relative;
  overflow: hidden;
}

/* ===== INNER CARD ===== */
.cta-inner {
  background: linear-gradient(145deg, var(--secondary-color) 0%, #152560 50%, #0d1f4e 100%);
  border-radius: 32px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(23, 41, 92, 0.3);
}

@media (max-width: 768px) {
  .cta-inner {
    padding: 48px 28px;
    border-radius: 24px;
  }
}

/* ===== BACKGROUND DECORATIONS ===== */
.cta-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-blob-1 {
  width: 420px;
  height: 420px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(250, 166, 26, 0.1) 0%, transparent 65%);
}

.cta-blob-2 {
  width: 350px;
  height: 350px;
  bottom: -130px;
  right: -100px;
  background: radial-gradient(circle, rgba(250, 166, 26, 0.08) 0%, transparent 65%);
}

.cta-bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.cta-bg-orb::before,
.cta-bg-orb::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-bg-orb::before {
  width: 400px;
  height: 400px;
}

.cta-bg-orb::after {
  width: 200px;
  height: 200px;
}

/* ===== EYEBROW ===== */
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(250, 166, 26, 0.15);
  border: 1px solid rgba(250, 166, 26, 0.3);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* ===== TITLE ===== */
.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-title span {
  color: var(--primary-color);
  position: relative;
}

.cta-title span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), transparent);
  border-radius: 2px;
}

/* ===== TEXT ===== */
.cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

/* ===== PILLARS ===== */
.cta-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 28px;
  flex: 1;
  min-width: 130px;
  transition: transform 0.3s ease;
}

.cta-pillar:hover {
  transform: translateY(-3px);
}

.cta-pillar i {
  font-size: 1.4rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.cta-pillar:hover i {
  transform: scale(1.15);
}

.cta-pillar span {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
}

.cta-pillar-sep {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 580px) {
  .cta-pillar-sep {
    display: none;
  }

  .cta-pillars {
    gap: 8px;
  }

  .cta-pillar {
    min-width: 120px;
    padding: 8px 12px;
  }
}

/* ===== ACTIONS ===== */
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Primary button */
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 28px rgba(250, 166, 26, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-btn-primary:hover {
  color: white;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(250, 166, 26, 0.45);
}

.cta-btn-primary:hover::before {
  opacity: 1;
}

.cta-btn-primary i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover i {
  transform: translateX(-3px);
}

/* Trust line */
.cta-trust {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(250, 166, 26, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(250, 166, 26, 0);
  }
}

.cta-trust span:last-child {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: 0.3px;
}