/* ================================================
   QUNOX — Sangfor Landing Page  (Light theme)
   ================================================ */

/* ── CANVAS PLEXUS ───────────────────────────────── */
#sf-plexus {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* ── BASE ─────────────────────────────────────────── */
.sf-page {
  background: #ffffff;
  color: #111214;
}

.sf-page > * { position: relative; z-index: 1; }

/* ── BUTTONS ──────────────────────────────────────── */
.sf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.sf-btn--primary {
  background: #6D001A;
  color: #fff;
  box-shadow: 0 2px 12px rgba(109,0,26,0.30), 0 0 0 1px rgba(109,0,26,0.20);
}
.sf-btn--primary:hover {
  background: #8a0022;
  box-shadow: 0 6px 24px rgba(109,0,26,0.40), 0 0 0 1px rgba(109,0,26,0.30);
  transform: translateY(-1px);
}

.sf-btn--ghost {
  background: transparent;
  color: #374151;
  border: 1.5px solid rgba(0,0,0,0.18);
}
.sf-btn--ghost:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.32);
  color: #111214;
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────────────── */
.sf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  overflow: hidden;
  background: transparent;
}

.sf-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -5%, rgba(109,0,26,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.sf-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 100%);
}

.sf-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(109,0,26,0.07);
  border: 1px solid rgba(109,0,26,0.22);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6D001A;
  margin-bottom: 2rem;
  position: relative;
}

.sf-hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6D001A;
  animation: sfPulse 2s ease-in-out infinite;
}

@keyframes sfPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.sf-hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
  color: #111214;
  position: relative;
}

.sf-hero__title em {
  font-style: normal;
  color: #111214;
  background: none;
  -webkit-text-fill-color: unset;
}

.sf-hero__title .sf-accent {
  background: linear-gradient(135deg, #6D001A 0%, #b00028 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sf-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #4b5563;
  max-width: 600px;
  line-height: 1.75;
  margin: 1.5rem 0 2.5rem;
  position: relative;
}

.sf-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.sf-hero__stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  position: relative;
  width: 100%;
  max-width: 700px;
}

/* ── HERO PARTNER LOGO ───────────────────────────── */
.sf-hero__partner-brand {
  margin-bottom: 1.75rem;
}
.sf-hero__partner-logo {
  height: 68px;
  width: auto;
  opacity: 0.90;
}

/* ── GARTNER BANNER ──────────────────────────────── */
.sf-gartner-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem 1.75rem;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(0,0,0,0.09);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  max-width: 700px;
  margin-top: 1.5rem;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
}
.sf-gartner-banner:hover {
  border-color: rgba(0,130,110,0.38);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}
.sf-gartner-banner__left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 140px;
}
.sf-gartner-banner__g {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  color: #00836f;
}
.sf-gartner-banner__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111214;
}
.sf-gartner-banner__category {
  font-size: 0.68rem;
  color: #9ca3af;
}

/* Mini 2×2 quadrant grid */
.sf-gquad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 74px;
  height: 58px;
  background: rgba(0,0,0,0.12);
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}
.sf-gquad__cell {
  background: rgba(255,255,255,0.90);
  padding: 3px 4px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.sf-gquad__cell small {
  font-size: 0.30rem;
  color: rgba(0,0,0,0.28);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-transform: uppercase;
}
.sf-gquad__cell--active {
  background: rgba(0,131,111,0.10) !important;
}
.sf-gquad__dot {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00836f;
  box-shadow: 0 0 0 2px rgba(0,131,111,0.22), 0 0 8px rgba(0,131,111,0.55);
}
.sf-gartner-banner__right {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.sf-gartner-banner__product {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111214;
}
.sf-gartner-banner__desc {
  font-size: 0.72rem;
  color: #6b7280;
  line-height: 1.4;
}
.sf-gartner-banner__cta {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00836f;
  margin-top: 0.2rem;
}

.sf-stat { text-align: center; }

.sf-stat--link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 8px;
  transition: opacity 0.2s;
}
.sf-stat--link:hover { opacity: 0.75; }
.sf-stat--link .sf-stat__label {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sf-stat__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #111214;
  line-height: 1;
}

.sf-stat__number span { color: #6D001A; }

.sf-stat__label {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}

/* ── SECTION WRAPPERS ────────────────────────────── */
.sf-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sf-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #6D001A;
  margin-bottom: 0.75rem;
}

.sf-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: #111214;
}

