@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
@import url("/css/sebs-home-tokens.css");

/* —— Reset scope —— */
.sebs-home-page {
  margin: 0;
  font-family: var(--sh-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sh-text-muted);
  background: var(--sh-bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.sebs-home-page *,
.sebs-home-page *::before,
.sebs-home-page *::after {
  box-sizing: border-box;
}

.sebs-home-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sebs-home-page a {
  color: inherit;
  text-decoration: none;
}

.sebs-home-page :focus-visible {
  outline: 2px solid var(--sh-cyan);
  outline-offset: 3px;
}

.sebs-home-page .sh-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--sh-violet);
  color: #fff;
  border-radius: var(--sh-radius-sm);
}

.sebs-home-page .sh-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* Ambient background */
.sebs-home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 8% 12%, var(--sh-glow-violet), transparent 55%),
    radial-gradient(ellipse 50% 40% at 92% 88%, var(--sh-glow-cyan), transparent 52%),
    linear-gradient(180deg, var(--sh-bg-deep) 0%, var(--sh-bg-mid) 50%, var(--sh-bg-deep) 100%);
}

.sebs-home-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black 0%, transparent 85%);
}

.sebs-home-main {
  padding-top: var(--sh-nav-h);
}

.sh-container {
  width: 100%;
  max-width: var(--sh-container);
  margin-inline: auto;
  padding-inline: var(--sebs-gutter, 1.25rem);
  min-width: 0;
}

.sh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--sh-radius-pill);
  border: 1px solid var(--sh-border-soft);
  background: var(--sh-glass);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-text-muted);
}

.sh-eyebrow-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--sh-cyan);
  box-shadow: 0 0 10px var(--sh-cyan);
}

.sh-h1 {
  margin: 1.25rem 0 0;
  font-size: clamp(2.375rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--sh-text);
}

.sh-h1-gradient {
  background: var(--sh-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sh-h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--sh-text);
}

.sh-lead {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--sh-text-muted);
}

.sh-tagline {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--sh-text-subtle);
}

.sh-section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}

.sh-section-head {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.sh-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sh-section-head--center .sh-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--sh-radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s var(--sh-ease), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.sh-btn--primary {
  background: var(--sh-gradient-btn);
  color: #fff;
  box-shadow: 0 12px 32px -12px var(--sh-glow-violet);
}

.sh-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px var(--sh-glow-violet), 0 0 24px -8px var(--sh-glow-cyan);
}

.sh-btn--ghost {
  background: var(--sh-glass);
  border-color: var(--sh-border);
  color: var(--sh-text);
}

.sh-btn--ghost:hover {
  background: var(--sh-glass-hover);
  border-color: rgba(255, 255, 255, 0.18);
}

.sh-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.sh-trust-line {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--sh-text-subtle);
}

.sh-trust-line span {
  margin: 0 0.35rem;
  opacity: 0.5;
}

/* —— Navbar —— */
.sh-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--sh-nav-h);
  transition: background 0.35s var(--sh-ease), border-color 0.35s ease, box-shadow 0.35s ease;
}

.sh-nav.is-scrolled {
  background: rgba(5, 5, 16, 0.72);
  border-bottom: 1px solid var(--sh-border-soft);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 8px 32px -16px rgba(0, 0, 0, 0.5);
}

.sh-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.sh-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.sh-brand img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.sh-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.sh-brand__name {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-text);
}

.sh-brand__sub {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--sh-text-subtle);
}

.sh-nav__links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

@media (min-width: 1024px) {
  .sh-nav__links {
    display: flex;
  }
}

.sh-nav__link {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sh-text-muted);
  border-radius: var(--sh-radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
}

.sh-nav__link:hover {
  color: var(--sh-text);
  background: var(--sh-glass);
}

.sh-nav__link[aria-current="page"] {
  color: var(--sh-text);
  background: var(--sh-glass);
  box-shadow: 0 0 0 1px var(--sh-border-soft);
}

