/* =========================================================
   REKHATAMA — IT STRATEGIC PLANNING
========================================================= */

.rk-sp-page {
  --sp-navy: #0b2858;
  --sp-dark: #071d42;
  --sp-blue: #0878e8;
  --sp-cyan: #08a5ea;
  --sp-text: #10264c;
  --sp-muted: #526783;
  --sp-border: #d8e4f2;
  --sp-soft: #f3f8fe;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: clip;
  color: var(--sp-text);
  background: #fff;
  font-family: "Inter", sans-serif;
}

.rk-sp-page *,
.rk-sp-page *::before,
.rk-sp-page *::after {
  box-sizing: border-box;
}

.rk-sp-page h1,
.rk-sp-page h2,
.rk-sp-page h3,
.rk-sp-page p {
  margin-top: 0;
}

.rk-sp-page h1,
.rk-sp-page h2,
.rk-sp-page h3,
.rk-sp-page strong,
.rk-sp-btn {
  font-family: "Poppins", sans-serif;
}

.rk-sp-container {
  width: min(calc(100% - 48px), 1320px);
  margin-inline: auto;
}

.rk-sp-section {
  padding: 56px 0;
}

.rk-sp-eyebrow {
  display: inline-flex;
  margin-bottom: 15px;
  color: #0863bc;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rk-sp-eyebrow--light {
  color: #80d0ff;
}

/* Hero */
.rk-sp-hero {
  padding: 70px 0;
  background:
    radial-gradient(circle at 88% 12%,
      rgba(10, 146, 235, 0.2), transparent 27%),
    linear-gradient(135deg, #f7faff, #edf5ff);
  border-bottom: 1px solid var(--sp-border);
}

.rk-sp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: 64px;
  align-items: center;
}

.rk-sp-hero h1 {
  max-width: 830px;
  margin-bottom: 20px;
  color: var(--sp-navy);
  font-size: clamp(38px, 4.25vw, 64px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.rk-sp-lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--sp-muted);
  font-size: 17px;
  line-height: 1.75;
}

.rk-sp-actions,
.rk-sp-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rk-sp-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  transition: 0.2s ease;
}

.rk-sp-btn:hover {
  transform: translateY(-2px);
}

.rk-sp-btn--primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--sp-blue), var(--sp-cyan));
  box-shadow: 0 13px 28px rgba(8, 120, 232, 0.23);
}

.rk-sp-btn--secondary {
  color: var(--sp-navy) !important;
  background: #fff;
  border-color: #cbdced;
}

.rk-sp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: #35567b;
  font-size: 13px;
  font-weight: 600;
}

.rk-sp-hero__panel {
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%,
      rgba(19, 157, 237, 0.35), transparent 37%),
    linear-gradient(150deg, var(--sp-dark), #143f7b);
  border-radius: 24px;
  box-shadow: 0 26px 55px rgba(9, 37, 82, 0.22);
}

.rk-sp-panel__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 21px;
}

.rk-sp-panel__head span {
  color: #77ccff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.rk-sp-panel__head strong {
  color: #fff;
  font-size: 20px;
}

.rk-sp-outcome {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.rk-sp-outcome > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  color: #08285b;
  background: #82d0ff;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
}

.rk-sp-outcome strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
}

.rk-sp-outcome p {
  margin-bottom: 0;
  color: #cbdbee;
  font-size: 13px;
  line-height: 1.6;
}

/* Headings */
.rk-sp-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.rk-sp-heading h2,
.rk-sp-method > h2,
.rk-sp-deliverables h2,
.rk-sp-final h2 {
  margin-bottom: 13px;
  color: var(--sp-navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.rk-sp-heading p {
  margin-bottom: 0;
  color: var(--sp-muted);
  font-size: 15px;
  line-height: 1.7;
}

.rk-sp-heading--split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: end;
  max-width: none;
}

/* Challenges */
.rk-sp-challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rk-sp-challenge-card {
  padding: 25px;
  background: var(--sp-soft);
  border: 1px solid var(--sp-border);
  border-radius: 18px;
}

.rk-sp-challenge-card > span,
.rk-sp-number {
  display: block;
  margin-bottom: 23px;
  color: var(--sp-blue);
  font-size: 12px;
  font-weight: 900;
}

.rk-sp-challenge-card h3,
.rk-sp-service-card h3 {
  margin-bottom: 9px;
  color: var(--sp-navy);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.rk-sp-challenge-card p,
.rk-sp-service-card p {
  margin-bottom: 0;
  color: var(--sp-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Services */
.rk-sp-services {
  background: #f4f8fd;
}

.rk-sp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rk-sp-service-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 27px;
  background: #fff;
  border: 1px solid var(--sp-border);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(11, 40, 88, 0.055);
  transition: 0.22s ease;
}

.rk-sp-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(11, 40, 88, 0.1);
}

.rk-sp-service-card p {
  margin-bottom: 22px;
}

.rk-sp-service-card > strong {
  align-self: flex-start;
  margin-top: auto;
  padding: 7px 11px;
  color: #075fb8;
  background: #e9f4ff;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
}

/* Framework */
.rk-sp-framework {
  color: #fff;
  background:
    radial-gradient(circle at 90% 4%,
      rgba(21, 155, 235, 0.31), transparent 28%),
    linear-gradient(135deg, #071c40, #123c75);
}

.rk-sp-framework .rk-sp-heading h2 {
  color: #fff;
}

.rk-sp-framework .rk-sp-heading p {
  color: #cbdced;
}

.rk-sp-framework-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rk-sp-framework-grid article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}

.rk-sp-framework-grid article > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  color: #062759;
  background: #7bceff;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 900;
}

.rk-sp-framework-grid h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.rk-sp-framework-grid p {
  margin-bottom: 0;
  color: #c9daec;
  font-size: 13px;
  line-height: 1.65;
}

/* Toolkit */
.rk-sp-toolkit {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  margin-top: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
}

.rk-sp-toolkit__intro h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
}