.sf-heading em {
  font-style: normal;
  background: linear-gradient(135deg, #6D001A 0%, #b00028 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sf-lead {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.75;
  max-width: 580px;
}

/* ── DIVIDER ─────────────────────────────────────── */
.sf-divider {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin: 0 2rem;
}

/* ── VALUE PROPS ─────────────────────────────────── */
.sf-values { background: #f7f7f9; position: relative; z-index: 1; }

.sf-values__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.sf-values__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sf-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.sf-vcard {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.sf-vcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6D001A, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sf-vcard:hover {
  border-color: rgba(109,0,26,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}
.sf-vcard:hover::before { opacity: 1; }

.sf-vcard__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(109,0,26,0.08);
  border: 1px solid rgba(109,0,26,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: #6D001A;
}

.sf-vcard__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #111214;
}

.sf-vcard__text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.65;
}

.sf-values__grid--row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 1rem auto 0;
}

/* ── PRODUCTS GRID ────────────────────────────────── */
.sf-products { background: #fff; position: relative; z-index: 1; }

.sf-products__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.sf-products__header { margin-bottom: 3rem; }

.sf-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.sf-pcard {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  /* anchor reset */
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.sf-pcard__cta {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6D001A;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.sf-pcard:hover .sf-pcard__cta {
  opacity: 1;
  transform: translateY(0);
}

.sf-pcard::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(109,0,26,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sf-pcard:hover {
  border-color: rgba(109,0,26,0.30);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.10), 0 0 0 1px rgba(109,0,26,0.08);
}
.sf-pcard:hover::after { opacity: 1; }

.sf-pcard__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6D001A;
  background: rgba(109,0,26,0.08);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.sf-pcard__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #111214;
}

.sf-pcard__full {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 1rem;
  font-style: italic;
}

.sf-pcard__desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.sf-pcard__features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.45rem;
}

.sf-pcard__features li {
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.sf-pcard__features li::before {
  content: '—';
  color: rgba(109,0,26,0.55);
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ── RESOURCES ────────────────────────────────────── */
.sf-resources {
  background: #08080a;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.sf-resources__plexus {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.sf-resources__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.sf-resources__header {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.sf-resources__brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sf-sangfor-logo {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}

.sf-resources__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.sf-rcard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.sf-rcard:hover {
  border-color: rgba(109,0,26,0.55);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  color: inherit;
}

.sf-rcard__type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(150,190,240,0.85);
}

.sf-rcard__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255,255,255,0.90);
}

.sf-rcard__arrow {
  color: rgba(255,255,255,0.25);
  font-size: 1.1rem;
  margin-top: auto;
  transition: color 0.2s, transform 0.2s;
}
.sf-rcard:hover .sf-rcard__arrow {
  color: #e05070;
  transform: translate(2px, -2px);
}

/* Resources dark overrides */
.sf-resources .sf-eyebrow { color: rgba(130,180,240,0.85); }
.sf-resources .sf-heading { color: #ffffff; }

/* ── ROADMAP ──────────────────────────────────────── */
.sf-roadmap { background: #fff; position: relative; z-index: 1; }

.sf-roadmap__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.sf-roadmap__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sf-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.sf-steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 46px; right: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109,0,26,0.25), rgba(109,0,26,0.25), transparent);
  z-index: 0;
}

.sf-step {
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
  z-index: 1;
}

.sf-step__num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(109,0,26,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #6D001A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.sf-step:hover .sf-step__num {
  border-color: #6D001A;
  background: rgba(109,0,26,0.06);
  box-shadow: 0 4px 16px rgba(109,0,26,0.20);
}

.sf-step__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111214;
}

.sf-step__text {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.55;
}

