/* ═══════════════════════════════════════════════════════════
   SaaSassins — Main Stylesheet
   Layout, components, animations. Consumes css/tokens.css.
   ═══════════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--dark-950);
  color: var(--text-secondary);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; color: inherit; }

/* Subtle grain / noise overlay on every dark section for grit */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' seed='7'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { color: var(--text-primary); line-height: 1.2; font-weight: 700; font-family: var(--font-heading); }
h1 { font-size: clamp(2.8rem, 7vw, 5rem); letter-spacing: -.04em; line-height: 1.05; }
h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { max-width: 65ch; }

.gradient-text {
  color: var(--red-500);
}
.silver-text {
  color: var(--red-500);
}
.red-text { color: var(--red-500); }
.mono { font-family: var(--font-mono); letter-spacing: -.02em; }

/* ── Layout ── */
.container      { max-width: var(--container-max);  margin: 0 auto; padding: 0 24px; width: 100%; box-sizing: border-box; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; width: 100%; box-sizing: border-box; }
.section        { padding: var(--section-pad) 0; position: relative; }

/* ── Background mesh (static radial gradients — no pseudo-elements, no CLS) ── */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 8% 12%, rgba(220,38,38,.14), transparent 70%),
    radial-gradient(ellipse 50% 50% at 92% 88%, rgba(192,192,192,.07), transparent 70%);
}


/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--duration-normal) var(--ease-out);
}
.nav.scrolled {
  background: rgba(5,5,5,.85);
  /* backdrop-filter removed for performance */
  border-bottom: 1px solid rgba(220,38,38,.08);
  padding: 10px 0;
}
.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 44px; width: auto; }
.nav.scrolled .nav-logo img { height: 36px; transition: height var(--duration-normal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-brand);
  border-radius: 1px;
  transition: width var(--duration-normal) var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,.97);
    /* backdrop-filter removed for performance */
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal);
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 20px; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 4px 16px rgba(220,38,38,.35);
}
.btn-primary:hover {
  background: var(--red-500);
  box-shadow: 0 6px 24px rgba(220,38,38,.5);
  transform: translateY(-2px);
}
.btn-secondary {
  background: rgba(255,255,255,.05);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,.12);
  /* backdrop-filter removed for performance */
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(192,192,192,.3);
  transform: translateY(-2px);
}
.btn-gradient {
  background: var(--gradient-blade);
  color: #fff;
  box-shadow: 0 4px 20px rgba(220,38,38,.3);
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
}
.btn-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-normal);
}
.btn-gradient:hover::before { opacity: 1; }
.btn-gradient:hover {
  box-shadow: var(--shadow-glow-blade);
  transform: translateY(-2px);
}
/* Blade-sweep shimmer on hover */
.btn-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .5s ease;
}
.btn-gradient:hover::after { left: 100%; }

.btn-ghost {
  color: var(--red-400);
  padding: 8px 0;
}
.btn-ghost:hover { color: var(--red-300); }
.btn-ghost svg { transition: transform var(--duration-fast); }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-lg { padding: 16px 0; font-size: 16px; width: 240px; justify-content: center; text-align: center; box-sizing: border-box; }
.btn-lg.btn-full { width: 100%; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* Ripple on click */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: ripple .5s ease-out;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Focus-visible rings for keyboard users */
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red-500);
  outline-offset: 3px;
}

/* ── Cards ── */
.glass-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  /* backdrop-filter removed for performance */
  transition: all var(--duration-normal) var(--ease-out);
}
.glass-card:hover {
  border-color: rgba(220,38,38,.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-red);
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.badge-red    { background: rgba(220,38,38,.15);   color: var(--red-400);    border: 1px solid rgba(220,38,38,.25); }
.badge-silver { background: rgba(192,192,192,.12); color: var(--silver-300); border: 1px solid rgba(192,192,192,.2); }
.badge-char   { background: rgba(75,85,99,.3);    color: var(--char-300);   border: 1px solid rgba(156,163,175,.2); }

/* ── Section Headers ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red-500);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 20px;
  padding: 6px 16px 6px 0;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 1px;
}
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.section-header p {
  margin: 20px auto 0;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Hero Section ── */
.hero {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 140px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220,38,38,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,38,38,.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 35%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 35%, black 30%, transparent 100%);
}
/* Hero glow — static radial, no infinite animation */
.hero-glow {
  position: absolute;
  width: 1000px;
  height: 600px;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse,
              rgba(220,38,38,.18) 0%,
              rgba(127,29,29,.08) 35%,
              transparent 65%);
  pointer-events: none;
  opacity: .85;
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  word-wrap: break-word;
}
.hero-badge { margin-bottom: 28px; }
.hero-badge .badge {
  padding: 6px 18px;
  font-size: 13px;
  border: 1px solid rgba(220,38,38,.25);
  /* backdrop-filter removed for performance */
  background: rgba(10,10,10,.6);
}
.hero h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin: 0 auto 44px;
  max-width: 620px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-stat { text-align: center; position: relative; }