.sh-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sh-nav__login {
  display: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sh-text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--sh-radius-pill);
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .sh-nav__login {
    display: inline-flex;
  }
}

.sh-nav__login:hover {
  color: var(--sh-text);
}

.sh-nav__cta {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
}

@media (min-width: 640px) {
  .sh-nav__cta {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
  }
}

#userProfile {
  position: relative;
  display: none;
  max-width: 11rem;
}

#userProfileTrigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 11rem;
  padding: 0.25rem 0.65rem 0.25rem 0.25rem;
  border-radius: var(--sh-radius-pill);
  border: 1px solid var(--sh-border-soft);
  background: var(--sh-glass);
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

#userAvatar {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.25);
  color: #e9d5ff;
  font-size: 0.75rem;
  font-weight: 700;
}

#userName {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sh-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#userAccountPanel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 12rem;
  padding: 0.35rem 0;
  border-radius: var(--sh-radius-md);
  border: 1px solid var(--sh-border);
  background: var(--sh-bg-elevated);
  box-shadow: var(--sh-shadow-card);
}

#userAccountPanel[hidden] {
  display: none !important;
}

#userAccountPanel a,
#userAccountPanel button {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sh-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

#userAccountPanel a:hover,
#userAccountPanel button:hover {
  background: var(--sh-glass);
  color: var(--sh-text);
}

#userAccountPanel.hidden {
  display: none !important;
}

.sh-account-theme {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--sh-border-soft);
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--sh-text-muted);
}

.sh-nav__burger {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-sm);
  background: var(--sh-glass);
  color: var(--sh-text);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .sh-nav__burger {
    display: none;
  }
}

.sh-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: calc(var(--sh-nav-h) + 1.5rem) 1.5rem 2rem;
  background: rgba(5, 5, 16, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sh-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.sh-mobile-menu a {
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sh-text);
  border-bottom: 1px solid var(--sh-border-soft);
}

.sh-mobile-menu .sh-btn-row {
  margin-top: auto;
  flex-direction: column;
}

.sh-mobile-menu .sh-btn {
  width: 100%;
}

/* —— Hero —— */
.sh-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  overflow: visible;
}

.sh-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.sh-hero__grid > * {
  min-width: 0;
}

.sh-hero__copy {
  width: 100%;
  max-width: 34rem;
  overflow: visible;
}

.sh-hero__copy .sh-h1 {
  font-size: clamp(1.75rem, 2.8vw + 0.65rem, 3rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.sh-hero__copy .sh-h1-line {
  display: block;
}

.sh-hero__copy .sh-h1-gradient {
  white-space: nowrap;
}

.sh-hero__copy .sh-lead {
  max-width: 32rem;
}

/* Hero grid: sebs-design-system.css (64rem+) */

/* Hero — Adaface tarzı sonsuz akan performans kartları + merkez SEBS küpü */
.sh-hero-flow {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 16rem;
  overflow: hidden;
  isolation: isolate;
}

.sh-hero-flow.sh-reveal {
  transform: translateY(12px);
}

.sh-hero-flow.sh-reveal.is-visible {
  transform: translateY(0);
}

.sh-hero-flow__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 16rem;
  padding: 2rem 0;
  border-radius: var(--sh-radius-xl);
  border: 1px solid var(--sh-border-soft);
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(124, 58, 237, 0.14), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.15) 100%);
  box-shadow: var(--sh-shadow-card), 0 0 60px -20px var(--sh-glow-violet);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.sh-hero-flow__viewport::before,
.sh-hero-flow__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2rem, 12%, 5rem);
  z-index: 4;
  pointer-events: none;
}

.sh-hero-flow__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--sh-bg, #050510) 0%, transparent 100%);
}

.sh-hero-flow__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--sh-bg, #050510) 0%, transparent 100%);
}

.sh-hero-flow__track {
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  align-items: center;
  animation: sh-hero-flow-scroll 36s linear infinite;
}

.sh-hero-flow__viewport:hover .sh-hero-flow__track {
  animation-play-state: paused;
}

.sh-hero-flow__group {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding-inline: 0.75rem;
}

