:root {
  --bg: #060810;
  --bg-alt: #0a0e1a;
  --card: #10152670;
  --card-solid: #10152a;
  --border: #ffffff14;
  --red: #e0262f;
  --red-light: #ff4b4b;
  --red-dark: #a3121c;
  --amber: #f5a623;
  --white: #f5f6f8;
  --gray: #9aa1b0;
  --gray-dim: #6b7280;
  --radius: 14px;
  --max-width: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(224, 38, 47, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(224, 38, 47, 0.8); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--red); color: var(--red-light); }
.btn-text {
  padding: 0;
  color: var(--red-light);
  font-weight: 600;
  background: none;
}
.btn-text:hover { color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 8, 16, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand-logo { height: 44px; width: auto; }
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--white); }
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: 168px 0 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(224,38,47,0.25), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-block;
  color: var(--red-light);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-copy p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 32px;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.6rem; font-weight: 800; color: var(--white); }
.hero-stats span { font-size: 0.8rem; color: var(--gray-dim); margin-top: 2px; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(480px, 90vw);
}
.badge {
  position: absolute;
  background: var(--card-solid);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
  max-width: 190px;
  animation: float 5s ease-in-out infinite;
}
.badge-1 { top: 4%; left: -6%; animation-delay: 0s; z-index: 3; }
.badge-2 { top: 20%; right: -10%; animation-delay: 1s; z-index: 3; }
.badge-3 { bottom: 22%; left: -12%; animation-delay: 2s; z-index: 3; }
.badge-4 { bottom: 2%; right: -4%; animation-delay: 3s; z-index: 3; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Radar scanner (behind hero logo) */
.radar {
  --radar-accent: var(--red-light);
  --radar-accent-glow: rgba(255, 75, 75, 0.55);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, 100%);
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
}
.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.radar-ring-1 { width: 100%; height: 100%; border-style: dashed; }
.radar-ring-2 { width: 67%; height: 67%; }
.radar-ring-3 { width: 34%; height: 34%; }
.radar-axis {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}
.radar-axis-v { top: 0; left: 50%; width: 1px; height: 100%; transform: translateX(-50%); }
.radar-axis-h { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.radar-deg {
  position: absolute;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--gray-dim);
}
.radar-deg-n { top: -20px; left: 50%; transform: translateX(-50%); }
.radar-deg-s { bottom: -20px; left: 50%; transform: translateX(-50%); }
.radar-deg-e { right: -34px; top: 50%; transform: translateY(-50%); }
.radar-deg-w { left: -34px; top: 50%; transform: translateY(-50%); }
.radar-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: drop-shadow(0 0 24px rgba(230, 30, 60, 0.35));
  animation: radar-logo-breathe 3s ease-in-out infinite;
}
@keyframes radar-logo-breathe {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
.radar-name {
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--white);
  text-shadow: 0 0 12px rgba(230, 30, 60, 0.4);
  animation: radar-logo-breathe 3s ease-in-out infinite;
}
.radar-name-x { color: var(--radar-accent); }
.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    var(--radar-accent-glow) 0deg,
    rgba(255, 75, 75, 0.22) 30deg,
    rgba(255, 75, 75, 0.06) 50deg,
    transparent 65deg,
    transparent 360deg);
  animation: radar-rotate 5s linear infinite;
  z-index: 2;
  -webkit-mask-image: radial-gradient(circle closest-side, transparent 0, transparent 22%, black 22%, black 100%);
  mask-image: radial-gradient(circle closest-side, transparent 0, transparent 22%, black 22%, black 100%);
}
.radar-needle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 28%;
  background: linear-gradient(to top, var(--radar-accent), rgba(255, 75, 75, 0));
  transform: translateX(-50%);
  transform-origin: bottom center;
  box-shadow: 0 0 8px 1px var(--radar-accent-glow);
}
@keyframes radar-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.radar-blip {
  position: absolute;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.radar-blip-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.radar-blip-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  border: 1px solid var(--radar-accent);
  opacity: 0;
}
.radar-blip.is-active .radar-blip-core { animation: radar-flash 1.2s ease-out; }
.radar-blip.is-active .radar-blip-pulse { animation: radar-pulse 1.2s ease-out; }
@keyframes radar-flash {
  0% { background: var(--radar-accent); box-shadow: 0 0 10px 3px var(--radar-accent-glow); }
  100% { background: rgba(255, 255, 255, 0.35); box-shadow: none; }
}
@keyframes radar-pulse {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 0; transform: scale(7); }
}
.radar-hud {
  position: absolute;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dim);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.radar-hud-tl { top: 6%; left: 2%; }
.radar-hud-tr { top: 6%; right: 2%; }
.radar-hud-bl { bottom: 6%; left: 2%; }
.radar-hud-br { bottom: 6%; right: 2%; }
.radar-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--radar-accent);
  margin-right: 6px;
  animation: radar-blink 1.8s ease-in-out infinite;
}
@keyframes radar-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
@media (prefers-reduced-motion: reduce) {
  .radar-sweep, .radar-live-dot { animation: none; }
}
@media (max-width: 720px) {
  .radar-hud { display: none; }
  .radar-deg { font-size: 0.6rem; }
}