.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -28px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 36px;
  background: rgba(255,255,255,.1);
}
.hero-stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--red-500);
}
.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: .02em;
}

/* Floating hero shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  animation: float 20s ease-in-out infinite;
}
.hero-shapes .shape:nth-child(1) {
  width: 300px; height: 300px;
  background: var(--red-600);
  top: 15%; left: 8%;
}
.hero-shapes .shape:nth-child(2) {
  width: 200px; height: 200px;
  background: var(--silver-500);
  top: 60%; right: 10%;
  animation-delay: -7s;
}
.hero-shapes .shape:nth-child(3) {
  width: 150px; height: 150px;
  background: var(--red-400);
  bottom: 20%; left: 15%;
  animation-delay: -14s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-30px) rotate(5deg); }
  66%      { transform: translateY(20px) rotate(-3deg); }
}

/* ── Section alternating bands ── */
.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255,255,255,.01) 0%, rgba(255,255,255,.02) 50%, rgba(255,255,255,.01) 100%);
}
.section:nth-of-type(even)::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,.15), transparent);
}

/* ── Problem / Solution ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.problem-card {
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}
.problem-card:hover { transform: translateY(-6px); }
.problem-card.pain {
  background: linear-gradient(160deg, rgba(220,38,38,.08), rgba(10,10,10,.85));
  border: 1px solid rgba(220,38,38,.18);
  box-shadow: inset 0 0 60px rgba(220,38,38,.04);
}
.problem-card.pain:hover {
  border-color: rgba(220,38,38,.35);
  box-shadow: inset 0 0 60px rgba(220,38,38,.04), 0 20px 60px rgba(220,38,38,.15);
}
.problem-card.solution {
  background: linear-gradient(160deg, rgba(192,192,192,.06), rgba(10,10,10,.85));
  border: 1px solid rgba(192,192,192,.18);
  box-shadow: inset 0 0 60px rgba(192,192,192,.03);
}
.problem-card.solution:hover {
  border-color: rgba(192,192,192,.35);
  box-shadow: inset 0 0 60px rgba(192,192,192,.03), 0 20px 60px rgba(192,192,192,.08);
}
.problem-card .icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.problem-card.pain .icon     { background: rgba(220,38,38,.14);   color: var(--red-400); border: 1px solid rgba(220,38,38,.2); }
.problem-card.solution .icon { background: rgba(220,38,38,.12); color: var(--red-400); border: 1px solid rgba(220,38,38,.2); }
.problem-card h4 { margin-bottom: 10px; font-size: 1.15rem; }
.problem-card p  { line-height: 1.7; }

/* ── Symmetrical Feature Grid (bento) ── */
.feature-grid-sym {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card-sym {
  background: linear-gradient(160deg, rgba(26,26,26,.7), rgba(10,10,10,.95));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature-card-sym::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(220,38,38,.4), rgba(192,192,192,.2), transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}
.feature-card-sym:hover::before { opacity: 1; }
.feature-card-sym:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 40px rgba(220,38,38,.08);
}
.feature-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-card-icon.red,
.feature-card-icon.silver,
.feature-card-icon.char   { background: rgba(220,38,38,.12);  border: 1px solid rgba(220,38,38,.2);  color: var(--red-400); }
.feature-card-sym h3 { margin-bottom: 10px; font-size: 1.15rem; }
.feature-card-sym p  { font-size: .92rem; color: var(--text-secondary); line-height: 1.65; }
@media (max-width: 900px) { .feature-grid-sym { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid-sym { grid-template-columns: 1fr; } }

/* ── Process Steps (horizontal timeline) ── */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--red-600), var(--char-500), var(--silver-500));
  opacity: .25;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  color: var(--red-500);
}
.step-num::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--gradient-brand);
  z-index: -1;
  opacity: .25;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--dark-900);
  z-index: -1;
}
.step h3 { margin-bottom: 10px; font-size: 1.05rem; }
.step p  { font-size: .88rem; color: var(--text-secondary); margin: 0 auto; max-width: 220px; line-height: 1.65; }

