/* ─── CERTIFICATION PAGE — PAGE-SPECIFIC STYLES ─── */

/* ─── SECTION SCAFFOLD ─── */
.section {
  margin: 25px 30px;
  background: #fff;
  border-radius: 25px;
  box-shadow: var(--rev-shadow-card);
  overflow: hidden;
}

.section-pad {
  padding: clamp(36px, 3.5vw, 52px) clamp(28px, 5vw, 73px);
}

@media (max-width: 720px) {
  .section {
    margin: 16px 12px;
    border-radius: 20px;
  }
}

.section-dark {
  margin: 25px 30px;
  background: var(--rev-navy-900);
  color: #fff;
  border-radius: 25px;
  box-shadow: var(--rev-shadow-card);
  overflow: hidden;
  position: relative;
}

.section-dark::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--rev-blue-orb-15);
  filter: blur(60px);
  pointer-events: none;
}

@media (max-width: 720px) {
  .section-dark {
    margin: 16px 12px;
    border-radius: 20px;
  }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  margin: 16px 30px 0;
  border-radius: 25px;
  overflow: hidden;
  background: url('../../images/hero-section-backgroud-blue-gradient.webp') center center / cover no-repeat;
  color: #fff;
  min-height: 500px;
  padding: 40px 80px 40px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to right, rgba(4, 18, 45, 0.82) 0%, rgba(4, 18, 45, 0.68) 35%, rgba(4, 18, 45, 0.35) 65%, rgba(4, 18, 45, 0.55) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(4, 18, 45, 0.35) 0%, transparent 25%, transparent 75%, rgba(4, 18, 45, 0.25) 100%);
}

@media (max-width: 720px) {
  .hero {
    margin: 100px 30px 0;
    padding: 120px 24px 60px;
    min-height: 0;
    border-radius: 20px 20px 0 0;
  }
}

/* ─── HERO CONTENT ─── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--rev-blue-300);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin-top: 20px;
  margin-bottom: 32px;
}


.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5c9767;
  animation: live-dot-pulse 1.4s infinite;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 10px 0 28px;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--rev-blue-300);
  white-space: nowrap;
}

.hero-body {
  display: block;
  position: relative;
  z-index: 2;
  align-items: start;
}

@media (max-width: 900px) {
  .hero-body {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
}

.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.hero-lede + .hero-lede {
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-stats {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-stat-label {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 8px;
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}

.hero-stat-num.accent {
  color: var(--rev-blue-100);
}

.hero-stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 5px 0 0;
}

/* ─── PAGE BUTTONS ─── */
.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 8px 0 28px;
  background: var(--rev-cta-gradient);
  color: #fff;
  border: none;
  border-radius: var(--rev-radius-pill);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-pill:hover {
  filter: brightness(1.1);
}

.btn-primary-pill .circle-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rev-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-pill .circle-arrow svg {
  width: 18px;
  height: 18px;
}

.btn-white-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  background: #fff;
  color: var(--rev-navy-900);
  border: none;
  border-radius: var(--rev-radius-pill);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-white-pill:hover {
  background: var(--rev-blue-25);
}

/* ─── EYEBROWS & SECTION HEADS ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rev-blue);
  font-family: var(--rev-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


.eyebrow-dark {
  color: var(--rev-blue-300);
}

.sec-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rev-blue-100);
}

.section-dark .sec-head {
  border-bottom-color: rgba(255, 255, 255, 0.09);
}

@media (max-width: 900px) {
  .sec-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.sec-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--rev-text);
  margin: 20px 0 0;
}

.sec-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rev-blue);
}

.section-dark .sec-title {
  color: #fff;
}

.section-dark .sec-title em {
  color: var(--rev-blue-300);
}

.sec-side {
  font-size: 17px;
  line-height: 1.5;
  color: var(--rev-text);
  font-weight: 400;
  margin: 0;
}

.section-dark .sec-side {
  color: rgba(255, 255, 255, 0.65);
}

/* ─── HERO CREDENTIAL CARDS STACK ─── */
.cred-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cred-stack-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
}