/* Founder Profile (inline card, used beside About copy) */
.overview-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.founder-card {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}
.founder-frame {
  position: relative;
  width: 180px;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0 auto 24px;
}
.founder-frame::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(224,38,47,0.28), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--red);
  z-index: 2;
}
.corner-tl { top: -10px; left: -10px; border-right: none; border-bottom: none; }
.corner-tr { top: -10px; right: -10px; border-left: none; border-bottom: none; }
.corner-bl { bottom: -10px; left: -10px; border-right: none; border-top: none; }
.corner-br { bottom: -10px; right: -10px; border-left: none; border-top: none; }
.founder-name { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.founder-role {
  color: var(--red-light);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.founder-role::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
  margin: 14px auto 0;
}
.founder-quote {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
}
.founder-meta-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dim);
}
@media (max-width: 960px) {
  .overview-grid { grid-template-columns: 1fr; }
  .founder-card { margin-top: 40px; }
}

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.tag {
  display: inline-block;
  color: var(--red-light);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--gray); }
.section-cta { text-align: center; margin-top: 48px; }

/* Grid / cards */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--red); }
.card-icon { font-size: 1.8rem; margin-bottom: 18px; }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 0.92rem; }

/* Detail blocks */
.detail-blocks { display: flex; flex-direction: column; gap: 80px; }
.detail-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.detail-block.reverse .detail-copy { order: 2; }
.detail-block.reverse .detail-side { order: 1; }
.we-do {
  display: inline-block;
  color: var(--red-light);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.detail-copy h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }
.detail-copy > p { color: var(--gray); margin-bottom: 20px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 22px; }
.feature-list li {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding-left: 22px;
  position: relative;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red-light);
  font-weight: 800;
}
.detail-side { display: flex; flex-direction: column; gap: 16px; }
.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.benefit-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--red-light); margin-bottom: 6px; }
.benefit-card p { font-size: 0.85rem; color: var(--gray); }
.talk-card {
  background: linear-gradient(135deg, var(--red-dark), #4a0d12);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.talk-card p { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.talk-card span { display: block; font-size: 0.82rem; color: #ffd7d7; margin-bottom: 16px; }

/* About */
.about-copy { max-width: 760px; }
.about-copy p { color: var(--gray); margin-bottom: 16px; }
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 24px 0 32px;
}
.check-list li {
  font-size: 0.92rem;
  font-weight: 500;
  padding-left: 26px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  background: var(--red);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 2px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-box {
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
}
.stat-box strong { display: block; font-size: 2.6rem; font-weight: 800; color: var(--red-light); }
.stat-box span { font-size: 0.85rem; color: var(--gray); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}
.contact-form {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--gray); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--red); }
.form-field textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: 0.88rem; color: var(--red-light); min-height: 1.2em; }

.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.info-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--red-light); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.info-item p { font-size: 0.92rem; color: var(--gray); }
.soc-note { margin-top: 8px; font-size: 0.78rem; color: var(--red-light); }

/* Grid utility */
.grid-2 { grid-template-columns: 1fr 1fr; }

/* Numbered service row-list */
.service-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.service-row {
  display: grid;
  grid-template-columns: 60px 1.2fr 1.6fr 32px;
  align-items: center;
  gap: 28px;
  padding: 34px 4px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.service-row:hover { background: rgba(255, 255, 255, 0.02); padding-left: 14px; }
.row-num {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--gray-dim);
  letter-spacing: 0.02em;
}
.row-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.row-desc { color: var(--gray); font-size: 0.92rem; line-height: 1.6; }
.row-duration { color: var(--gray-dim); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.row-arrow {
  justify-self: end;
  font-size: 1.3rem;
  color: var(--gray-dim);
  transition: transform 0.2s ease, color 0.2s ease;
}
.service-row:hover .row-arrow { color: var(--red-light); transform: translate(4px, -4px); }

/* Numbered service cards */
.service-card-num { display: flex; flex-direction: column; }
.service-num-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}
.service-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--red-light);
  opacity: 0.85;
  font-variant-numeric: tabular-nums;
}
.service-arrow {
  font-size: 1.3rem;
  color: var(--gray-dim);
  transition: transform 0.2s ease, color 0.2s ease;
}
.service-card-num:hover .service-arrow { color: var(--red-light); transform: translate(3px, -3px); }
.service-card-num .service-badge { margin-top: auto; align-self: flex-start; padding-top: 14px; }
.service-card-num p { margin-bottom: 14px; }