@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } .steps::before { display: none; } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

/* ── Vertical Timeline ── */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 72px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(220,38,38,.6), rgba(75,85,99,.4), rgba(192,192,192,.5));
  background-size: 100% 200%;
  animation: timelineFlow 4s ease-in-out infinite alternate;
}
@keyframes timelineFlow {
  0%   { background-position: 0 0; }
  100% { background-position: 0 100%; }
}
.timeline-step {
  position: relative;
  padding: 0 0 56px 40px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step-content {
  background: linear-gradient(160deg, rgba(26,26,26,.6), rgba(10,10,10,.85));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  /* backdrop-filter removed for performance */
  transition: all .3s var(--ease-out);
}
.timeline-step-content:hover {
  border-color: rgba(220,38,38,.2);
  transform: translateX(4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.timeline-step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 8px;
  color: var(--red-500);
}
.timeline-marker {
  position: absolute;
  left: -40px; top: 24px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--dark-900);
  border: 3px solid rgba(220,38,38,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 0 30px rgba(220,38,38,.2);
  color: var(--red-400);
  background: linear-gradient(160deg, var(--dark-900), rgba(220,38,38,.1));
}
.timeline-step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.timeline-step p  { font-size: .95rem; color: var(--text-secondary); line-height: 1.7; max-width: 520px; }
@media (max-width: 600px) {
  .timeline { padding-left: 56px; }
  .timeline-marker { width: 48px; height: 48px; left: -30px; font-size: 18px; }
  .timeline-step-content { padding: 20px 24px; }
}

/* ── Showcase (Product Cards) ── */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.showcase-card {
  background: linear-gradient(160deg, rgba(26,26,26,.6), rgba(10,10,10,.9));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease-out);
}
.showcase-card:hover {
  border-color: rgba(220,38,38,.2);
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 60px rgba(220,38,38,.08);
}
.showcase-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
}
.showcase-card-head {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.showcase-card-body { flex: 1; min-width: 280px; }
.showcase-card-head .devices { margin: 0; max-width: 560px; flex: 1; }
.showcase-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  margin: 8px 0 14px;
  letter-spacing: -.02em;
}
.showcase-card .tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 520px;
}
.showcase-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.showcase-pill {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}
.showcase-psr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0 32px;
}
.showcase-psr-item {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
}
.showcase-psr-item .psr-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red-500);
  margin-bottom: 8px;
}
.showcase-psr-item p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.showcase-psr-item:nth-child(2) .psr-label { color: var(--silver-300); }
.showcase-psr-item:nth-child(3) .psr-label { color: var(--char-300); }

@media (max-width: 900px) {
  .showcase-card { padding: 40px 28px; }
  .showcase-card-head { flex-direction: column; gap: 32px; }
  .showcase-psr { grid-template-columns: 1fr; }
}

/* Coming-soon placeholder cards */
.coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.coming-card {
  background: linear-gradient(160deg, rgba(26,26,26,.5), rgba(10,10,10,.9));
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}
.coming-card:hover {
  border-color: rgba(220,38,38,.3);
  border-style: solid;
}
.coming-card .coming-glyph {
  font-size: 40px;
  margin-bottom: 18px;
  opacity: .45;
  filter: grayscale(.5);
}
.coming-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.coming-card p { font-size: .85rem; color: var(--text-muted); margin: 0 auto; }
.coming-card .industry-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red-400);
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(220,38,38,.08);
  border: 1px solid rgba(220,38,38,.15);
}
@media (max-width: 900px) { .coming-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .coming-grid { grid-template-columns: 1fr; } }

/* ── Tech Stack Row ── */
.tech-stack-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  transition: all .3s var(--ease-out);
}
.tech-pill:hover {
  border-color: rgba(220,38,38,.35);
  background: rgba(220,38,38,.05);
  color: var(--text-primary);
  transform: translateY(-2px);
}
.tech-pill svg { color: var(--red-400); }
.tech-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 8px var(--red-500);
}