.sh-flow-card {
  position: relative;
  flex-shrink: 0;
  width: 8.5rem;
  padding: 1rem 0.85rem 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Sağdan gelir — henüz değerlendirilmedi */
.sh-flow-card.is-pending {
  opacity: 0.92;
}

.sh-flow-card.is-pending .sh-flow-card__badge {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scale(0) !important;
}

.sh-flow-card.is-pending .sh-flow-card__score strong {
  opacity: 0.45;
}

/* SEBS kutusunun içinde — taranıyor */
.sh-flow-card.is-processing {
  opacity: 0.25;
  transform: scale(0.88);
  filter: blur(1px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: none;
}

.sh-flow-card.is-processing .sh-flow-card__scan {
  opacity: 1;
}

.sh-flow-card.is-processing .sh-flow-card__badge {
  opacity: 0;
  transform: scale(0);
}

.sh-flow-card.is-processing .sh-flow-card__score strong {
  opacity: 0.35;
}

/* Kutudan çıktı — olumlu */
.sh-flow-card.is-positive {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.65), 0 0 24px -8px rgba(34, 197, 94, 0.35);
}

.sh-flow-card.is-positive .sh-flow-card__badge {
  opacity: 1;
  transform: scale(1);
  background: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.45);
}

.sh-flow-card.is-positive .sh-flow-card__badge::after {
  content: "";
  position: absolute;
  inset: 0.3rem 0.22rem 0.38rem;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.sh-flow-card.is-positive .sh-flow-card__score strong {
  opacity: 1;
  color: #6ee7b7;
}

/* Kutudan çıktı — olumsuz */
.sh-flow-card.is-negative {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.65), 0 0 24px -8px rgba(249, 115, 22, 0.3);
}

.sh-flow-card.is-negative .sh-flow-card__badge {
  opacity: 1;
  transform: scale(1);
  background: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.45);
}

.sh-flow-card.is-negative .sh-flow-card__badge::after {
  content: "";
  position: absolute;
  inset: 0.38rem 0.22rem 0.3rem;
  border: solid #fff;
  border-width: 2px 0 0 2px;
  transform: rotate(-45deg);
}

.sh-flow-card.is-negative .sh-flow-card__score strong {
  opacity: 1;
  color: #fdba74;
}

.sh-flow-card__scan {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(124, 58, 237, 0.25) 45%,
    rgba(103, 232, 249, 0.35) 50%,
    rgba(124, 58, 237, 0.25) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: sh-flow-scan 0.9s linear infinite;
}

@keyframes sh-flow-scan {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.sh-flow-card__badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.34, 1.4, 0.64, 1), visibility 0.28s ease;
}

/* Rozet yalnızca kutudan çıktıktan sonra */
.sh-flow-card:not(.is-positive):not(.is-negative) .sh-flow-card__badge {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scale(0) !important;
}

.sh-flow-card.is-positive .sh-flow-card__badge,
.sh-flow-card.is-negative .sh-flow-card__badge {
  visibility: visible;
}

.sh-flow-card__avatar {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0.25rem auto 0.65rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.35), transparent 45%),
    linear-gradient(145deg, var(--flow-tone-a, #7c3aed), var(--flow-tone-b, #06b6d4));
  box-shadow: inset 0 -6px 12px rgba(0, 0, 0, 0.2);
}

.sh-flow-card__avatar::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.85)' stroke-width='1.5'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center 52% / 52% no-repeat;
}

