.strategy-page {
  position: relative;
  --strategy-eyebrow-size: 0.76rem;
  --strategy-eyebrow-gap: 0.9rem;
  --strategy-hero-title-size: clamp(2.2rem, 4.4vw, 4.1rem);
  --strategy-section-title-size: clamp(2.35rem, 4.2vw, 3.2rem);
  --strategy-card-title-size: clamp(1.35rem, 2vw, 1.65rem);
  --strategy-copy-size: 18px;
  --strategy-copy-line-height: 29px;
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 28%, var(--color-surface) 100%);
}

.strategy-page p {
  font-size: var(--strategy-copy-size);
  line-height: var(--strategy-copy-line-height);
}

.strategy-eyebrow,
.strategy-section-eyebrow,
.strategy-card-label,
.strategy-pillar-number {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: var(--strategy-eyebrow-size);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.strategy-eyebrow,
.strategy-section-eyebrow,
.strategy-card-label {
  margin-bottom: var(--strategy-eyebrow-gap);
  color: var(--color-blue);
}

.strategy-pillar-number {
  margin-bottom: 1.1rem;
  color: var(--color-orange);
}

.strategy-hero-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--color-blue);
}

.strategy-hero-section::before,
.strategy-hero-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
}

.strategy-hero-section::before {
  left: -170px;
  bottom: -170px;
  border: 26px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 52px rgba(255, 255, 255, 0.06),
    0 0 0 104px rgba(255, 255, 255, 0.04);
}

.strategy-hero-section::after {
  right: -170px;
  top: -170px;
  border: 24px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.06),
    0 0 0 96px rgba(255, 255, 255, 0.04);
}

.strategy-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem;
  align-items: center;
}

.strategy-hero-copy h1 {
  margin: 0;
  color: var(--color-white);
  font-size: var(--strategy-hero-title-size);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.strategy-hero-copy .strategy-eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.strategy-hero-copy p {
  margin: 0;
}

.strategy-hero-copy p {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
}

.strategy-hero-copy li {
  color: rgba(255, 255, 255, 0.9);
}

.strategy-hero-lead strong {
  color: #ffd5bf;
  font-weight: 700;
}

.strategy-hero-support {
  margin-top: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.strategy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.strategy-hero-media img {
  width: 100%;
}

.strategy-define-section {
  padding: 5.5rem 0;
}

.strategy-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.strategy-section-header h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.strategy-section-intro {
  margin: 0 0 0 auto;
  color: var(--color-muted);
}

.strategy-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.strategy-pillar-card {
  position: relative;
  height: 100%;
  padding: 1.6rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(8, 16, 31, 0.06);
  overflow: hidden;
}

.strategy-pillar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
}

.strategy-pillar-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: var(--strategy-card-title-size);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.strategy-pillar-card p {
  margin: 0.95rem 0 0;
  color: var(--color-muted);
}

.strategy-performance-banner {
  margin-top: 1.5rem;
  padding: 1.8rem 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-blue), #6a4dff 56%, var(--color-orange) 100%);
  box-shadow: var(--shadow-strong);
}

.strategy-performance-banner p {
  margin: 0;
  color: var(--color-white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-align: center;
}

@media (width <=1199.98px) {

  .strategy-hero-grid,
  .strategy-section-header {
    grid-template-columns: 1fr;
  }

  .strategy-section-intro {
    margin: 0;
  }

  .strategy-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width <=767.98px) {
  .strategy-page {
    --strategy-eyebrow-size: 0.72rem;
    --strategy-eyebrow-gap: 0.75rem;
    --strategy-hero-title-size: 32px;
    --strategy-section-title-size: 31px;
    --strategy-card-title-size: 24px;
    --strategy-copy-size: 14px;
    --strategy-copy-line-height: 24px;
  }

  .strategy-hero-section {
    padding: 0;
  }

  .strategy-define-section {
    padding: 2.5rem 0;
  }

  .strategy-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .strategy-hero-actions .btn {
    width: 100%;
  }

  .strategy-pillar-card,
  .strategy-performance-banner {
    padding: 1.25rem;
  }

  .strategy-section-header {
    gap: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .strategy-pillars-grid {
    grid-template-columns: 1fr;
  }
}