.cred-stack-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}

.cred-stack-item.elite {
  border-color: rgba(0, 86, 235, 0.5);
  background: rgba(0, 86, 235, 0.14);
}

.cred-stack-item.elite:hover {
  background: rgba(0, 86, 235, 0.22);
}

.cred-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.cred-badge-l1 {
  background: var(--rev-blue);
  color: #fff;
}

.cred-badge-l2 {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.cred-badge-l3 {
  background: rgba(161, 179, 233, 0.2);
  border: 1.5px solid var(--rev-blue-300);
  color: var(--rev-blue-300);
}

.cred-badge-elite {
  background: var(--rev-blue);
  color: #fff;
}

.cred-meta {
  flex: 1;
}

.cred-tier-label {
  font-family: var(--rev-font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 3px;
}

.cred-stack-item.elite .cred-tier-label {
  color: var(--rev-blue-300);
}

.cred-name {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.cred-arrow {
  font-family: var(--rev-font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.cred-stack-note {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.966);
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

/* ─── HERO BOTTOM TIER STRIP (matches products Arc cards) ─── */
.cert-tier-strip {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 3;
  width: 100%;
}

.cert-tier-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-tier-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  margin: 0;
}

.cert-tier-progress {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

.cert-tier-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cert-tier-card {
  background: var(--rev-navy-600);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--rev-radius-md);
  padding: 24px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  display: block;
}

.cert-tier-card:hover {
  background: var(--rev-navy-500);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
}

.cert-tier-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.cert-tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.cert-tier-strip-label {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
}

.cert-tier-card-name {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 6px;
}

.cert-tier-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

/* ─── HERO ARC-STYLE CERT CARDS (2×2 grid) ─── */
.cert-arc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.cert-arc-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: #fff;
  display: block;
  transition: all 0.3s ease;
}

.cert-arc-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
}

.cert-arc-card.elite {
  background: rgba(0, 86, 235, 0.18);
  border-color: rgba(0, 86, 235, 0.5);
}

.cert-arc-card.elite:hover {
  background: rgba(0, 86, 235, 0.28);
  border-color: rgba(0, 86, 235, 0.9);
}

.cert-arc-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.cert-arc-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}

.cert-arc-badge-l1 { background: var(--rev-pos); }
.cert-arc-badge-l2 { background: var(--rev-blue); }
.cert-arc-badge-l3 { background: var(--rev-warn); }
.cert-arc-badge-elite { background: var(--rev-blue-400); }

.cert-arc-label {
  font-family: var(--rev-font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

.cert-arc-name {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 5px;
  color: #fff;
}

.cert-arc-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
  margin: 0;
}

/* ─── THINKING SECTION - 3 ARTICLE GRID ─── */
.thinking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rev-blue-100);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .thinking-grid {
    grid-template-columns: 1fr;
  }
}

.thinking-card {
  background: #fff;
  padding: 36px 32px;
}

.thinking-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--rev-blue-400);
  margin-bottom: 8px;
}

.thinking-tag {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rev-blue);
  margin-bottom: 16px;
}

.thinking-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--rev-text);
  margin-bottom: 12px;
}

.thinking-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--rev-text-muted);
}

/* ─── FOUR LEVELS CARDS ─── */
.levels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 720px) {
  .levels-grid {
    grid-template-columns: 1fr;
  }
}

.level-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 32px;
  text-decoration: none;
  color: #fff;
  transition: border-color 0.2s;
  display: block;
}

.level-card-l1:hover {
  border-color: #7c3aed !important;
}

.level-card-l2:hover {
  border-color: #a70000 !important;
}

.level-card-l3:hover {
  border-color: #16a34a !important;
}