/* ── Comparison Table ── */
.compare-stack {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(160deg, rgba(26,26,26,.5), rgba(10,10,10,.9));
}
.compare-header-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  padding: 18px 28px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.compare-header-row span {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
}
.compare-header-row span:last-child { color: var(--red-400); }
.compare-header-row span:not(:first-child) { text-align: center; }
.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .15s;
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,.02); }
.compare-row .feature-name { font-size: .92rem; color: var(--text-secondary); font-weight: 500; }
.compare-row .compare-val { text-align: center; font-size: .85rem; font-weight: 600; }
.compare-row .compare-val.yes { color: var(--silver-300); }
.compare-row .compare-val.no  { color: var(--text-muted); opacity: .6; }
.compare-row .compare-val:last-child {
  background: rgba(220,38,38,.06);
  margin: -16px 0;
  padding: 16px 0;
  color: var(--red-400);
  font-weight: 700;
}
@media (max-width: 768px) {
  .compare-header-row,
  .compare-row { grid-template-columns: 1.2fr .7fr .7fr .7fr; padding: 14px 14px; }
  .compare-row .feature-name { font-size: .8rem; }
  .compare-row .compare-val { font-size: .75rem; }
}

/* ── Savings Calculator ── */
.calc-card {
  background: linear-gradient(160deg, rgba(26,26,26,.6), rgba(10,10,10,.95));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  padding: 40px 40px;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}
.calc-inputs { display: flex; flex-direction: column; gap: 24px; }
.calc-input-group label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 12px;
}
.calc-input-group .slider-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.calc-input-group .slider-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red-400);
  font-variant-numeric: tabular-nums;
  font-family: var(--font-mono);
}
.slider-display .slider-min,
.slider-display .slider-max {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--dark-600);
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red-600);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(220,38,38,.5), 0 0 0 3px rgba(220,38,38,.15);
  transition: transform .15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red-600);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(220,38,38,.5);
}
.calc-output {
  text-align: center;
  padding: 20px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
}
.calc-output-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.calc-output-amount {
  font-size: 1.85rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  font-family: var(--font-mono);
}
.calc-output.theirs-output { border-color: rgba(220,38,38,.15); background: rgba(220,38,38,.04); }
.calc-output.theirs-output .calc-output-label { color: var(--red-400); }
.calc-output.theirs-output .calc-output-amount { color: var(--text-primary); }
.calc-output.ours-output { border-color: rgba(192,192,192,.15); background: rgba(192,192,192,.03); }
.calc-output.ours-output .calc-output-label { color: var(--silver-300); }
.calc-output.ours-output .calc-output-amount {
  color: var(--silver-300);
}
.calc-outputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.calc-savings-bar {
  text-align: center;
  padding: 26px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(220,38,38,.08), rgba(10,10,10,.4));
  border: 1px solid rgba(220,38,38,.2);
  margin-top: 16px;
}
.calc-savings-bar .savings-label {
  font-size: .82rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}
.calc-savings-bar .savings-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red-500);
  letter-spacing: -.02em;
  font-family: var(--font-mono);
}
@media (max-width: 560px) {
  .calc-card { padding: 28px 20px; }
  .calc-outputs-row { grid-template-columns: 1fr; }
}

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  background: rgba(255,255,255,.01);
}
.faq-item:hover { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.02); }
.faq-item.open {
  border-color: rgba(220,38,38,.25);
  background: rgba(220,38,38,.03);
  border-left: 3px solid var(--red-500);
}
.faq-q {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: .98rem;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.faq-q .icon {
  font-size: 22px;
  color: var(--text-muted);
  transition: transform var(--duration-normal) var(--ease-out);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); color: var(--red-500); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}
