@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@500;600;700;800&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors - Offset Security Identity Guidelines */
  --primary-blue:         #2457D6;
  --primary-blue-hover:   #1b45b0;
  --primary-blue-light:   rgba(36, 87, 214, 0.07);
  --primary-blue-border:  rgba(36, 87, 214, 0.2);
  --primary-midnight:     #0B1220;
  --secondary-slate:      #64748B;
  --secondary-steel:      #A8B5C7;
  --neutral-gray:         #E5E7EB;
  --neutral-white:        #F8FAFC;

  /* ── Light-theme layout tokens ── */
  --bg-main:        #FFFFFF;
  --bg-section:     #F8FAFC;
  --bg-dark:        #0B1220;          /* footer & CTA dark strip */
  --bg-card:        #FFFFFF;
  --border-color:   #E5E7EB;
  --border-hover:   rgba(36, 87, 214, 0.35);
  --text-main:      #0B1220;
  --text-body:      #374151;
  --text-muted:     #64748B;

  /* Typography */
  --font-headings: 'Sora', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Motion */
  --transition-smooth: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);

  /* Error palette */
  --color-danger-light:   #f87171;
}

html { scroll-behavior: smooth; font-size: 16px; background: #fff; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.65;
  overflow-x: hidden;
}

/* --- Typography Scale (Brand Spec) --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  line-height: 1.2;
  color: var(--primary-midnight);
}
h1 { font-size: 3rem;   font-weight: 800; letter-spacing: -1.5px; }
h2 { font-size: 2.25rem; font-weight: 700; letter-spacing: -0.75px; }
h3 { font-size: 1.5rem;  font-weight: 600; }

a { color: inherit; text-decoration: none; transition: var(--transition-smooth); }

/* --- Layout --- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 0; position: relative; }

/* --- Utilities --- */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-midnight) 20%, var(--secondary-slate) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-blue  { color: var(--primary-blue); }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem; padding: 0.875rem 1.875rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  border-radius: 4px; cursor: pointer; transition: var(--transition-smooth);
  border: none; letter-spacing: 0.25px;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: #fff;
  box-shadow: 0 2px 14px rgba(36, 87, 214, 0.28);
}
.btn-primary:hover {
  background-color: var(--primary-blue-hover);
  box-shadow: 0 4px 24px rgba(36, 87, 214, 0.48);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 1.5px solid var(--neutral-gray);
  color: var(--secondary-slate);
}
.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

/* --- Header / Navbar --- */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: var(--transition-smooth);
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 18px rgba(0, 0, 0, 0.06);
}

.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-link { display: flex; align-items: center; }
.logo-img  { height: 36px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-item  { position: relative; }
.nav-link  {
  font-size: 0.875rem; font-weight: 500; color: var(--secondary-slate);
  padding: 0.6rem 1rem; border-radius: 4px;
  display: flex; align-items: center; gap: 0.4rem;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 2px; left: 1rem; right: 1rem;
  height: 1.5px; background: var(--primary-blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--primary-midnight); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-ctas { display: flex; align-items: center; gap: 0.875rem; }

.mobile-menu-btn {
  display: none; background: none; border: none;
  color: var(--primary-midnight); cursor: pointer; padding: 0.5rem;
}

/* --- Hero --- */
.hero {
  display: flex; align-items: center;
  padding-top: 80px; padding-bottom: 40px;
  background-color: var(--bg-main);
  position: relative; overflow: hidden; min-height: 100vh;
}

/* Subtle dot grid on white */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(11, 18, 32, 0.055) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}

.hero-glow-1 {
  position: absolute; top: 10%; left: -5%; width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(36, 87, 214, 0.07) 0%, transparent 65%);
  pointer-events: none; filter: blur(60px);
}

.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background-color: var(--primary-blue-light);
  border: 1px solid var(--primary-blue-border);
  padding: 0.45rem 1.1rem; border-radius: 50px; margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; background-color: var(--primary-blue);
  border-radius: 50%; box-shadow: 0 0 6px var(--primary-blue);
  animation: pulse-glow 2s infinite;
}
.hero-badge-text {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; color: var(--primary-blue);
}

.hero h1 {
  font-size: 4.5rem; font-weight: 800; letter-spacing: -2px;
  margin-bottom: 1.5rem; max-width: 680px; line-height: 1.1;
  color: var(--primary-midnight);
}
.hero-desc {
  font-size: 1.05rem; color: var(--secondary-slate);
  max-width: 540px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 0.875rem; margin-bottom: 3rem; }