.sh-flow-card[data-tone="violet"] { --flow-tone-a: #7c3aed; --flow-tone-b: #a78bfa; }
.sh-flow-card[data-tone="cyan"] { --flow-tone-a: #0891b2; --flow-tone-b: #67e8f9; }
.sh-flow-card[data-tone="amber"] { --flow-tone-a: #d97706; --flow-tone-b: #fbbf24; }
.sh-flow-card[data-tone="rose"] { --flow-tone-a: #e11d48; --flow-tone-b: #fb7185; }
.sh-flow-card[data-tone="emerald"] { --flow-tone-a: #059669; --flow-tone-b: #6ee7b7; }
.sh-flow-card[data-tone="blue"] { --flow-tone-a: #2563eb; --flow-tone-b: #93c5fd; }

.sh-flow-card__score {
  margin: 0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sh-text-muted);
}

.sh-flow-card__score strong {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--sh-text);
  letter-spacing: -0.03em;
}

.sh-flow-card__score span {
  font-size: 0.75rem;
  opacity: 0.75;
}

.sh-hero-flow__hub {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.sh-hero-flow__hub-inner {
  position: relative;
  width: 9.75rem;
  height: 10.75rem;
  display: grid;
  grid-template: 1fr / 1fr;
  place-items: center;
}

/* Kartların içeriğe "girdiği" opak kapı */
.sh-hero-flow__gate {
  grid-area: 1 / 1;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 1.35rem;
  background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 20px 40px -12px rgba(0, 0, 0, 0.5);
}

.sh-hero-flow__cube {
  grid-area: 1 / 1;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.25rem;
  height: 7.25rem;
  padding: 0.85rem;
  border-radius: 1.15rem;
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 55%, #e2e8f0 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 28px 48px -16px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(124, 58, 237, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: none;
  transition: box-shadow 0.35s var(--sh-ease);
}

.sh-hero-flow:hover .sh-hero-flow__cube {
  box-shadow:
    0 32px 52px -14px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(124, 58, 237, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.sh-hero-flow__logo {
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}

@keyframes sh-hero-flow-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* —— Marquee —— */
.sh-marquee {
  padding: 2rem 0;
  border-block: 1px solid var(--sh-border-soft);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.sh-marquee__row {
  padding: 0.35rem 0;
  overflow: hidden;
}

.sh-marquee__row--b {
  margin-top: 0.65rem;
}

.sh-marquee__track {
  display: flex;
  width: max-content;
  gap: 0.75rem;
}

.sh-marquee__row--a .sh-marquee__track {
  animation: sh-marquee-l 45s linear infinite;
}

.sh-marquee__row--b .sh-marquee__track {
  animation: sh-marquee-r 50s linear infinite;
}

.sh-marquee__chip {
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  border-radius: var(--sh-radius-pill);
  border: 1px solid var(--sh-border-soft);
  background: var(--sh-glass);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sh-text-muted);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.sh-marquee__chip:hover {
  border-color: rgba(168, 85, 247, 0.35);
  color: var(--sh-text);
  box-shadow: 0 0 20px -6px var(--sh-glow-violet);
}

@keyframes sh-marquee-l {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes sh-marquee-r {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* —— Partner şeridi —— */
.sh-partners {
  padding: 0 0 3rem;
  margin-top: -0.5rem;
}

.sh-partners__label {
  margin: 0 auto 1.25rem;
  max-width: var(--sh-container, 72rem);
  padding-inline: clamp(1rem, 4vw, 1.5rem);
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sh-text-subtle, #71717a);
}

.sh-partners-marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--sh-border-soft);
  padding-block: 1.15rem;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.sh-partners-marquee__track {
  display: flex;
  width: max-content;
  animation: sh-partners-marquee 32s linear infinite;
}

.sh-partners-marquee:hover .sh-partners-marquee__track {
  animation-play-state: paused;
}

.sh-partners-marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.sh-partners__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sh-partners__logo {
  display: block;
  width: auto;
  max-height: 2rem;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.sh-partners__logo--iyzico {
  max-height: 1.65rem;
  filter: brightness(1.08);
}

.sh-partners__logo--teknokent {
  max-height: 2.35rem;
}

.sh-partners__logo--sertifikapp {
  max-height: 2.1rem;
}

.sh-partners__item--uyumsoft {
  padding: 0.4rem 0.85rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sh-partners__logo--uyumsoft {
  max-height: 1.75rem;
  opacity: 1;
}

.sh-partners__item:hover .sh-partners__logo {
  opacity: 1;
}

@keyframes sh-partners-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* —— How it works —— */
.sh-steps {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sh-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--sh-radius-lg);
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--sh-ease);
}

@media (min-width: 768px) {
  .sh-step {
    grid-template-columns: 5rem 1fr 1.4fr;
    align-items: center;
  }
}

.sh-step:hover {
  background: var(--sh-glass);
  border-color: var(--sh-border-soft);
  transform: translateX(4px);
}

.sh-step__num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.12);
  transition: color 0.3s ease;
}

.sh-step:hover .sh-step__num {
  color: rgba(168, 85, 247, 0.55);
}

.sh-step__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sh-text);
}

.sh-step__desc {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  color: var(--sh-text-muted);
  grid-column: 2 / -1;
}

@media (min-width: 768px) {
  .sh-step__desc {
    grid-column: 3;
    margin: 0;
  }
}

/* —— Experience —— */
.sh-experience__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.sh-experience__grid > * {
  min-width: 0;
}

@media (min-width: 64rem) {
  .sh-experience__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 4vw, 3rem);
  }
}

.sh-experience__copy .sh-h2 {
  margin: 0 0 1rem;
}

.sh-experience__copy .sh-lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
}

.sh-path-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sh-path-cards__cta {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.sh-path-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--sh-radius-lg);
  border: 1px solid var(--sh-border-soft);
  background: var(--sh-glass);
  cursor: default;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--sh-ease), background 0.25s ease;
}

