/* ======================================== */
/* GLOBAL RESET                             */
/* ======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--orion-color-bg);
  font-family: Inter, sans-serif;
  color: var(--orion-color-text);
}

.orion-providers {
  padding: 28px;
}

.op-container {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
}

/* ======================================== */
/* TYPE                                     */
/* ======================================== */

.op-hero-main h1,
.op-section-header h2,
.op-service-card h3,
.op-system-card h3,
.op-structure-card h3,
.op-info-card h3,
.op-hero-panel h3,
.op-final-box h2 {
  margin: 0;
  font-family: "Glacial Indifference", Inter, sans-serif;
  font-weight: 400;
  color: var(--orion-color-dark);
}

.op-section-header h2,
.op-final-box h2 {
  font-size: 50px;
  line-height: 1.12;
  letter-spacing: -1.2px;
}

.op-section-header p,
.op-system-card p,
.op-structure-card p,
.op-info-card p,
.op-final-box p,
.op-service-card p {
  color: var(--orion-color-text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.op-section-header {
  max-width: 940px;
  margin: 0 auto 32px;
  text-align: center;
}

.op-kicker {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orion-color-primary);
}

.op-kicker::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--orion-color-accent);
  margin: 10px auto 0;
  border-radius: 999px;
}

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

.op-hero-wrap {
  padding: 0 0 48px;
}

.op-hero-box {
  background: linear-gradient(135deg, #1f1f1f 0%, var(--orion-color-dark) 100%);
  border-radius: 34px;
  padding: 58px 38px;
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.12);
  overflow: hidden;
}

.op-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 36px;
  align-items: start;
}

.op-hero-main {
  text-align: center;
}

.op-hero-main h1 {
  margin-left: auto;
  margin-right: auto;
  color: var(--orion-color-white);
}

.op-hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.op-hero-actions {
  justify-content: center;
}

.op-hero-main h1 {
  font-size: 74px;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 860px;
}

.op-hero-copy {
  margin: 28px 0 0;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.75;
}

.op-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.op-hero-actions .orion-btn {
  min-width: 330px;
  box-shadow: var(--orion-shadow-soft);
}
.op-hero-actions .orion-btn-primary {
  min-width: 330px;
}

.op-hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 34px 38px;
}

.op-hero-panel h3 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 22px;
}

.op-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.op-hero-list li {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.5;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.op-hero-list li:last-child {
  border-bottom: none;
}

/* ======================================== */
/* SECTIONS                                 */
/* ======================================== */

.op-section {
  padding: 34px 20px 60px;
}

.op-section-alt {
  background: var(--orion-color-bg-soft);
  border-radius: 30px;
}

/* ======================================== */
/* QUALIFIER BOX                            */
/* ======================================== */

.op-qualifier-box {
  max-width: 980px;
  margin: 0 auto;
  background: var(--orion-color-white);
  border: 1px solid var(--orion-color-border);
  border-radius: 20px;
  padding: 24px 28px;
  text-align: center;
}

.op-qualifier-box p {
  margin: 0;
  color: var(--orion-color-text-muted);
  line-height: 1.7;
}

/* ======================================== */
/* SERVICE CARDS                            */
/* ======================================== */

.op-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 34px;
}

.op-service-card {
  background: var(--orion-color-white);
  padding: 34px 32px 32px;
  border-radius: 24px;
  border: 1px solid var(--orion-color-border);
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.04);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.op-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(18, 18, 18, 0.08);
}

.op-service-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff3ee;
  color: var(--orion-color-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.op-service-card h3 {
  font-size: 30px;
  line-height: 1.16;
  margin-bottom: 14px;
}

.op-service-card p {
  margin: 0 0 22px;
}

.op-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.op-check-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: var(--orion-color-text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.op-check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orion-color-primary);
  font-size: 18px;
  line-height: 1.4;
}

/* ======================================== */
/* SYSTEMS SUPPORT                          */
/* ======================================== */

.op-system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.op-system-card {
  background: var(--orion-color-white);
  border: 1px solid var(--orion-color-border);
  border-radius: 22px;
  padding: 28px;
  transition: all 0.2s ease;
}

.op-system-card h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.op-system-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(18, 18, 18, 0.08);
}

/* ======================================== */
/* SERVICE STRUCTURE                        */
/* ======================================== */

.op-structure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 36px;
}

.op-structure-card {
  background: var(--orion-color-white);
  border: 1px solid var(--orion-color-border);
  border-radius: 22px;
  padding: 28px 24px;
  text-align: left;
  transition: all 0.2s ease;
}

.op-structure-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.op-structure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(18, 18, 18, 0.08);
}

.op-step {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--orion-color-gradient);
  color: var(--orion-color-white);
  font-size: 18px;
  font-weight: 700;
}

.op-note-box {
  max-width: 980px;
  margin: 30px auto 0;
  padding: 22px 24px;
  background: #fff8f4;
  border: 1px solid rgba(255, 106, 0, 0.10);
  border-radius: 18px;
  text-align: center;
}

.op-note-box p {
  margin: 0;
  color: var(--orion-color-text-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ======================================== */
/* TWO COLUMN INFO                          */
/* ======================================== */

.op-two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 34px;
}

.op-info-card {
  background: var(--orion-color-white);
  border: 1px solid var(--orion-color-border);
  border-radius: 22px;
  padding: 30px;
  transition: all 0.2s ease;
}

.op-info-card h3 {
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 18px;
}

.op-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(18, 18, 18, 0.08);
}

/* ======================================== */
/* FINAL CTA                                */
/* ======================================== */

.op-final-box {
  background: var(--orion-color-white);
  padding: 58px 56px 52px;
  border-radius: 28px;
  text-align: center;
  max-width: 1060px;
  margin: 0 auto;
  border: 1px solid var(--orion-color-border);
}

.op-final-box p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.op-final-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.op-final-actions .orion-btn {
  min-width: 280px;
}

/* ======================================== */
/* RESPONSIVE                               */
/* ======================================== */

@media (max-width: 1200px) {
  .op-hero-main h1 {
    font-size: 60px;
  }

  .op-hero-grid,
  .op-service-grid,
  .op-structure-grid {
    grid-template-columns: 1fr;
  }

  .op-system-grid,
  .op-two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .op-section-header h2,
  .op-final-box h2 {
    font-size: 40px;
  }

  .op-hero-main h1 {
    font-size: 50px;
  }
}

@media (max-width: 640px) {
  .orion-providers {
    padding: 18px;
  }

  .op-hero-box,
  .op-service-card,
  .op-system-card,
  .op-structure-card,
  .op-info-card,
  .op-final-box,
  .op-hero-panel,
  .op-qualifier-box {
    padding: 24px;
  }

  .op-hero-main h1 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .op-section-header h2,
  .op-final-box h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

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

  .op-hero-actions .orion-btn,
  .op-final-actions .orion-btn {
    width: 100%;
    min-width: 0;
  }

  .op-hero-actions .orion-btn-primary,
  .op-final-actions .orion-btn-primary {
    min-width: 0;
  }
}

/* FIX: hero right card text contrast */

.op-hero-panel {
  color: rgba(255, 255, 255, 0.9);
}

.op-hero-panel h3 {
  color: var(--orion-color-white);
}

.op-hero-panel p,
.op-hero-panel li {
  color: rgba(255, 255, 255, 0.85);
}