.rk-sp-toolkit__intro p {
  margin-bottom: 0;
  color: #c9daec;
  font-size: 13px;
  line-height: 1.65;
}

.rk-sp-toolkit__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rk-sp-toolkit__items span {
  padding: 12px 14px;
  color: #eff8ff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.rk-sp-framework-note {
  margin: 17px 0 0;
  color: #9fb8d3;
  font-size: 12px;
  line-height: 1.6;
}

/* Execution */
.rk-sp-execution {
  background: #f4f8fd;
}

.rk-sp-execution__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
}

.rk-sp-method {
  padding: 33px;
  background: #fff;
  border: 1px solid var(--sp-border);
  border-radius: 22px;
}

.rk-sp-steps {
  margin-top: 23px;
}

.rk-sp-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--sp-border);
}

.rk-sp-step > span {
  color: var(--sp-blue);
  font-size: 12px;
  font-weight: 900;
}

.rk-sp-step h3 {
  margin-bottom: 5px;
  color: var(--sp-navy);
  font-size: 16px;
  font-weight: 700;
}

.rk-sp-step p {
  margin-bottom: 0;
  color: var(--sp-muted);
  font-size: 13px;
  line-height: 1.6;
}

.rk-sp-deliverables {
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%,
      rgba(20, 151, 232, 0.34), transparent 38%),
    var(--sp-dark);
  border-radius: 22px;
}

.rk-sp-deliverables h2 {
  color: #fff;
}

.rk-sp-deliverables ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.rk-sp-deliverables li {
  position: relative;
  padding: 10px 13px 10px 37px;
  color: #eef7ff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  font-size: 13px;
}

.rk-sp-deliverables li::before {
  position: absolute;
  left: 13px;
  color: #69c9ff;
  content: "✓";
  font-weight: 900;
}

/* Final CTA */
.rk-sp-final {
  padding: 54px 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%,
      rgba(19, 161, 238, 0.38), transparent 25%),
    linear-gradient(135deg, #081e46, #174e8c);
}

.rk-sp-final__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.rk-sp-final h2 {
  max-width: 840px;
  color: #fff;
}

.rk-sp-final p {
  max-width: 800px;
  margin-bottom: 0;
  color: #d5e2f0;
  font-size: 15px;
  line-height: 1.7;
}

.rk-sp-final__actions {
  flex-direction: column;
  min-width: 250px;
}

.rk-sp-btn--white {
  color: var(--sp-navy) !important;
  background: #fff;
}

.rk-sp-btn--glass {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.29);
}

/* Responsive */
@media (max-width: 1050px) {
  .rk-sp-hero__grid,
  .rk-sp-execution__grid {
    grid-template-columns: 1fr;
  }

  .rk-sp-challenge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .rk-sp-service-grid,
  .rk-sp-framework-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rk-sp-heading--split,
  .rk-sp-toolkit,
  .rk-sp-final__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .rk-sp-container {
    width: min(calc(100% - 32px), 1320px);
  }

  .rk-sp-hero {
    padding: 48px 0;
  }

  .rk-sp-hero__grid {
    gap: 32px;
  }

  .rk-sp-hero h1 {
    font-size: 35px;
  }

  .rk-sp-lead {
    font-size: 15px;
  }

  .rk-sp-section {
    padding: 42px 0;
  }

  .rk-sp-challenge-grid,
  .rk-sp-service-grid,
  .rk-sp-framework-grid,
  .rk-sp-toolkit__items {
    grid-template-columns: 1fr;
  }

  .rk-sp-service-card {
    min-height: auto;
  }

  .rk-sp-actions,
  .rk-sp-final__actions,
  .rk-sp-btn {
    width: 100%;
  }

  .rk-sp-trust {
    flex-direction: column;
    gap: 8px;
  }

  .rk-sp-hero__panel,
  .rk-sp-method,
  .rk-sp-deliverables,
  .rk-sp-toolkit {
    padding: 24px;
  }

  .rk-sp-final__actions {
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .rk-sp-container {
    width: min(calc(100% - 24px), 1320px);
  }

  .rk-sp-hero h1 {
    font-size: 32px;
  }

  .rk-sp-heading h2,
  .rk-sp-method > h2,
  .rk-sp-deliverables h2,
  .rk-sp-final h2 {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rk-sp-page *,
  .rk-sp-page *::before,
  .rk-sp-page *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}