.sh-path-card:hover,
.sh-path-card.is-active {
  border-color: rgba(103, 232, 249, 0.35);
  background: rgba(124, 58, 237, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -24px rgba(34, 211, 238, 0.25);
}

.sh-path-card.is-active {
  box-shadow: 0 0 0 1px rgba(103, 232, 249, 0.2), 0 20px 40px -24px rgba(34, 211, 238, 0.3);
}

/* Dağ paneli — görsel + yol aynı SVG koordinat sisteminde */
.sh-mountain-viz {
  position: relative;
  width: 100%;
  border-radius: var(--sh-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow:
    var(--sh-shadow-card),
    0 0 60px -20px rgba(124, 58, 237, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  aspect-ratio: 3 / 2;
  background: #030712;
}

.sh-mountain-viz::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(3, 7, 18, 0.12) 100%);
  z-index: 2;
}

.sh-mountain-viz__stage {
  display: block;
  width: 100%;
  height: 100%;
}

/* Yol fotoğrafta gömülü; SVG yalnızca rehber + etkileşim */
.sh-mountain-viz__trail-guide {
  fill: none;
  stroke: transparent;
  stroke-width: 1;
  pointer-events: none;
}

.sh-mountain-viz__trail-pulse {
  fill: none;
  stroke: #a5f3fc;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sh-mountain-viz.is-animated:not(.is-paused) .sh-mountain-viz__trail-pulse {
  opacity: 0;
}

.sh-mountain-viz.is-paused .sh-mountain-viz__trail-pulse {
  opacity: 0.48;
}

.sh-mountain-viz__marker {
  fill: rgba(103, 232, 249, 0.18);
  stroke: rgba(224, 242, 254, 0.55);
  stroke-width: 2;
  opacity: 0.55;
  filter: url(#sh-mt-marker-depth);
  transition: fill 0.35s ease, stroke 0.35s ease, opacity 0.35s ease;
}

.sh-mountain-viz__marker.is-start,
.sh-mountain-viz__marker.is-active {
  fill: rgba(224, 242, 254, 0.92);
  stroke: rgba(255, 255, 255, 0.95);
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(103, 232, 249, 0.55));
}

.sh-mountain-viz__labels {
  mix-blend-mode: normal;
}

.sh-mountain-viz__label {
  fill: rgba(248, 250, 252, 0.88);
  font-family: var(--sh-font, "Inter", system-ui, sans-serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.01em;
  paint-order: stroke fill;
  stroke: rgba(2, 8, 23, 0.65);
  stroke-width: 5;
  transition: fill 0.35s ease;
}

.sh-mountain-viz__label.is-active {
  fill: #ffffff;
}

.sh-mountain-viz__runner {
  fill: #e0f2fe;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(103, 232, 249, 0.65));
}

.sh-mountain-viz.is-animated .sh-mountain-viz__runner,
.sh-mountain-viz.is-paused .sh-mountain-viz__runner {
  opacity: 0.85;
}

.sh-path-card h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--sh-text);
}