.hero-sla-info {
  border-left: 2px solid var(--primary-blue-border);
  padding-left: 1.25rem; color: var(--secondary-slate);
  font-size: 0.875rem; max-width: 460px; line-height: 1.65;
}

/* Offset Geometry Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.offset-geometry-container {
  position: relative; width: 100%; max-width: 780px; height: 540px;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.geom-bg-glow {
  position: absolute; width: 140%; height: 140%;
  background: radial-gradient(circle, rgba(36, 87, 214, 0.1) 0%, transparent 70%);
  filter: blur(50px);
}
.geom-stat-card {
  position: absolute; background: #fff;
  border: 1.5px solid var(--border-color); padding: 1rem 1.5rem;
  border-radius: 10px; text-align: center;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}
.geom-card-1 { top: 0; right: -24px; animation: float-card-1 8s ease-in-out infinite alternate; }
.geom-card-2 { bottom: 0; left: -36px; animation: float-card-2 9s ease-in-out infinite alternate; }
.geom-stat-val { font-family: var(--font-headings); font-size: 1.4rem; font-weight: 700; color: var(--primary-blue); margin-bottom: 0.25rem; }
.geom-stat-lbl { font-size: 0.72rem; color: var(--secondary-slate); letter-spacing: 0.5px; }

/* --- Section Global Structure --- */
.section-meta {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px; color: var(--primary-blue);
  margin-bottom: 1rem; padding: 0.3rem 0.8rem;
  background: var(--primary-blue-light); border: 1px solid var(--primary-blue-border);
  border-radius: 50px;
}
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.75px; color: var(--primary-midnight); }

/* --- Why Section --- */
.why-section { background-color: var(--bg-section); padding: 80px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.why-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 5rem; align-items: start; }
.why-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.why-card { background: var(--bg-card); border: 1.5px solid var(--border-color); border-radius: 10px; padding: 2rem; transition: var(--transition-smooth); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--primary-blue), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.why-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.07); border-color: var(--border-hover); }
.why-card:hover::before { transform: scaleX(1); }
.why-card-icon { width: 40px; height: 40px; background: var(--primary-blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary-blue); margin-bottom: 1.25rem; flex-shrink: 0; }
.why-card h3 { font-family: var(--font-headings); font-size: 1rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.875rem; color: var(--text-body); line-height: 1.65; margin: 0; }
.why-philosophy-label { display: block; font-family: var(--font-headings); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary-blue); margin-top: 2.5rem; margin-bottom: 1rem; }
.why-philosophy-quote { font-family: var(--font-headings); font-size: clamp(1rem, 1.8vw, 1.35rem); font-weight: 500; color: var(--text-main); line-height: 1.65; font-style: italic; margin: 0 0 2rem; border-left: 3px solid var(--primary-blue); padding-left: 1.5rem; }
.why-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--primary-blue); transition: gap 0.2s; }
.why-link:hover { gap: 0.7rem; }

/* --- Services --- */
.services-section { background: var(--bg-main); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; gap: 3rem; }
.services-header .header-left { max-width: 600px; }
.services-header .header-right { font-size: 1rem; color: var(--secondary-slate); max-width: 320px; text-align: right; line-height: 1.65; }

/* Process section styles live in index.html <style> block (page-specific) */

/* --- CTA Banner --- */
.cta-banner-section {
  background-color: var(--bg-section); border-top: 1px solid var(--border-color);
  padding: 4.5rem 0; overflow: hidden; position: relative;
}
.cta-banner-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(36,87,214,0.07) 0%, transparent 65%);
  filter: blur(60px); pointer-events: none;
}
.cta-banner-section::after { display: none; }
.cta-banner-content { text-align: center; max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.cta-banner-section .section-title { font-size: 3rem; margin-bottom: 1.25rem; letter-spacing: -1px; color: var(--primary-midnight); }
.cta-banner-desc { font-size: 1.15rem; color: var(--secondary-slate); margin-bottom: 2.75rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.75; }

/* --- Footer - dark strip --- */
footer { background-color: var(--bg-dark); border-top: none; padding: 5rem 0 2.75rem; font-size: 0.875rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 3rem; margin-bottom: 0; }
.footer-brand .logo-img { height: 30px; }
.footer-brand p { color: var(--secondary-steel); margin-top: 1.25rem; max-width: 260px; font-size: 0.825rem; line-height: 1.65; }
.footer-column h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #fff; margin-bottom: 1.5rem; }
.footer-links { list-style: none; }
.footer-links li  { margin-bottom: 0.75rem; }
.footer-links a   { color: var(--secondary-slate); font-size: 0.85rem; transition: color 0.2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); color: var(--secondary-slate); font-size: 0.78rem; }
.footer-legal-links { display: flex; gap: 2rem; }
.footer-legal-links a { color: var(--secondary-slate); transition: color 0.2s ease; }
.footer-legal-links a:hover { color: #fff; }

/* --- Keyframe Animations --- */
@keyframes float-card-1 { 0%   { transform: translateY(0);  } 100% { transform: translateY(-9px); } }
@keyframes float-card-2 { 0%   { transform: translateY(0);  } 100% { transform: translateY(7px);  } }
@keyframes pulse-glow   { 0%   { box-shadow: 0 0 4px var(--primary-blue); opacity: 0.6; }
                          50%  { box-shadow: 0 0 12px var(--primary-blue); opacity: 1;   }
                          100% { box-shadow: 0 0 4px var(--primary-blue); opacity: 0.6; } }
@keyframes bounce-y     { 0%, 100% { transform: translateY(0);  } 50% { transform: translateY(5px); } }

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 1200px) {
  .hero h1 { font-size: 3.75rem; }
}