/* Service page hero */
.service-hero { padding: 160px 0 56px; }
.breadcrumb { font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; }
.breadcrumb a { color: var(--red-light); font-weight: 600; }
.service-hero-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.service-hero-top .service-num { font-size: 2.6rem; }
.service-hero-top .service-arrow { font-size: 1.5rem; }
.service-hero-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.service-badge {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-hero h1 { font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: 18px; max-width: 780px; }
.service-hero .lede { font-size: 1.08rem; color: var(--gray); max-width: 640px; }
.overview-block p { color: var(--gray); margin-bottom: 16px; }

/* Phase list (methodology) */
.phase-list { display: flex; flex-direction: column; gap: 16px; }
.phase-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
  align-items: start;
}
.phase-num { font-size: 1.5rem; font-weight: 800; color: var(--red-light); }
.phase-days { display: block; font-size: 0.7rem; color: var(--gray-dim); margin-top: 4px; font-weight: 600; }
.phase-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.phase-item p { color: var(--gray); font-size: 0.92rem; margin-bottom: 12px; }

/* Tag pills (industries served, etc.) */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
}

/* Output chips (phase deliverables) */
.output-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(224, 38, 47, 0.1), transparent);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 16px 9px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}
.output-chip::before {
  content: "\2713";
  color: var(--red-light);
  font-weight: 800;
  font-size: 0.8rem;
}

/* Framework cards */
.framework-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.framework-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-light), var(--red-dark));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.framework-card:hover { transform: translateY(-6px); border-color: var(--red); }
.framework-card:hover::before { opacity: 1; }
.framework-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(224, 38, 47, 0.16), rgba(224, 38, 47, 0.04));
  border: 1px solid var(--border);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.framework-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.framework-card p { color: var(--gray); font-size: 0.9rem; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--red-light); font-size: 1.3rem; font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { padding-bottom: 18px; color: var(--gray); font-size: 0.92rem; margin-top: -8px; }

/* Note strip with icon */
.note-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}
.note-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--red-light);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.note-strip p { color: var(--gray); font-size: 0.9rem; margin: 0; max-width: 560px; }

/* Service page bottom CTA strip */
.service-cta-strip {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.service-cta-strip h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.service-cta-strip p { color: var(--gray); font-size: 0.9rem; }

/* Placeholder text */
.placeholder-text { color: var(--gray-dim); font-style: italic; }

/* Approach */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.approach-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
}
.step-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red-light);
  margin-bottom: 12px;
}
.approach-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.approach-step p { font-size: 0.85rem; color: var(--gray); }

/* Case studies */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-study-card {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.case-study-card:hover {
  transform: translateY(-4px);
}
.case-study-card.sev-critical { border-top-color: var(--red-light); }
.case-study-card.sev-high { border-top-color: var(--amber); }
.cs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cs-index {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red-light);
  letter-spacing: 0.06em;
}
.cs-severity {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}
.cs-severity-critical {
  color: var(--red-light);
  background: rgba(255, 75, 75, 0.12);
  border: 1px solid rgba(255, 75, 75, 0.35);
}
.cs-severity-high {
  color: var(--amber);
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
}
.cs-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.case-study-card h4 { font-size: 1.05rem; font-weight: 700; margin: 4px 0 10px; }
.case-study-card > p { font-size: 0.88rem; margin-bottom: 18px; }
.cs-metrics { display: flex; gap: 10px; flex-wrap: wrap; }
.cs-metrics span {
  font-size: 0.75rem;
  color: var(--gray);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.industry-tile:hover { border-color: var(--red); transform: translateY(-4px); }
.logo-wall {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.logo-tile {
  width: 140px;
  height: 64px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

/* Testimonial */
.testimonial { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial blockquote { font-size: 1.35rem; font-weight: 500; line-height: 1.5; margin-bottom: 20px; }
.testimonial cite { font-style: normal; font-size: 0.88rem; }

/* Resources */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resource-card {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.resource-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.resource-card p { font-size: 0.82rem; }
.resource-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
  font-weight: 700;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark), #2a0a0d);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.cta-banner p { color: #ffd7d7; max-width: 520px; margin: 0 auto 32px; }
.cta-actions { justify-content: center; margin-bottom: 0; }
.cta-banner .btn-outline { border-color: #ffffff40; }
.cta-banner .btn-outline:hover { border-color: #fff; color: #fff; }

/* Footer */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { height: 40px; margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: 0.88rem; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px; color: var(--white); }
.footer-col a, .footer-col p { display: block; color: var(--gray); font-size: 0.88rem; margin-bottom: 12px; }
.footer-col a:hover { color: var(--red-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  text-align: center;
  color: var(--gray-dim);
  font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 40px; }
  .badge { position: static; margin: 8px; display: inline-block; animation: none; }
  .hero-visual { flex-wrap: wrap; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .detail-block, .detail-block.reverse { grid-template-columns: 1fr; }
  .detail-block.reverse .detail-copy,
  .detail-block.reverse .detail-side { order: unset; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .approach-steps { grid-template-columns: repeat(3, 1fr); }
  .case-study-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .phase-item { grid-template-columns: 1fr; gap: 8px; }
  .service-row { grid-template-columns: 40px 1fr 32px; row-gap: 10px; }
  .row-desc { grid-column: 2 / 4; }
}
@media (max-width: 720px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-alt);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr 1fr; }
  .case-study-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 44px 24px; }
  .service-hero { padding: 140px 0 40px; }
  .service-cta-strip { flex-direction: column; align-items: flex-start; }
  .note-strip { flex-direction: column; text-align: center; }
}
