/* Generated by tools/build-theme-css.py. Do not edit directly. */
.cb-course-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: livePulse 2s ease infinite;
}

/* Prototype-matched inner page sections */
.sub-hero {
  background: var(--navy-deep);
  padding: 72px 32px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(184, 41, 45, 0.06), transparent 50%);
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.sub-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 500;
  animation: hStag 0.6s var(--ease-out) 0.1s both;
}

.sub-hero h1 .ri {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
}

.sub-hero > p {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  line-height: 1.7;
  animation: hStag 0.6s var(--ease-out) 0.2s both;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.c-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(27, 38, 85, 0.04);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: all 0.4s var(--ease-spring);
}

.c-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-strong);
}

.c-thumb {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.c-thumb.has-image {
  overflow: hidden;
  padding: 0;
  font-size: 0;
}

.c-thumb.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.c-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
}

.ct1 { background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid)); }
.ct2 { background: linear-gradient(135deg, #1a3d35, #2d7a5e); }
.ct3 { background: linear-gradient(135deg, #5a1520, var(--red)); }

.c-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.c-body h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
}

.c-title-link {
  color: inherit;
  text-decoration: none;
}

.c-title-link:hover {
  color: var(--red);
}

.c-sub {
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.c-body > p {
  margin: 0 0 14px;
  color: var(--stone);
  font-size: 13.5px;
  line-height: 1.6;
}

.c-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}

.c-tag {
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--cream);
  color: var(--stone);
  font-size: 11px;
  font-weight: 500;
  transition: all 0.2s;
}

.c-tag:hover {
  background: var(--red-glow);
  color: var(--red);
}

.c-details-link {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
}

.c-details-link:hover {
  color: var(--navy);
}

.c-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid rgba(27, 38, 85, 0.05);
}

.c-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.3s var(--ease-spring);
}

.c-enroll:hover {
  background: var(--red);
  transform: scale(1.05);
}

.cipt-page {
  --navy: #1b2655;
  --navy-deep: #0e1632;
  --navy-mid: #243070;
  --red: #b8292d;
  --red-dark: #9d1f24;
  --red-glow: rgba(184, 41, 45, 0.12);
  --cream: #f8f5f0;
  --white: #fff;
  --stone: #8a8475;
  --charcoal: #2d2d2d;
  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 8px;
  --shadow-soft: 0 2px 16px rgba(27, 38, 85, 0.06);
  --shadow-med: 0 8px 32px rgba(27, 38, 85, 0.1);
  --shadow-strong: 0 20px 60px rgba(27, 38, 85, 0.16);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  color: var(--charcoal);
  background: var(--navy-deep);
}

.cipt-page * {
  box-sizing: border-box;
}

.cipt-page .hero,
.cipt-page .sec {
  position: relative;
  overflow: hidden;
}

.cipt-page .hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cipt-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 22, 50, 0.94) 0%, rgba(27, 38, 85, 0.88) 55%, rgba(14, 22, 50, 0.86) 100%);
  z-index: 1;
}

.cipt-page .hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
}

.cipt-page .hero-orb,
.cipt-page .hero-orb2 {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}

.cipt-page .hero-orb {
  right: -60px;
  top: 0;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(184, 41, 45, 0.12), transparent 60%);
  animation: cipt-ho 8s ease-in-out infinite;
}

.cipt-page .hero-orb2 {
  left: -100px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 41, 45, 0.08), transparent 60%);
  animation: cipt-ho2 11s ease-in-out infinite;
}

.cipt-page .hero-accent-l {
  position: absolute;
  left: 0;
  top: 30%;
  width: 3px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  z-index: 3;
}

@keyframes cipt-ho {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1) translate(-20px, 10px);
  }
}

@keyframes cipt-ho2 {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08) translate(20px, -15px);
  }
}

.cipt-page .hero-inner,
.cipt-page .sec-inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.cipt-page .hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 80px 40px;
}

.cipt-page .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 5px 16px 5px 8px;
  border: 1px solid rgba(184, 41, 45, 0.2);
  border-radius: 50px;
  background: rgba(184, 41, 45, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cipt-page .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: cipt-gpulse 2s ease infinite;
}

@keyframes cipt-gpulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 41, 45, 0.6);
  }
  60% {
    box-shadow: 0 0 0 7px rgba(184, 41, 45, 0);
  }
}

.cipt-page .hero-h1 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.04;
  font-weight: 500;
}

.cipt-page .hero-h1 em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, var(--red), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cipt-page .hero-h1--zh-single {
  white-space: nowrap;
  font-size: clamp(42px, 5vw, 66px);
}

.cipt-page .hero-h1--zh-single em {
  font-style: normal;
}

.cipt-page .hero-sub {
  max-width: 460px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
  line-height: 1.72;
}

.cipt-page .band-bar {
  margin-bottom: 40px;
}

.cipt-page .band-bar-label,
.cipt-page .band-note,
.cipt-page .sc-eyebrow,
.cipt-page .sc-band-l,
.cipt-page .eyebrow,
.cipt-page .srow-time,
.cipt-page .srow-tag,
.cipt-page .test-band {
  font-family: var(--font-mono);
}

