/* ============================================
   Schema Hub Page — schema_hub.css
   Light-themed page, alternating sections
   ============================================ */

/* Page base override */
.sh-page {
  background: #fafbfc;
  font-family: 'Roboto', sans-serif;
}

/* ---- Hero ---- */
.sh-hero {
  background: #002a55;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.sh-hero-breadcrumb {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: -2.5rem auto 1.5rem;
  text-align: left;
  padding: 0 1.5rem;
}

.sh-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sh-hero-bg-circle-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #39FF12;
  opacity: 0.03;
}

.sh-hero-bg-circle-2 {
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: #0d7a00;
  opacity: 0.02;
}

.sh-hero-bg-square {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 8rem;
  height: 8rem;
  border: 4px solid #39FF12;
  opacity: 0.08;
  transform: rotate(45deg);
}

.sh-hero-bg-line {
  position: absolute;
  top: 40%;
  left: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, transparent, #39FF12, transparent);
  opacity: 0.1;
}

.sh-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sh-hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #39FF12;
  margin-bottom: 1rem;
}

.sh-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.sh-hero p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.sh-hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sh-btn-primary {
  background: #39FF12;
  color: #002a55;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.sh-btn-primary:hover { background: #30dd10; }

.sh-btn-outline {
  background: transparent;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid #fff;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.sh-btn-outline:hover { background: #fff; color: #002a55; }

/* ---- Jump Nav ---- */
.sh-jump-nav {
  background: #002a55;
  padding: 1rem 1.5rem;
  position: relative;
  z-index: 200;
  border-top: 1px solid rgba(57,255,18,0.15);
}

.sh-jump-nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.sh-jump-nav-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sh-jump-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sh-jump-nav button {
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
  font-family: 'Roboto', sans-serif;
}

.sh-jump-nav button:hover,
.sh-jump-nav button.is-active {
  color: #39FF12;
}

/* ---- Logo Carousel ---- */
.sh-logos {
  background: #001327;
  padding: 2rem 1.5rem;
  text-align: center;
}

.sh-logos p {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.sh-logos-strip {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.6;
}

.sh-logo-item {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

/* ---- Shared section wrapper ---- */
.sh-section {
  padding: 4rem 1.5rem;
}

.sh-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sh-section-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #002a55;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.sh-section-title--center {
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
}

.sh-section-subtitle {
  font-size: 1rem;
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* ---- What Is Schema ---- */
.sh-what-box {
  background: #f0f5ff;
  border: 1px solid #d0e4ff;
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.sh-what-box p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.8;
  margin: 0;
}

.sh-insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.sh-insight-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.sh-insight-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d7a00;
  margin-bottom: 0.75rem;
  display: block;
}

.sh-insight-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #39FF12;
  margin-bottom: 1rem;
}

.sh-insight-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #002a55;
  margin-bottom: 0.5rem;
}

.sh-insight-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ---- Decision Layer ---- */
.sh-decision {
  background: #fafbfc;
}

.sh-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.sh-toggle {
  display: inline-flex;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.375rem;
  overflow: hidden;
}

.sh-toggle button {
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  background: #fff;
  color: #64748b;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'Roboto', sans-serif;
}

.sh-toggle button.is-active {
  background: #002a55;
  color: #fff;
}

.sh-toggle-divider {
  width: 1.5px;
  background: #e2e8f0;
}

.sh-decision-panel {
  background: #f8faff;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 2rem 2.5rem;
}

.sh-decision-panel h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #002a55;
  margin-bottom: 1.5rem;
}

.sh-decision-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.sh-decision-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e8edf3;
  font-size: 1rem;
  color: #334155;
  line-height: 1.5;
}

.sh-decision-item:last-child { border-bottom: none; }

.sh-check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #0d7a00;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---- Free Tools ---- */
.sh-tool-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.sh-tool-card:hover {
  border-color: #39FF12;
  box-shadow: 0 0 30px rgba(57,255,18,0.15);
}