.faq-a-inner {
  padding: 0 28px 22px;
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  padding: 100px 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(220,38,38,.08), rgba(26,26,26,.6), rgba(192,192,192,.03));
  border: 1px solid rgba(220,38,38,.15);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(220,38,38,.14), transparent 45%),
              radial-gradient(circle at 70% 60%, rgba(192,192,192,.06), transparent 45%);
  animation: ctaPulse 10s ease-in-out infinite alternate;
}
@keyframes ctaPulse {
  from { transform: rotate(0deg) scale(1); }
  to   { transform: rotate(8deg) scale(1.05); }
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 20px; font-size: clamp(2rem, 5vw, 3.2rem); }
.cta-banner p  { margin: 0 auto 40px; font-size: 1.15rem; max-width: 600px; line-height: 1.7; }
.cta-trust {
  margin-top: 24px;
  font-size: .85rem;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  border-top: 1px solid rgba(220,38,38,.1);
  padding: 80px 0 36px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.5));
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,.4), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo-stacked { height: 140px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: .9rem; color: var(--text-muted); max-width: 300px; line-height: 1.7; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--silver-400);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .9rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--duration-fast);
}
.footer-col a:hover { color: var(--red-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .tagline {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--red-500);
  letter-spacing: .04em;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand .footer-logo-stacked { height: 120px; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  padding: 28px 0;
  border-top: 1px solid rgba(220,38,38,.08);
  border-bottom: 1px solid rgba(220,38,38,.08);
  background: linear-gradient(180deg, rgba(10,10,10,.3), rgba(10,10,10,.6), rgba(10,10,10,.3));
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 45s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  padding: 12px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(220,38,38,.15);
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-mono);
}
.marquee-item::before {
  content: '⚔';
  margin-right: 8px;
  color: var(--red-500);
  font-size: .8rem;
}

/* Spotlight removed for performance — was updating style.left/top on every mousemove */

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--gradient-blade);
  z-index: 1001;
  transition: width 50ms linear;
  box-shadow: 0 0 10px var(--red-500);
}

/* ── Section Divider ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,.3) 20%, rgba(192,192,192,.3) 50%, rgba(220,38,38,.3) 80%, transparent);
  max-width: 60%;
  margin: 0 auto;
}

/* ── Page transition ── */
.page-transition { animation: pageIn .5s var(--ease-out); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Device Mockups ── */
.devices-wrap {
  overflow: hidden;
  width: 100%;
}
/* ── Demo Carousel ── */
.demo-carousel {
  margin-top: 56px;
  position: relative;
}
.carousel-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.carousel-tab {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  cursor: pointer;
  transition: all .25s var(--ease-out);
}
.carousel-tab:hover {
  border-color: rgba(220,38,38,.3);
  color: var(--text-primary);
  background: rgba(220,38,38,.06);
}
.carousel-tab.active {
  background: var(--red-600);
  border-color: var(--red-600);
  color: #fff;
  box-shadow: 0 4px 16px rgba(220,38,38,.4);
}
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.carousel-track {
  display: flex;
  transition: transform .5s var(--ease-out);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.carousel-slide .devices {
  margin-top: 0;
}
.carousel-label {
  text-align: center;
  margin-top: 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  letter-spacing: .02em;
}
.carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  background: transparent;
  cursor: pointer;
  transition: all .25s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--red-500);
  border-color: var(--red-500);
  box-shadow: 0 0 8px var(--red-500);
}
@media (max-width: 768px) {
  .carousel-tabs { gap: 6px; }
  .carousel-tab { padding: 6px 12px; font-size: 11px; }
}

.devices {
  position: relative;
  max-width: 750px;
  margin: 48px auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.device { position: relative; flex-shrink: 0; }
.device-laptop { width: 460px; z-index: 2; }
.device-laptop .device-frame {
  background: #0d0d0d;
  border-radius: 12px 12px 0 0;
  border: 2px solid #1f1f1f;
  border-bottom: none;
  padding: 8px 8px 0;
  position: relative;
}
.device-laptop .device-frame::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-700);
  margin: 0 auto 6px;
  box-shadow: 0 0 4px var(--red-600);
}
.device-laptop .device-screen {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.05);
}
.device-laptop .device-base {
  width: 110%;
  margin-left: -5%;
  height: 14px;
  background: linear-gradient(180deg, #1f1f1f, #0d0d0d);
  border-radius: 0 0 8px 8px;
  border: 2px solid #1f1f1f;
  border-top: 1px solid #2a2a2a;
  position: relative;
}
.device-laptop .device-base::before {
  content: '';
  position: absolute;
  top: 2px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 4px;
  border-radius: 2px;
  background: #2a2a2a;
}
.device-tablet {
  width: 180px;
  margin-right: -40px;
  z-index: 1;
}
.device-tablet .device-frame {
  background: #0d0d0d;
  border-radius: 14px;
  border: 2px solid #1f1f1f;
  padding: 10px 6px;
}
.device-tablet .device-screen {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.05);
}
.device-phone {
  width: 100px;
  margin-left: -40px;
  z-index: 3;
}
.device-phone .device-frame {
  background: #0d0d0d;
  border-radius: 18px;
  border: 2px solid #1f1f1f;
  padding: 10px 4px 8px;
  position: relative;
}
.device-phone .device-frame::before {
  content: '';
  display: block;
  width: 36px; height: 4px;
  border-radius: 2px;
  background: #1f1f1f;
  margin: 0 auto 6px;
}
.device-phone .device-screen {
  width: 100%;
  aspect-ratio: 9/18;
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.05);
}
.devices::before {
  content: '';
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 40px;
  background: radial-gradient(ellipse, rgba(220,38,38,.25), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}
.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}
@media (max-width: 768px) {
  .devices { transform: scale(.75); transform-origin: center bottom; margin-top: 32px; }
}
@media (max-width: 600px) {
  .devices { transform: none; max-width: 340px; margin-top: 32px; }
  .device-tablet { display: none; }
  .device-laptop { width: 280px; }
  .device-laptop .device-base { width: 108%; margin-left: -4%; }
  .device-phone { width: 80px; margin-left: -30px; z-index: 3; }
}