.cipt-page .band-bar-label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cipt-page .band-track {
  display: flex;
  height: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.cipt-page .band-seg {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s;
}

.cipt-page .band-seg:last-child {
  border-right: 0;
}

.cipt-page .bs-muted {
  color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.cipt-page .bs-active {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.07);
}

.cipt-page .bs-target {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.cipt-page .band-note {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

.cipt-page .hero-actions,
.cipt-page .cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cipt-page .btn-primary,
.cipt-page .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s var(--ease-spring);
}

.cipt-page .btn-primary {
  border: none;
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 30px rgba(184, 41, 45, 0.35);
}

.cipt-page .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

.cipt-page .btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.cipt-page .btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

.cipt-page .score-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.cipt-page .score-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.cipt-page .sc-eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cipt-page .sc-title {
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
}

.cipt-page .sc-bands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.cipt-page .sc-band {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.cipt-page .sc-band-n {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.cipt-page .sc-band-l {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cipt-page .sc-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cipt-page .scd {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.cipt-page .scd-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
}

.cipt-page .rv {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.65s var(--ease-out);
}

.cipt-page .rv.v {
  opacity: 1;
  transform: none;
}

.cipt-page .rvl {
  opacity: 0;
  transform: translateX(-32px);
  transition: all 0.65s var(--ease-out);
}

.cipt-page .rvl.v {
  opacity: 1;
  transform: none;
}

.cipt-page .rvr {
  opacity: 0;
  transform: translateX(32px);
  transition: all 0.65s var(--ease-out);
}

.cipt-page .rvr.v {
  opacity: 1;
  transform: none;
}

.cipt-page .sec {
  padding: 80px 40px;
}

.cipt-page .sec-cream {
  background: var(--cream);
}

.cipt-page .sec-white {
  background: var(--white);
}

.cipt-page .sec-dark {
  background: var(--navy-deep);
}

.cipt-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.cipt-page .eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  border-radius: 1px;
  background: var(--red);
}

.cipt-page .eyebrow-center {
  justify-content: center;
  display: flex;
}

.cipt-page .sec-h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 600;
}

.cipt-page .sec-p {
  max-width: 520px;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.72;
}

.cipt-page .components-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cipt-page .comp-card {
  overflow: hidden;
  border: 1px solid rgba(27, 38, 85, 0.05);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: all 0.4s var(--ease-spring);
}

.cipt-page .comp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.cipt-page .comp-top {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 160px;
  font-size: 36px;
}

.cipt-page .comp-top img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cipt-page .comp-top-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 22, 50, 0.72), rgba(14, 22, 50, 0.08));
}

.cipt-page .comp-emoji {
  position: relative;
  z-index: 2;
  padding: 14px 16px;
  font-size: 32px;
  line-height: 1;
}

.cipt-page .comp-band {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
}

.cipt-page .comp-body {
  padding: 24px;
}

.cipt-page .comp-body h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

.cipt-page .comp-score {
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cipt-page .comp-body p {
  margin: 0 0 14px;
  color: var(--stone);
  font-size: 13.5px;
  line-height: 1.65;
}

.cipt-page .comp-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.cipt-page .csk {
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--cream);
  color: var(--stone);
  font-size: 11px;
}

.cipt-page .mock-block {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  margin-top: 0;
  border-radius: var(--radius-xl);
  background: var(--navy);
}

.cipt-page .mock-block::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 41, 45, 0.07), transparent 60%);
  pointer-events: none;
}

.cipt-page .mock-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.cipt-page .mock-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

.cipt-page .mock-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--navy) 100%);
}

.cipt-page .mock-left,
.cipt-page .mock-right {
  position: relative;
  z-index: 2;
}

.cipt-page .mock-left {
  padding: 48px 36px;
}

.cipt-page .mock-left h2 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.1;
}

.cipt-page .mock-left p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: 1.72;
}

.cipt-page .mock-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 48px 40px 48px 0;
}

.cipt-page .mock-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(184, 41, 45, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s;
}

.cipt-page .mock-item:hover {
  border-color: rgba(184, 41, 45, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.cipt-page .mock-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(184, 41, 45, 0.12);
  color: var(--red);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
}

.cipt-page .mock-text h5 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
}

.cipt-page .mock-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 1.5;
}

.cipt-page .sched-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.cipt-page .sched-copy-text {
  margin-bottom: 24px;
}

.cipt-page .sched-media {
  height: 180px;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
}

.cipt-page .sched-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cipt-page .sched-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.cipt-page .sched-head {
  padding: 22px 30px;
  background: var(--navy);
}

.cipt-page .sched-head h3 {
  margin: 0 0 4px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
}

.cipt-page .sched-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12.5px;
}

.cipt-page .sched-rows {
  padding: 8px 0;
}

.cipt-page .srow {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(27, 38, 85, 0.05);
  transition: background 0.2s;
}