.sh-tool-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.sh-badge {
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sh-badge--dark { background: #002a55; color: #39FF12; }
.sh-badge--grey { background: #e8edf3; color: #334155; }
.sh-badge--green { background: #e8f5e2; color: #0d7a00; }

.sh-tool-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #002a55;
  text-align: center;
  margin-bottom: 1rem;
}

.sh-tool-card > p {
  font-size: 1rem;
  color: #64748b;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.sh-tool-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.sh-tool-input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #002a55;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}

.sh-tool-input:focus { border-color: #39FF12; }

.sh-tool-submit {
  background: #39FF12;
  color: #002a55;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Roboto', sans-serif;
  transition: background 0.2s;
}

.sh-tool-submit:hover { background: #30dd10; }

.sh-tool-features {
  border-top: 2px solid #e2e8f0;
  padding-top: 2rem;
}

.sh-tool-features-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d7a00;
  text-align: center;
  margin-bottom: 1.25rem;
  display: block;
}

.sh-tool-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.sh-tool-feature-icon {
  width: 3rem;
  height: 3rem;
  background: #e8f5e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.sh-tool-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #0d7a00;
}

.sh-tool-feature h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #002a55;
  margin-bottom: 0.3rem;
}

.sh-tool-feature p {
  font-size: 0.775rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ---- Service Section ---- */
.sh-service-intro {
  background: #002a55;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  border: 2px solid rgba(57,255,18,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  margin-bottom: 4rem;
}

.sh-service-intro-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #39FF12;
  display: block;
  margin-bottom: 0.75rem;
}

.sh-service-intro h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.sh-service-intro p {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Flip cards */
.sh-dark-band {
  background: #001327;
  padding: 4rem 1.5rem;
}

.sh-dark-band-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sh-dark-band-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.sh-dark-band-sub {
  font-size: 0.95rem;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 2.5rem;
}

.sh-flip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .sh-flip-grid {
    grid-template-columns: 1fr;
  }
}

.sh-flip-wrap {
  height: 280px;
  perspective: 1000px;
  cursor: pointer;
}

.sh-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s;
}

.sh-flip-wrap:hover .sh-flip-inner,
.sh-flip-wrap.is-flipped .sh-flip-inner {
  transform: rotateY(180deg);
}

.sh-flip-front,
.sh-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.sh-flip-front {
  background: #002a55;
  border: 1px solid rgba(57,255,18,0.2);
}

.sh-flip-back {
  background: #39FF12;
  transform: rotateY(180deg);
}

.sh-flip-front-icon {
  width: 3rem;
  height: 3rem;
  color: #39FF12;
  margin-bottom: 1rem;
}

.sh-flip-front h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.sh-flip-front p {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

.sh-flip-back p {
  font-size: 0.95rem;
  color: #002a55;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* Process tabs */
.sh-process-band {
  background: #002a55;
  padding: 4rem 1.5rem;
}

.sh-process-band-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sh-process-band h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}

.sh-process-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.sh-process-tab {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  background: #003366;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.sh-process-tab.is-active {
  background: #39FF12;
  color: #002a55;
}

.sh-process-tab:hover:not(.is-active) { background: #004488; }

.sh-process-content {
  background: #001a3d;
  border: 1px solid rgba(57,255,18,0.2);
  border-radius: 0.5rem;
  padding: 2rem;
}

.sh-process-content-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sh-process-num {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #39FF12;
  line-height: 1;
}

.sh-process-content-head h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.sh-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sh-process-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.sh-process-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #39FF12;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ---- Guides ---- */
.sh-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.sh-guide-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sh-guide-card:hover {
  border-color: #39FF12;
  box-shadow: 0 0 20px rgba(57,255,18,0.1);
}

.sh-guide-badges {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.sh-guide-badge {
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sh-guide-badge--guide { background: #002a55; color: #39FF12; }
.sh-guide-badge--beginner { background: #e8f5e2; color: #0d7a00; }
.sh-guide-badge--intermediate { background: #fff3cd; color: #92400e; }
.sh-guide-badge--soon { background: #f1f5f9; color: #64748b; }

.sh-guide-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #002a55;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.sh-guide-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ---- Social Proof ---- */
.sh-proof {
  background: #001327;
}

.sh-proof-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}

.sh-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.sh-proof-card {
  background: #002a55;
  border: 1px solid rgba(57,255,18,0.2);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.sh-proof-card:hover { border-color: #39FF12; }

.sh-proof-industry {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.sh-proof-industry svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #39FF12;
}

.sh-proof-industry span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #39FF12;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sh-proof-company {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.sh-proof-metric {
  background: #001a3d;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.sh-proof-metric-value {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #39FF12;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.sh-proof-metric-label {
  font-size: 0.875rem;
  color: #94a3b8;
}

.sh-proof-desc {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.sh-proof-divider {
  border: none;
  border-top: 1px solid rgba(57,255,18,0.2);
  margin-bottom: 1rem;
}

.sh-proof-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.sh-proof-stars svg {
  width: 1rem;
  height: 1rem;
  fill: #39FF12;
  color: #39FF12;
}

.sh-proof-quote {
  font-size: 0.875rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.sh-proof-author {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ---- FAQ ---- */
.sh-faq {
  background: #fafbfc;
}

.sh-faq-group {
  margin-bottom: 2rem;
}

.sh-faq-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1rem;
}

.sh-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sh-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.15s;
}

.sh-faq-item.is-open { border-color: #002a55; }

.sh-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: background 0.15s;
}

.sh-faq-btn:hover { background: #fafbfc; }

.sh-faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: #002a55;
  line-height: 1.4;
}

.sh-faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: #002a55;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.sh-faq-item.is-open .sh-faq-chevron {
  transform: rotate(180deg);
}

.sh-faq-answer {
  display: none;
  background: #f8faff;
  border-top: 1px solid #e2e8f0;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
}

.sh-faq-item.is-open .sh-faq-answer {
  display: block;
}

/* ---- Final CTA ---- */
.sh-final-cta {
  background: #001327;
}

.sh-final-cta-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #002a55, #001a3d);
  border: 2px solid rgba(57,255,18,0.3);
  border-radius: 1rem;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 0 50px rgba(57,255,18,0.15);
}

.sh-final-cta-icon {
  width: 4rem;
  height: 4rem;
  color: #39FF12;
  margin: 0 auto 1.5rem;
  display: block;
}

.sh-final-cta h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.sh-final-cta p {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.sh-final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #39FF12;
  color: #002a55;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 1.5rem;
}

.sh-final-cta-btn:hover {
  background: #30dd10;
  transform: scale(1.03);
}

.sh-final-cta-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sh-cta-bullets {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sh-cta-bullet {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.sh-cta-bullet-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #39FF12;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Tool output preview mockup ---- */
.sh-preview {
  border-top: 2px solid #e2e8f0;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: 'Roboto', sans-serif;
}

.sh-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sh-preview-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}

.sh-preview-domain {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Score + stats row */
.sh-preview-summary {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  flex-wrap: wrap;
}

.sh-preview-score-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 100px;
}

.sh-preview-score-block small {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sh-preview-score-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #002a55;
  line-height: 1;
  font-family: 'Raleway', sans-serif;
}

.sh-preview-score-value em {
  font-size: 1rem;
  font-weight: 400;
  color: #94a3b8;
  font-style: normal;
}

.sh-preview-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}

.sh-preview-pill.moderate { background: #fef3c7; color: #92400e; }
.sh-preview-pill.poor     { background: #fee2e2; color: #991b1b; }
.sh-preview-pill.strong   { background: #dcfce7; color: #166534; }

.sh-preview-stats {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  flex: 1;
}

.sh-preview-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sh-preview-stat-label {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sh-preview-stat strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: #002a55;
}

/* Table */
.sh-preview-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
}

.sh-preview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.sh-preview-table thead tr {
  background: #f8faff;
  border-bottom: 1px solid #e2e8f0;
}

.sh-preview-table th {
  padding: 0.6rem 0.875rem;
  text-align: left;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
}

.sh-preview-table td {
  padding: 0.65rem 0.875rem;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}

.sh-preview-table tbody tr:last-child td {
  border-bottom: none;
}

.sh-preview-url {
  font-family: monospace;
  font-size: 0.75rem;
  color: #64748b;
  white-space: nowrap;
}

.sh-preview-tag {
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
}

.sh-preview-none {
  color: #cbd5e1;
  font-style: italic;
  font-size: 0.75rem;
}

.sh-preview-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
}

.sh-preview-status.missing { background: #fee2e2; color: #991b1b; }
.sh-preview-status.partial { background: #fef3c7; color: #92400e; }
.sh-preview-status.complete { background: #dcfce7; color: #166534; }

/* Opportunity card */
.sh-preview-opp {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
}

.sh-preview-opp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.sh-preview-opp-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #002a55;
}

.sh-preview-opp-sub {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.15rem;
}

.sh-preview-impact {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.sh-preview-impact.high   { background: #fee2e2; color: #991b1b; }
.sh-preview-impact.medium { background: #fef3c7; color: #92400e; }
.sh-preview-impact.low    { background: #f1f5f9; color: #64748b; }

.sh-preview-opp-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.sh-preview-opp-est {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0;
}

.sh-preview-opp-est strong {
  color: #002a55;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .sh-hero h1 { font-size: 1.75rem; }
  .sh-service-intro { padding: 2rem 1.5rem; }
  .sh-service-intro h2 { font-size: 1.4rem; }
  .sh-final-cta-card { padding: 2.5rem 1.5rem; }
  .sh-final-cta h2 { font-size: 1.5rem; }
  .sh-process-num { font-size: 2rem; }
  .sh-flip-wrap { height: 200px; }
  .sh-flip-front, .sh-flip-back { padding: 1.25rem; }
  .sh-jump-nav ul { gap: 0.75rem; }
  .sh-jump-nav button { font-size: 0.8rem; }
  .sh-decision-panel { padding: 1.5rem; }
  .sh-tool-card { padding: 1.5rem; }
}