.level-card.elite-card {
  border: 2px solid #b45309;
  box-shadow: 0 0 0 1px #b45309, 0 0 40px rgba(180, 83, 9, 0.2);
}

.level-card.elite-card:hover {
  border-color: #b45309;
}

.level-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.level-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.level-badge-l1 {
  background: #7c3aed;
  color: #fff;
}

.level-badge-l2 {
  background: #a70000;
  color: #fff;
  border: none;
}

.level-badge-l3 {
  background: #16a34a;
  color: #fff;
  border: none;
}

.level-badge-elite {
  background: #b45309;
  color: #fff;
}

.level-tier-label {
  font-family: var(--rev-font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.elite-card .level-tier-label {
  color: var(--rev-blue-300);
}

.level-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.level-subtitle {
  font-family: var(--rev-font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--rev-blue-300);
  margin-bottom: 16px;
}

.level-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.level-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.elite-card .level-footer {
  border-top-color: rgba(0, 86, 235, 0.3);
}

.level-audience {
  font-family: var(--rev-font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.level-link-arrow {
  font-family: var(--rev-font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.level-card:hover .level-link-arrow {
  color: var(--rev-blue-300);
}

/* ─── ROUTING SECTION ─── */
.routing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rev-blue-100);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 720px) {
  .routing-grid {
    grid-template-columns: 1fr;
  }
}

.routing-card {
  background: #fff;
  padding: 40px 36px;
}

.routing-card.dark {
  background: var(--rev-navy-900);
  color: #fff;
}

.routing-card.accent {
  background: var(--rev-blue-25);
}

.routing-num {
  font-family: var(--rev-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rev-blue-400);
  margin-bottom: 6px;
}

.routing-card.dark .routing-num {
  color: rgba(255, 255, 255, 0.35);
}

.routing-role {
  font-family: var(--rev-font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rev-blue);
  margin-bottom: 20px;
}

.routing-card.dark .routing-role {
  color: var(--rev-blue-300);
}

.routing-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--rev-text);
  margin-bottom: 16px;
}

.routing-title em {
  font-style: italic;
  font-weight: 300;
}

.routing-card.dark .routing-title {
  color: #fff;
}

.routing-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--rev-text);
  margin-bottom: 24px;
}

.routing-card.dark .routing-body {
  color: rgba(255, 255, 255, 0.7);
}

.routing-body strong {
  color: var(--rev-text);
  font-weight: 600;
}

.routing-card.dark .routing-body strong {
  color: #fff;
}

.routing-cta {
  font-family: var(--rev-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rev-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.routing-card.dark .routing-cta {
  color: var(--rev-blue-300);
}

/* ─── MANDATORY SECTION ─── */
.mandatory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 720px) {
  .mandatory-grid {
    grid-template-columns: 1fr;
  }
}

.mandatory-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 40px 36px;
}

.mandatory-card.full {
  grid-column: 1 / -1;
  background: rgba(0, 86, 235, 0.06);
  border: 1px solid rgba(0, 86, 235, 0.15);
  border-radius: 0 0 16px 16px;
}