/* ── USE CASES ────────────────────────────────────── */
.sf-usecases { background: #f7f7f9; position: relative; z-index: 1; }

.sf-usecases__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.sf-usecases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.sf-ucard {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 1.25rem;
  align-items: start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.sf-ucard:hover {
  border-color: rgba(109,0,26,0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.sf-ucard--wide { grid-column: 1 / -1; }

.sf-ucard__icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(109,0,26,0.07);
  border: 1px solid rgba(109,0,26,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #6D001A;
  flex-shrink: 0;
}

.sf-ucard__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111214;
}

.sf-ucard__text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.65;
  grid-column: 2;
}

/* ── COMPARISON TABLE ─────────────────────────────── */
.sf-compare { background: #fff; position: relative; z-index: 1; }

.sf-compare__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.sf-compare__header {
  text-align: center;
  margin-bottom: 3rem;
}

.sf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.sf-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: 2px solid rgba(0,0,0,0.09);
  background: #f9f9fb;
}

.sf-table th:first-child { color: #9ca3af; }
.sf-table th:nth-child(2) { color: #6b7280; }
.sf-table th:nth-child(3) {
  color: #6D001A;
  background: rgba(109,0,26,0.06);
  border-bottom-color: rgba(109,0,26,0.20);
  border-radius: 6px 6px 0 0;
}

.sf-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #4b5563;
  vertical-align: top;
  line-height: 1.5;
}

.sf-table td:first-child {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sf-table td:nth-child(3) {
  background: rgba(109,0,26,0.03);
  border-color: rgba(109,0,26,0.07);
  color: #374151;
}

.sf-table tr:last-child td { border-bottom: none; }

.sf-check { color: #16a34a; font-weight: 700; }
.sf-cross { color: #dc2626; }

/* ── WHY QUNOX ────────────────────────────────────── */
.sf-why { background: #f7f7f9; position: relative; z-index: 1; }

.sf-why__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sf-why__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.sf-badge {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.sf-badge:hover {
  border-color: rgba(109,0,26,0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.sf-badge__val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #6D001A;
}

.sf-badge__key {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.3rem;
  line-height: 1.4;
}

.sf-why__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sf-why-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.sf-why-item:hover {
  border-color: rgba(109,0,26,0.22);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.sf-why-item__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(109,0,26,0.07);
  border: 1px solid rgba(109,0,26,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #6D001A;
}

.sf-why-item__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #111214;
}

.sf-why-item__text {
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ── FINAL CTA ────────────────────────────────────── */
.sf-cta {
  background: linear-gradient(180deg, #0a0a0c 0%, #3a000f 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sf-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(109,0,26,0.50) 0%, transparent 60%);
  pointer-events: none;
}

.sf-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}

.sf-cta__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #fff;
}

.sf-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.sf-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sf-cta .sf-btn--ghost {
  color: rgba(255,255,255,0.80);
  border-color: rgba(255,255,255,0.25);
}
.sf-cta .sf-btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}

/* ── FOOTER overrides for light page ─────────────── */
.sf-page footer { position: relative; z-index: 1; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 960px) {
  .sf-values__grid { grid-template-columns: repeat(2, 1fr); }
  .sf-values__grid--row2 { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .sf-products__grid { grid-template-columns: repeat(2, 1fr); }
  .sf-steps { grid-template-columns: repeat(3, 1fr); }
  .sf-steps::before { display: none; }
  .sf-why__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sf-resources__grid { grid-template-columns: repeat(3, 1fr); }
  .sf-resources__header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 640px) {
  .sf-hero { padding: 6rem 1.5rem 4rem; }
  .sf-hero__ctas { flex-direction: column; align-items: center; }
  .sf-hero__stats { gap: 2rem; }
  .sf-values__grid,
  .sf-values__grid--row2 { grid-template-columns: 1fr; }
  .sf-products__grid { grid-template-columns: 1fr; }
  .sf-steps { grid-template-columns: 1fr; }
  .sf-usecases__grid { grid-template-columns: 1fr; }
  .sf-ucard--wide { grid-column: 1; }
  .sf-resources__grid { grid-template-columns: 1fr; }
  .sf-why__badges { grid-template-columns: repeat(2, 1fr); }
  .sf-table { font-size: 0.8rem; }
  .sf-table th, .sf-table td { padding: 0.75rem 0.9rem; }
}