@media (max-width: 991px) {
  section { padding: 5.5rem 0; }
  .container { padding: 0 1.5rem; }

  .hero { padding-top: 60px; padding-bottom: 30px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero h1 { font-size: 3rem; margin: 0 auto 1.5rem; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-ctas { justify-content: center; }
  .hero-sla-info { border-left: none; border-top: 2px solid var(--primary-blue-border); padding-left: 0; padding-top: 1.25rem; margin: 0 auto; }
  .hero-visual { order: -1; margin-top: 0; margin-bottom: 1rem; display: flex; justify-content: center; }
}

/* Mobile only: hero animation takes a smaller slice of the viewport, leaving more room for hero copy below it */
@media (max-width: 768px) {
  .offset-geometry-container { width: 100%; height: 20vh; max-height: 190px; min-height: 150px; }
}

@media (max-width: 991px) {
  .why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .why-cards { grid-template-columns: repeat(2, 1fr); }

  .services-header { flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; }
  .services-header .header-right { text-align: center; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: span 2; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .logo-link { justify-content: center; }

  .mobile-menu-btn { display: block; }
  .nav-links {
    position: absolute; top: 72px; left: 0; width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: none; z-index: 999;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
  }
  .nav-links.mobile-active { display: flex; }
  .nav-ctas { display: none; }
}

@media (max-width: 576px) {
  .why-cards { grid-template-columns: 1fr; }
  .hero { padding-top: 50px; padding-bottom: 20px; }
  .hero h1 { font-size: 2.375rem; letter-spacing: -1px; }
  .section-title { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 1.25rem; text-align: center; }
  .cta-banner-section .section-title { font-size: 2.25rem; }
  .offset-geometry-container { max-width: 460px; }
  .geom-stat-card { display: none; }
}

/* --- Industry Pages --- */
.threat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.threat-card { padding: 2rem 1.75rem; border-radius: 14px; background: var(--bg-card); border: 1.5px solid var(--border-color); }
.threat-icon { width: 48px; height: 48px; background: var(--primary-blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.threat-card h4 { font-family: var(--font-headings); font-size: 1.05rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.75rem; }
.threat-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }
.framework-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.framework-badge { padding: 1.25rem 1.5rem; border-radius: 10px; background: var(--bg-card); border: 1.5px solid var(--border-color); display: flex; align-items: flex-start; gap: 1rem; }
.fw-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary-blue); flex-shrink: 0; margin-top: 4px; }
.fw-body strong { display: block; font-family: var(--font-headings); font-size: 0.9rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.25rem; }
.fw-body span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.service-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.pillar-card { padding: 2.25rem 2rem; border-radius: 14px; background: var(--bg-card); border: 1.5px solid var(--border-color); transition: var(--transition-smooth); position: relative; overflow: hidden; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary-blue), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.pillar-card:hover { transform: translateY(-5px); border-color: var(--border-hover); box-shadow: 0 16px 40px rgba(36,87,214,0.08); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-num { font-size: 0.72rem; font-weight: 700; color: var(--primary-blue); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }
.pillar-card h4 { font-family: var(--font-headings); font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.75rem; }
.pillar-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }
.hero-stats { display: flex; gap: 1.5rem; margin: 2.5rem 0; flex-wrap: wrap; }
.stat-card-sm { flex: 1; min-width: 160px; padding: 1.75rem; background: var(--bg-card); border: 1.5px solid var(--border-color); border-radius: 12px; text-align: center; }
.stat-val { font-family: var(--font-headings); font-size: 2.25rem; font-weight: 800; color: var(--primary-blue); line-height: 1; margin-bottom: 0.4rem; }
.stat-lbl { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
@media(max-width:991px) { .threat-grid { grid-template-columns: 1fr 1fr; } .framework-grid { grid-template-columns: 1fr 1fr; } .service-pillars { grid-template-columns: 1fr; } }
@media(max-width:576px) { .threat-grid { grid-template-columns: 1fr; } .framework-grid { grid-template-columns: 1fr; } .hero-stats { flex-direction: column; } }

/* --- Service Pages --- */
.sp-hero {
  padding-top: 72px; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative; overflow: hidden;
}
.sp-hero__inner {
  padding: 1.5rem 4rem 1rem;
  position: relative; z-index: 1;
}
.sp-breadcrumb {
  list-style: none; display: flex; gap: 0.45rem; padding: 0;
  font-size: 0.78rem; color: rgba(0,0,0,0.32); margin-bottom: 1.25rem;
}
.sp-breadcrumb a { color: rgba(0,0,0,0.38); text-decoration: none; }
.sp-breadcrumb a:hover { color: var(--primary-blue); }
.sp-breadcrumb .bc-active { color: var(--primary-blue); }
.sp-seq {
  font-family: ui-monospace, monospace; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--primary-blue); margin-bottom: 0.6rem;
}
.sp-name {
  font-family: var(--font-headings); font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -0.04em; line-height: 1.05;
  color: var(--text-main); margin: 0 0 0.05rem;
}
.sp-rule {
  width: 2.5rem; height: 2px;
  background: var(--primary-blue);
  margin: 1rem 0 0.9rem;
  transform-origin: left center;
}
.sp-intro { font-size: 1rem; font-weight: 500; color: var(--text-main); margin-bottom: 0.25rem; }
.sp-sub { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.sp-badges { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.5rem; }
.sp-badge {
  font-family: ui-monospace, monospace; font-size: 0.6rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem; border-radius: 3px;
  border: 1px solid var(--primary-blue-border);
  color: var(--primary-blue); background: var(--primary-blue-light);
}
.sp-cta {
  font-family: var(--font-headings); font-size: 0.85rem; font-weight: 600;
  color: var(--primary-blue); display: inline-flex; align-items: center;
  gap: 0.4rem; text-decoration: none; transition: gap 0.2s;
}
.sp-cta:hover { gap: 0.7rem; }
.sp-watermark {
  position: absolute; right: -0.5rem; bottom: -0.15em;
  font-family: var(--font-headings); font-weight: 800;
  font-size: clamp(10rem, 22vw, 22rem); line-height: 0.85;
  color: rgba(36,87,214,0.04);
  user-select: none; pointer-events: none; z-index: 0;
  letter-spacing: -0.05em;
}
.sp-step {
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 2.5rem 2.75rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 2.75rem; align-items: start;
}
.sp-step:nth-child(even) { background: var(--bg-section); }
.sp-step__num {
  font-family: ui-monospace, monospace; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--primary-blue); display: block; margin-bottom: 0.5rem;
}
.sp-step__title {
  font-family: var(--font-headings); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.15;
  color: var(--text-main); margin: 0;
}
.sp-step__time {
  display: inline-block; margin: 0.75rem 0 1.25rem;
  font-family: ui-monospace, monospace; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--primary-blue-light); color: var(--primary-blue);
  border: 1px solid var(--primary-blue-border);
  padding: 0.25rem 0.6rem; border-radius: 3px;
}
.sp-step__desc { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; }
.sp-step__dlabel {
  font-family: ui-monospace, monospace; font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--primary-blue); display: block; margin-bottom: 0.85rem;
}
.sp-step__cards { display: grid; gap: 0.65rem; }
.sp-step__card {
  background: var(--bg-section); border: 1px solid rgba(0,0,0,0.07);
  border-radius: 4px; padding: 1rem 1.25rem;
  font-size: 0.88rem; color: var(--text-main); line-height: 1.6;
}
.sp-step:nth-child(even) .sp-step__card { background: var(--bg-main); }
@media (max-width: 860px) {
  .sp-hero__inner { padding: 1rem 1.5rem 0.75rem; }
  .sp-name { font-size: clamp(1.9rem, 7.5vw, 2.8rem); }
  .sp-watermark { display: none; }
  .sp-step { grid-template-columns: 1fr; gap: 1.4rem 0; padding: 1.6rem 1.5rem; }
}
@media (prefers-reduced-motion: reduce) { .sp-cta { transition: none; } }