.cipt-page .srow:last-child {
  border-bottom: none;
}

.cipt-page .srow:hover {
  background: var(--cream);
}

.cipt-page .srow-time {
  color: var(--red);
  font-size: 12px;
  font-weight: 500;
}

.cipt-page .srow-act {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.cipt-page .srow-note {
  color: var(--stone);
  font-size: 12px;
}

.cipt-page .srow-tag {
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(184, 41, 45, 0.1);
  color: var(--red-dark);
  white-space: nowrap;
  font-size: 10px;
  font-weight: 500;
}

.cipt-page .for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.cipt-page .for-grid-single {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.cipt-page .for-card {
  padding: 24px;
  border-left: 3px solid var(--red);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all 0.3s;
}

.cipt-page .for-card:hover {
  box-shadow: var(--shadow-med);
  transform: translateX(4px);
}

.cipt-page .for-card h4 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 700;
}

.cipt-page .for-card p {
  margin: 0;
  color: var(--stone);
  font-size: 13px;
  line-height: 1.6;
}

.cipt-page .pathway-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 36px 40px;
  border: 1px solid rgba(184, 41, 45, 0.15);
  border-radius: var(--radius-xl);
  background: var(--cream);
}

.cipt-page .pathway-items {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}

.cipt-page .path-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}

.cipt-page .pi-1 {
  background: var(--red-glow);
  color: var(--red);
}

.cipt-page .pi-2 {
  background: rgba(184, 41, 45, 0.1);
  color: var(--red-dark);
}

.cipt-page .pi-3 {
  background: rgba(27, 38, 85, 0.06);
  color: var(--navy);
}

.cipt-page .path-arrow {
  color: var(--stone);
  font-size: 14px;
}

.cipt-page .pathway-text p {
  max-width: 260px;
  margin: 0;
  color: var(--stone);
  font-size: 13px;
  line-height: 1.5;
}

.cipt-page .test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cipt-page .test-card {
  padding: 26px;
  border: 1px solid rgba(27, 38, 85, 0.05);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all 0.4s var(--ease-spring);
}

.cipt-page .test-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-med);
}

.cipt-page .test-band {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cipt-page .test-card blockquote {
  margin: 0 0 14px;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
}

.cipt-page .test-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(27, 38, 85, 0.05);
}

.cipt-page .test-avatar {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  font-size: 15px;
}

.cipt-page .test-name {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.cipt-page .test-detail {
  color: var(--stone);
  font-size: 11.5px;
}

.cipt-page .cta-block {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  text-align: center;
}

.cipt-page .cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 41, 45, 0.07), transparent 60%);
}

.cipt-page .cta-block::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cipt-page .cta-block h2,
.cipt-page .cta-block p,
.cipt-page .cta-btns {
  position: relative;
  z-index: 2;
}

.cipt-page .cta-block h2 {
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
}

.cipt-page .cta-block p {
  max-width: 420px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14.5px;
}

.cipt-page .cta-btns {
  justify-content: center;
}

.cipt-page .faq-shell {
  max-width: 700px;
  margin: 0 auto;
}

.cipt-page .faq-title {
  text-align: center;
}

.cipt-page .faq-list {
  display: flex;
  flex-direction: column;
}

.cipt-page .faq-item {
  border-bottom: 1px solid rgba(27, 38, 85, 0.07);
}

.cipt-page .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.cipt-page .faq-q h4 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

.cipt-page .faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--stone);
  font-size: 15px;
  transition: all 0.3s;
}

.cipt-page .faq-item.open .faq-icon {
  background: rgba(184, 41, 45, 0.1);
  color: var(--red);
  transform: rotate(45deg);
}

.cipt-page .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.cipt-page .faq-item.open .faq-a {
  max-height: 240px;
}

.cipt-page .faq-a-inner {
  padding: 0 0 18px;
  color: var(--stone);
  font-size: 13.5px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .sub-hero {
    padding: 64px 24px 48px;
  }
}

@media (max-width: 1024px) {
  .cipt-page .hero-inner {
    grid-template-columns: 1fr;
  }

  .cipt-page .components-grid,
  .cipt-page .for-grid,
  .cipt-page .test-grid {
    grid-template-columns: 1fr;
  }

  .cipt-page .mock-block {
    grid-template-columns: 1fr 1fr;
  }

  .cipt-page .mock-img {
    display: none;
  }

  .cipt-page .mock-left {
    padding: 36px 28px;
  }

  .cipt-page .mock-right {
    padding: 36px 28px;
  }

  .cipt-page .sched-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cipt-page .srow {
    grid-template-columns: 100px 1fr;
    gap: 8px;
  }

  .cipt-page .srow-tag {
    display: none;
  }
}

@media (max-width: 640px) {
  .cipt-page .sec {
    padding: 56px 20px;
  }

  .cipt-page .hero-inner {
    padding: 56px 20px;
  }

  .cipt-page .pathway-items {
    flex-direction: column;
    align-items: flex-start;
  }

  .cipt-page .cta-block {
    padding: 40px 24px;
  }
}
