.orc-page {
  background: var(--bg);
}

.orc-page .page-content {
  padding-top: 0;
}

.kf-section-title {
  max-width: 800px;
  margin-inline: auto;
}

/* HERO */
.orc-hero {
  padding: 116px 20px 88px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 2%, color-mix(in srgb, var(--primary) 12%, transparent) 0%, transparent 58%),
    var(--bg);
}

.orc-hero .kf-container,
.orc-section .kf-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orc-hero .kf-section-title,
.orc-section .kf-section-title {
  max-width: 16ch;
  font-weight: 800;
  line-height: 1.1;
  text-wrap: balance;
}

.orc-hero .kf-section-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  letter-spacing: -0.035em;
  max-width: 13ch;
}

.orc-hero__desc {
  color: var(--muted);
  margin: 1.25rem 0 2.25rem;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 40rem;
  text-wrap: balance;
}

.orc-hero__footnote {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.orc-preview {
  position: relative;
  margin-top: 30px;
  margin-bottom: 80px;
}

.orc-preview::before {
  content: "";
  position: absolute;
  inset: -50px;
  background: radial-gradient(
    circle,
    rgb(59 130 246 / 15%),
    transparent 70%
  );
  filter: blur(80px);
  z-index: 0;
}

.orc-preview .kf-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.orc-preview h3 {
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 500;
}

.orc-preview img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(720px, 90%);
  filter: brightness(1.08) contrast(1.05);
  border-radius: 18px;
  border: 1px solid rgb(255 255 255 / 8%);
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateX(2deg);
  cursor: zoom-in;
}

.img-modal {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 1200;
}

.img-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.img-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

/* SECTIONS */
.orc-section {
  margin: 82px 0;
}

.orc-section .kf-section-title {
  max-width: 22ch;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  text-align: center;
}

/* LIST */
.orc-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 880px;
  justify-content: center;
}

/* CARDS */
.orc-card {
  background: var(--card);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  text-align: center;
  line-height: 1.55;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.orc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 12%);
  border-color: color-mix(in srgb, var(--primary) 26%, var(--border));
}

/* PRICE */
.orc-price {
  text-align: center;
}

.orc-price .kf-container {
  gap: 6px;
}

.orc-price__value {
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  font-weight: 800;
  color: var(--primary);
  margin: 22px 0 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* UPSELL */
.orc-upsell {
  text-align: center;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 3%), rgb(255 255 255 / 1%)),
    color-mix(in srgb, var(--primary) 5%, var(--card));
  padding: 36px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  max-width: 720px;
}

.orc-upsell h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
}

.orc-upsell p {
  max-width: 56ch;
  margin: 0 auto 26px;
  color: var(--muted);
  line-height: 1.65;
}

.orc-page .kf-btn {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.orc-page .kf-btn:hover {
  transform: translateY(-1px);
}

.orc-page .kf-btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgb(59 130 246 / 25%);
}

.orc-page .kf-btn--primary:hover {
  background: color-mix(in srgb, var(--primary) 88%, white);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 28%, transparent);
}

.orc-page .kf-btn--light {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.orc-page .kf-btn--light:hover {
  background: color-mix(in srgb, var(--primary) 7%, var(--card));
  border-color: color-mix(in srgb, var(--primary) 24%, var(--border));
  box-shadow: var(--shadow-md);
}

.orc-upsell .kf-btn--light {
  text-decoration: none;
  background: rgb(255 255 255 / 4%);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.orc-upsell .kf-btn--light:hover {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 20%);
  transform: translateY(-1px);
}

@media (width <= 900px) {
  .orc-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }
}

@media (width <= 640px) {
  .orc-hero {
    padding: 104px 20px 68px;
  }

  .orc-section {
    margin: 64px 0;
  }

  .orc-preview {
    margin: 0 0 8px;
  }

  .orc-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .orc-upsell {
    padding: 24px;
  }
}