@media (max-width: 720px) {
  .mandatory-card.full {
    grid-column: 1;
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .mandatory-card {
    padding: 32px 20px;
  }

  .mandatory-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .cert-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .cert-row-badge {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .cert-row-label {
    font-size: 15px;
  }

  .cert-row-body {
    font-size: 13px;
  }
}

@media (max-width: 450px) {
  .cert-row,
  .mandatory-elite-row {
    flex-direction: column !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}

.mandatory-tag {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tag-required {
  color: var(--rev-blue-300);
}

.tag-conditional {
  color: rgba(255, 255, 255, 0.55);
}

.tag-not-required {
  color: var(--rev-blue-300);
}

.mandatory-count {
  font-family: var(--rev-font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.mandatory-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mandatory-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 24px;
}

.cert-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.cert-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.cert-row-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.cert-row-badge-l1 {
  background: #7c3aed;
  color: #fff;
}

.cert-row-badge-l2 {
  background: #a70000;
  color: #fff;
  border: none;
}

.cert-row-badge-l3 {
  background: #16a34a;
  color: #fff;
  border: none;
}

.cert-row-badge-elite {
  background: #b45309;
  color: #fff;
}

.cert-row-label {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.cert-row-body {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* ─── QUOTE SECTION ─── */
.quote-block {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--rev-text);
  max-width: 880px;
}

.quote-highlight {
  background: var(--rev-blue);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
}

.quote-attr {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 2px solid var(--rev-navy-900);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.quote-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--rev-text);
}

.quote-role {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rev-text-muted);
}

.quote-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.quote-badge-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.quote-badge-l1 {
  background: var(--rev-blue);
  color: #fff;
}

.quote-badge-l2 {
  background: rgba(4, 18, 45, 0.08);
  border: 1.5px solid var(--rev-text-muted);
  color: var(--rev-text-muted);
}

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--rev-blue-100);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: var(--rev-text);
  letter-spacing: -0.01em;
}

.faq-plus {
  font-family: var(--rev-font-mono);
  font-size: 22px;
  flex-shrink: 0;
  color: var(--rev-blue);
  transition: transform 0.2s;
}

details[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--rev-text);
  max-width: 800px;
}

/* ─── CTA SECTION ─── */
.cta-note {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 32px;
}

/* ─── PATH STRIP IN HERO ─── */
.path-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.path-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.path-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rev-font-mono);
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}

.path-dot-done {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.966);
  color: rgba(255, 255, 255, 0.45);
}

.path-dot-active {
  background: var(--rev-blue);
  color: #fff;
}

.path-step-label {
  font-family: var(--rev-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.path-step-label.active {
  color: var(--rev-blue-300);
  font-weight: 600;
}

.path-arrow {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
    margin-bottom: 13px !important;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  main {
    margin-top: 0 !important;
  }

  .hero {
    margin: 12px 12px 0 !important;
    border-radius: 0 !important;
    padding: 28px 20px 40px !important;
    min-height: 0 !important;
  }

  .section,
  .section-dark {
    margin: 20px 12px 0 !important;
    border-radius: 0 !important;
  }

  .sec-wrap,
  .leak-section,
  .hero-wrap {
    margin: 20px 12px 0 !important;
  }

  .hero-title {
    text-align: center !important;
  }

  .hero-eyebrow {
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .hero-lede {
    text-align: center !important;
  }

  .hero-actions {
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 32px !important;
  }

  #start .hero-actions {
    justify-content: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-primary-pill,
  .btn-white-pill,
  .hero-actions .r-btn {
    height: 44px !important;
    font-size: 13px !important;
    padding: 0 12px !important;
    white-space: nowrap !important;
  }

  .btn-primary-pill {
    padding: 0 4px 0 14px !important;
  }

  .btn-primary-pill .circle-arrow {
    width: 32px !important;
    height: 32px !important;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }

  .sec-title {
    font-size: min(22px, 5.5vw) !important;
  }

  /* ── Cert tier strip mobile ── */
  .cert-tier-strip {
    margin-top: 40px !important;
    width: 100% !important;
  }

  .cert-tier-strip-header {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    gap: 6px !important;
  }

  .cert-tier-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .cert-tier-card {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    column-gap: 16px !important;
    row-gap: 2px !important;
    padding: 14px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .cert-tier-card-top {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0 !important;
  }

  .cert-tier-card-top .cert-tier-strip-label {
    display: none !important;
  }

  .cert-tier-card-name {
    grid-column: 2 !important;
    grid-row: 1 !important;
    font-size: 15px !important;
    text-align: left !important;
    margin: 0 !important;
  }

  .cert-tier-card-desc {
    grid-column: 2 !important;
    grid-row: 2 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    text-align: left !important;
    margin: 0 !important;
  }
}

@media (max-width: 800px) {
  .cert-tier-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