.sh-path-card p {
  margin: 0.4rem 0 0;
  font-size: 0.875rem;
  color: var(--sh-text-muted);
}

.sh-sim-panel {
  border-radius: var(--sh-radius-xl);
  border: 1px solid var(--sh-border);
  background: linear-gradient(160deg, rgba(11, 11, 31, 0.95) 0%, rgba(5, 5, 16, 0.98) 100%);
  box-shadow: var(--sh-shadow-card);
  overflow: hidden;
}

.sh-sim-panel__head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--sh-border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sh-sim-panel__head h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sh-text);
}

.sh-sim-panel__live {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6ee7b7;
}

.sh-sim-log {
  padding: 1rem 1.25rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.75rem;
  line-height: 1.85;
  color: var(--sh-text-muted);
}

.sh-sim-log .t { color: var(--sh-text-subtle); }
.sh-sim-log .a { color: #fbbf24; }
.sh-sim-log .ok { color: #6ee7b7; }

.sh-sim-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  padding: 0 1.25rem 1.25rem;
}

.sh-sim-kpi {
  padding: 0.75rem;
  border-radius: var(--sh-radius-sm);
  border: 1px solid var(--sh-border-soft);
  background: rgba(0, 0, 0, 0.25);
}

.sh-sim-kpi span {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sh-text-subtle);
}

.sh-sim-kpi strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9375rem;
  color: var(--sh-text);
}

/* —— Big Five —— */
.sh-bigfive__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .sh-bigfive__grid {
    grid-template-columns: minmax(0, 1fr) minmax(26rem, 1.05fr);
    align-items: center;
  }
}

.sh-bigfive__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}

.sh-bigfive__list li {
  padding: 0.65rem 0.85rem;
  border-radius: var(--sh-radius-sm);
  border: 1px solid var(--sh-border-soft);
  background: var(--sh-glass);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sh-text-muted);
}

/* CodeSignal tarzı beceri hub — CSS Grid, çakışma yok */
.sh-bigfive__grid > .sh-skillhub {
  justify-self: center;
  width: 100%;
  max-width: 29rem;
}

.sh-skillhub {
  width: 100%;
  margin-inline: auto;
}

.sh-skillhub__stage {
  display: grid;
  grid-template-columns: 11rem 6.75rem 10.75rem;
  grid-template-rows: auto 6.75rem auto;
  column-gap: 1rem;
  row-gap: 0.75rem;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}

.sh-skillhub__center {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  width: 6.75rem;
  height: 6.75rem;
  justify-self: center;
  align-self: center;
}

.sh-skillhub__orbit {
  position: absolute;
  inset: -1.75rem;
  pointer-events: none;
}

.sh-skillhub__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(56, 189, 248, 0.35);
}

.sh-skillhub__ring--inner {
  inset: 1.1rem;
  border-style: dotted;
  border-color: rgba(250, 204, 21, 0.35);
}

.sh-skillhub__avatar {
  position: relative;
  z-index: 2;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0.625rem auto 0;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #38bdf8, #a78bfa);
  box-shadow: 0 12px 40px -12px rgba(56, 189, 248, 0.55);
}

.sh-skillhub__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.sh-skillhub__card {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 4px 6px -2px rgba(15, 23, 42, 0.06),
    0 18px 40px -16px rgba(15, 23, 42, 0.18);
  color: #0f172a;
}

.sh-skillhub__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.sh-skillhub__card-head strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}