/* ── About page helpers ── */
.about-hero {
  padding: 180px 0 80px;
  text-align: center;
}
.about-hero h1 { margin-bottom: 20px; }
.about-hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 0;
}
.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p { line-height: 1.85; margin-bottom: 18px; color: var(--text-secondary); }
.about-story-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, rgba(220,38,38,.1), rgba(10,10,10,.95));
  border: 1px solid rgba(220,38,38,.15);
  display: flex; align-items: center; justify-content: center;
}
.about-story-visual .visual-stat {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--red-500);
  letter-spacing: -.03em;
  font-family: var(--font-mono);
}
.about-story-visual .visual-label {
  font-size: .95rem;
  color: var(--text-secondary);
  margin-top: 8px;
  text-align: center;
}
.about-story-visual .visual-content { text-align: center; padding: 40px; position: relative; z-index: 1; }
.about-story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(220,38,38,.15), transparent 60%);
}
@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; gap: 32px; }
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,.06);
}
.value-card {
  background: var(--dark-900);
  padding: 40px 32px;
  transition: background .3s;
}
.value-card:hover { background: var(--dark-800); }
.value-icon {
  font-size: 1.5rem;
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: rgba(220,38,38,.1);
  color: var(--red-400);
  border: 1px solid rgba(220,38,38,.2);
  margin-bottom: 18px;
}
.value-card h3 { margin-bottom: 10px; }
.value-card p  { font-size: .9rem; line-height: 1.65; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  max-width: 1040px;
  margin: 0 auto;
}
.contact-card {
  background: linear-gradient(160deg, rgba(26,26,26,.6), rgba(10,10,10,.95));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-card h3 { margin-bottom: 12px; }
.contact-card p  { color: var(--text-secondary); margin-bottom: 28px; line-height: 1.7; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--red-400);
  flex-shrink: 0;
}
.contact-info-item .label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info-item a, .contact-info-item span { color: var(--text-primary); font-weight: 500; }
.contact-info-item a:hover { color: var(--red-400); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  font-weight: 700;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: .95rem;
  color: var(--text-primary);
  transition: all var(--duration-fast);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--red-500);
  background: rgba(220,38,38,.04);
  box-shadow: 0 0 0 3px rgba(220,38,38,.15);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } .contact-card { padding: 28px 24px; } }

/* ── Mobile Overrides ── */
@media (max-width: 768px) {
  .hero { padding-top: 120px; }
  .hero-content { padding: 0 8px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-sub { font-size: 1rem; padding: 0 8px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 320px; }
  .hero-stats { gap: 20px; flex-direction: column; align-items: center; }
  .hero-stat:not(:last-child)::after { display: none; }

  .section-header { margin-bottom: 48px; }
  .section-header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { padding: 32px 24px; }

  .cta-banner { padding: 60px 24px; }
  .cta-banner h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-buttons { flex-direction: column; align-items: center; }

  .marquee-item { padding: 8px 16px; font-size: .78rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .container { padding: 0 16px; }
  .section { padding: clamp(56px, 10vw, 88px) 0; }
  .hero-stat-num { font-size: 1.75rem; }
}
