.strategy-hero {
  padding: 5rem 0 2rem;
  text-align: center;
}

.strategy-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strategy-hero h1 {
  max-width: 820px;
  margin: 1.8rem auto 1rem;
  color: var(--rm-text);
  font-size: clamp(2.3rem, 5.4vw, 4.5rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.strategy-hero h1 span {
  color: var(--rm-gold);
}

.strategy-hero p {
  color: rgba(239, 237, 231, 0.82);
  font-size: 1.2rem;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.8rem;
  border: 1px solid var(--rm-line);
  border-radius: 999px;
  background: rgba(17, 23, 34, 0.72);
  color: var(--rm-text);
  font-size: 0.9rem;
  padding: 0.75rem 1.3rem;
  text-decoration: none;
}

.guide-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.strategy-section {
  padding: 2rem 0 4rem;
}

.strategy-section__header {
  margin-bottom: 2.2rem;
  text-align: center;
}

.strategy-section__header h2,
.flow-section h2,
.contact-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.strategy-section__header p,
.contact-section__inner > p {
  margin-top: 0.45rem;
  color: var(--rm-muted);
}

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

.strategy-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rm-line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(20, 25, 36, 0.96), rgba(13, 18, 28, 0.92));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  padding: 1.75rem;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.strategy-card:hover {
  transform: translateY(-7px);
  border-color: rgba(31, 173, 126, 0.4);
}

.strategy-card__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.strategy-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: rgba(27, 33, 45, 0.8);
  color: var(--rm-text);
  font-size: 1.25rem;
}

.strategy-card__top span,
.strategy-card__meta {
  color: var(--rm-muted);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.strategy-card h3 {
  margin-top: 0.1rem;
  font-size: 0.9rem;
  line-height: 1.35;
}

.strategy-card h3 em {
  display: inline-block;
  margin-left: 0.35rem;
  border-radius: 4px;
  background: var(--rm-pink);
  color: white;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.6rem;
  font-style: normal;
  padding: 0.08rem 0.35rem;
  vertical-align: 2px;
}

.strategy-card > p {
  margin: 1.3rem 0;
  color: rgba(137, 210, 180, 0.78);
}

.strategy-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
  color: rgba(137, 210, 180, 0.65);
}

.strategy-card__meta span:first-child {
  color: var(--rm-gold);
}

.strategy-card__action {
  display: block;
  margin-top: 1.35rem;
  border-top: 1px solid rgba(33, 38, 49, 0.75);
  color: var(--rm-text);
  font-family: "Orbitron", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  padding-top: 1rem;
  text-align: center;
  text-transform: uppercase;
}

.flow-section {
  padding: 4rem 0;
}

.flow-section > .rm-container > h2 {
  margin-bottom: 2rem;
  text-align: center;
}

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

.flow-grid article {
  position: relative;
  border-top: 1px solid rgba(31, 173, 126, 0.25);
  padding: 1.5rem 1rem;
  text-align: center;
}

.flow-grid article > span {
  display: grid;
  width: 32px;
  height: 32px;
  margin: 0 auto 1rem;
  place-items: center;
  border: 1px solid rgba(31, 173, 126, 0.4);
  border-radius: 50%;
  background: rgba(31, 173, 126, 0.15);
  color: var(--rm-green);
  font-family: "Orbitron", monospace;
  font-size: 0.72rem;
}

.flow-grid h3 {
  font-family: "Orbitron", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.flow-grid p {
  margin-top: 0.5rem;
  color: var(--rm-muted);
  font-size: 0.9rem;
}

.contact-section {
  padding: 4rem 0 2rem;
  text-align: center;
}

.contact-section__inner > div {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

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

  .strategy-card {
    min-height: 0;
  }

  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .strategy-hero {
    padding-top: 3.5rem;
  }

  .strategy-hero h1 {
    font-size: 2rem;
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }

  .contact-section__inner > div {
    flex-direction: column;
  }
}