.sh-skillhub__badge {
  flex-shrink: 0;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sh-skillhub__badge--ok {
  background: #dcfce7;
  color: #15803d;
}

.sh-skillhub__badge--warn {
  background: #fef9c3;
  color: #a16207;
}

.sh-skillhub__card--profile {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  justify-self: end;
}

.sh-skillhub__score {
  margin: 0;
  font-size: 2.125rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.sh-skillhub__bar {
  height: 6px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.sh-skillhub__bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.sh-skillhub__bar-label {
  display: flex;
  justify-content: space-between;
  margin: 0.2rem 0 0.5rem;
  font-size: 0.625rem;
  color: #64748b;
}

.sh-skillhub__link {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.sh-skillhub__skills {
  margin-top: 0.65rem;
  padding-top: 0.55rem;
  border-top: 1px solid #f1f5f9;
}

.sh-skillhub__skills > span {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.sh-skillhub__skills ul {
  display: flex;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sh-skillhub__skills li {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  font-size: 0.625rem;
  font-weight: 800;
  font-style: normal;
  color: #fff;
}

.sh-skillhub__skills li:nth-child(1) {
  background: #14b8a6;
}

.sh-skillhub__skills li:nth-child(2) {
  background: #8b5cf6;
}

.sh-skillhub__skills li:nth-child(3) {
  background: #f59e0b;
}

.sh-skillhub__skills li:nth-child(4) {
  background: #22c55e;
}

.sh-skillhub__card--insight {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  justify-self: start;
}

.sh-skillhub__wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 2.25rem;
  margin: 0.25rem 0 0.5rem;
}

.sh-skillhub__wave span {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, #38bdf8, #818cf8);
  animation: sh-skillhub-wave 1.2s ease-in-out infinite;
}

.sh-skillhub__wave span:nth-child(odd) {
  height: 55%;
}

.sh-skillhub__wave span:nth-child(even) {
  height: 85%;
}

.sh-skillhub__wave span:nth-child(3n) {
  height: 40%;
}

.sh-skillhub__wave span:nth-child(1) {
  animation-delay: 0s;
}
.sh-skillhub__wave span:nth-child(2) {
  animation-delay: 0.08s;
}
.sh-skillhub__wave span:nth-child(3) {
  animation-delay: 0.16s;
}
.sh-skillhub__wave span:nth-child(4) {
  animation-delay: 0.24s;
}
.sh-skillhub__wave span:nth-child(5) {
  animation-delay: 0.32s;
}

@keyframes sh-skillhub-wave {
  0%,
  100% {
    transform: scaleY(0.65);
    opacity: 0.65;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.sh-skillhub__play {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #475569;
}

.sh-skillhub__play-btn {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #2563eb;
  position: relative;
}

.sh-skillhub__play-btn::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left: 6px solid #fff;
  border-right: 0;
}

.sh-skillhub__card--plan {
  grid-column: 3;
  grid-row: 3;
  align-self: start;
  justify-self: start;
}

.sh-skillhub__plan {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.45;
}

.sh-skillhub__plan li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.35rem;
  white-space: normal;
  line-height: 1.35;
}

.sh-skillhub__plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 4px;
  border: 2px solid #cbd5e1;
  background: #fff;
}

.sh-skillhub__plan li.is-done::before {
  border-color: #2563eb;
  background: #2563eb url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M2 6l3 3 5-6'/%3E%3C/svg%3E") center / 0.55rem no-repeat;
}

@media (max-width: 640px) {
  .sh-skillhub__stage {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    max-width: 18rem;
  }

  .sh-skillhub__center {
    order: -1;
    align-self: center;
    width: 6rem;
    height: 6rem;
    margin-bottom: 0.25rem;
  }

  .sh-skillhub__card--profile,
  .sh-skillhub__card--insight,
  .sh-skillhub__card--plan {
    grid-column: unset;
    grid-row: unset;
    justify-self: stretch;
    align-self: stretch;
  }
}

/* —— Pricing —— */
.sh-pricing__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .sh-pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.sh-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  border-radius: var(--sh-radius-xl);
  border: 1px solid var(--sh-border-soft);
  background: var(--sh-glass);
  transition: transform 0.3s var(--sh-ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.sh-price-card:hover {
  transform: translateY(-6px);
  border-color: var(--sh-border);
  box-shadow: var(--sh-shadow-glow);
}

.sh-price-card--featured {
  border-color: rgba(168, 85, 247, 0.45);
  background: linear-gradient(165deg, rgba(124, 58, 237, 0.15) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.sh-price-card__badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.75rem;
  border-radius: var(--sh-radius-pill);
  background: var(--sh-gradient-btn);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.sh-price-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sh-text);
}

.sh-price-card__desc {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--sh-text-muted);
}

.sh-price-card__price {
  margin: 1.25rem 0 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--sh-text);
}

.sh-price-card__price small {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sh-text-subtle);
}

.sh-price-card ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.sh-price-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--sh-text-muted);
}

.sh-price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sh-cyan);
  font-weight: 700;
}

.sh-price-card .sh-btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* —— B2B strip —— */
.sh-b2b-strip {
  padding: 1.25rem 1.5rem;
  border-radius: var(--sh-radius-lg);
  border: 1px solid var(--sh-border-soft);
  background: var(--sh-glass);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}

.sh-b2b-strip p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--sh-text-muted);
  max-width: 32rem;
}

/* —— Final CTA —— */
.sh-final-cta {
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5rem) 2rem;
  border-radius: var(--sh-radius-xl);
  border: 1px solid var(--sh-border);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.12) 0%, rgba(37, 99, 235, 0.08) 50%, rgba(5, 5, 16, 0.6) 100%);
  box-shadow: var(--sh-shadow-glow);
}

.sh-final-cta .sh-btn-row {
  justify-content: center;
}

/* —— Footer —— */
.sh-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--sh-border-soft);
}

.sh-footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .sh-footer__grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

.sh-footer__brand p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--sh-text-subtle);
  max-width: 18rem;
}

.sh-footer__col h4 {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-text-subtle);
}

.sh-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sh-footer__col li {
  margin-bottom: 0.5rem;
}

.sh-footer__col a {
  font-size: 0.875rem;
  color: var(--sh-text-muted);
  transition: color 0.2s ease;
}

.sh-footer__col a:hover {
  color: var(--sh-text);
}

.sh-footer__pay {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sh-border-soft);
  text-align: center;
}

.sh-footer__pay p {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-text-subtle);
}

.sh-footer__pay img {
  margin: 0 auto;
  opacity: 0.85;
}

.sh-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sh-border-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--sh-text-subtle);
}

/* Reveal */
.sh-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--sh-ease), transform 0.65s var(--sh-ease);
}

.sh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .sh-skillhub__wave span {
    animation: none;
  }

  .sh-marquee__row--a,
  .sh-marquee__row--b,
  .sh-partners-marquee__track {
    animation: none;
  }

  .sh-partners-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .sh-partners-marquee__track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--sh-container, 72rem);
    margin-inline: auto;
    padding-inline: 1rem;
    gap: 1.5rem;
  }

  .sh-partners-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .sh-hero-flow__track {
    animation: none;
  }

  .sh-hero-flow__viewport {
    mask-image: none;
    overflow-x: auto;
  }

  .sh-hero-flow__group[aria-hidden="true"] {
    display: none;
  }

  .sh-flow-card.is-pending,
  .sh-flow-card.is-processing,
  .sh-flow-card.is-positive,
  .sh-flow-card.is-negative {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .sh-flow-card .sh-flow-card__scan {
    display: none;
  }

  .sh-hero-flow__cube {
    transform: none;
  }

  .sh-hero-flow:hover .sh-hero-flow__cube {
    transform: none;
  }

  .sh-mountain-viz.is-animated .sh-mountain-viz__trail-pulse {
    opacity: 0.45;
  }

  .sh-mountain-viz__runner {
    opacity: 0;
  }

  .sh-step:hover,
  .sh-path-card:hover,
  .sh-price-card:hover {
    transform: none;
  }

  .sh-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
