/* ===== SERVICES LAYOUT ===== */

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--warm-white);
}

.nav-link.active {
  color: var(--warm-white);
}

/* ===== HERO ===== */
.svc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(24px, 5vw, 80px) 100px;
  position: relative;
  overflow: hidden;
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.svc-hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(244, 162, 42, 0.07) 0%, transparent 70%);
}

.svc-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(6, 8, 15, 0.98));
  z-index: 1;
}

.svc-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.svc-hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.svc-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  margin-bottom: 40px;
  max-width: 22ch;
}

.svc-hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.svc-hero-body {
  max-width: 640px;
  margin-bottom: 56px;
}

.svc-hero-body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--faint);
  margin-bottom: 20px;
}

.svc-hero-body p:last-child { margin-bottom: 0; }

.svc-hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid var(--amber);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover {
  background: #e8941f;
  border-color: #e8941f;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid rgba(244, 162, 42, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ===== SHARED SECTION STYLES ===== */
.svc-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.svc-section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--warm-white);
  line-height: 1.2;
}

.svc-section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-top: 16px;
}

/* ===== OFFERINGS ===== */
.svc-offerings {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--deep-navy);
  position: relative;
}

.svc-offerings::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.svc-offerings-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.svc-offerings .svc-section-headline {
  margin-bottom: 16px;
}

.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(244, 162, 42, 0.06);
  border: 1px solid rgba(244, 162, 42, 0.06);
  margin-top: 64px;
}

.svc-card {
  padding: 44px 36px;
  background: var(--deep-navy);
  transition: background 0.2s ease;
}

.svc-card:hover {
  background: rgba(244, 162, 42, 0.03);
}

.svc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.svc-card-num {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--amber);
  opacity: 0.6;
}

.svc-card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(244, 162, 42, 0.1);
  border: 1px solid rgba(244, 162, 42, 0.2);
  padding: 4px 10px;
  border-radius: 2px;
}

.svc-card h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.svc-card > p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--faint);
  margin-bottom: 24px;
}

.svc-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-card-list li {
  font-size: 0.8125rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.svc-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--amber);
  opacity: 0.6;
}

/* ===== WHO ===== */
.svc-who {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--ink);
  border-top: 1px solid rgba(244, 162, 42, 0.08);
}

.svc-who-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.svc-who-left {
  position: sticky;
  top: 96px;
}

.svc-who-left .svc-section-headline {
  margin-bottom: 24px;
}

.svc-who-left > p {
  font-size: 0.9375rem;
  color: var(--faint);
  line-height: 1.7;
}

.svc-who-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-who-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(244, 162, 42, 0.1);
}

.svc-who-item:first-child {
  border-top: 1px solid rgba(244, 162, 42, 0.1);
}

.svc-who-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 162, 42, 0.25);
  border-radius: 8px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-who-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 6px;
}

.svc-who-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== BRAINOS ===== */
.svc-brainos {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--deep-navy);
  border-top: 1px solid rgba(244, 162, 42, 0.08);
}

.svc-brainos-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.svc-brainos-visual {
  position: sticky;
  top: 96px;
}

.svc-brainos-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(244, 162, 42, 0.12);
}

.svc-brainos-img-caption {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

.svc-brainos-text .svc-section-headline {
  margin-bottom: 20px;
}

.svc-brainos-text > p {
  font-size: 0.9375rem;
  color: var(--faint);
  line-height: 1.75;
  margin-bottom: 40px;
}

.svc-brainos-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(244, 162, 42, 0.15);
  margin-bottom: 32px;
}

.svc-brainos-feature {
  padding: 24px 0;
  border-bottom: 1px solid rgba(244, 162, 42, 0.1);
}

.svc-brainos-feature-name {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.svc-brainos-feature p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}

.svc-brainos-closing {
  font-size: 0.9375rem;
  color: var(--faint);
  line-height: 1.7;
  border-left: 2px solid var(--amber);
  padding-left: 20px;
}

/* ===== OUTCOMES ===== */
.svc-outcomes {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--ink);
  border-top: 1px solid rgba(244, 162, 42, 0.08);
}

.svc-outcomes-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.svc-outcomes .svc-section-headline {
  margin-bottom: 16px;
}

.svc-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(244, 162, 42, 0.06);
  border: 1px solid rgba(244, 162, 42, 0.06);
  margin-top: 64px;
}

.svc-outcome {
  padding: 40px 32px;
  background: var(--ink);
}

.svc-outcome-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
  border: 1px solid rgba(244, 162, 42, 0.25);
  border-radius: 10px;
}

.svc-outcome h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.svc-outcome p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== CONTACT ===== */
.svc-contact {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--deep-navy);
  border-top: 1px solid rgba(244, 162, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.svc-contact::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.svc-contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.svc-contact-content {
  max-width: 720px;
}

.svc-contact-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 8px;
}

.svc-contact-body {
  font-size: 0.9375rem;
  color: var(--faint);
  line-height: 1.75;
  margin-bottom: 48px;
}

.svc-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(244, 162, 42, 0.15);
}

.svc-contact-detail {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(244, 162, 42, 0.08);
}

.svc-contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 120px;
}

.svc-contact-detail-value {
  font-size: 0.9375rem;
  color: var(--warm-white);
}

/* ===== BRAINOS DIAGRAM (CSS-only visual) ===== */
.svc-brainos-diagram {
  background: var(--ink);
  border: 1px solid rgba(244, 162, 42, 0.12);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.svc-brainos-diagram::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(244, 162, 42, 0.05) 0%, transparent 70%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 0);
  background-size: auto, 32px 32px;
}

.brainos-ring {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brainos-ring-1 {
  width: 220px;
  height: 220px;
  border: 1px dashed rgba(244, 162, 42, 0.2);
}

.brainos-ring-1::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(244, 162, 42, 0.4) 60deg,
    transparent 120deg,
    rgba(244, 162, 42, 0.2) 180deg,
    transparent 240deg,
    rgba(244, 162, 42, 0.3) 300deg,
    transparent 360deg
  );
  animation: brainos-spin 20s linear infinite;
}

@keyframes brainos-spin {
  to { transform: rotate(360deg); }
}

.brainos-ring-2 {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(244, 162, 42, 0.08);
  animation: brainos-spin-reverse 35s linear infinite;
}

@keyframes brainos-spin-reverse {
  to { transform: rotate(-360deg); }
}

.brainos-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--deep-navy);
  border: 1px solid rgba(244, 162, 42, 0.3);
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--amber);
  box-shadow: 0 0 16px rgba(244, 162, 42, 0.1);
}

.brainos-node-center {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(244, 162, 42, 0.6);
  background: rgba(244, 162, 42, 0.08);
  gap: 2px;
}

.brainos-node-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--warm-white);
  text-transform: none;
}

.brainos-node-sub {
  font-size: 0.6rem;
  color: var(--amber);
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brainos-node-tl { width: 56px; height: 36px; top: 16px; left: 50%; transform: translateX(-50%); }
.brainos-node-tr { width: 56px; height: 36px; top: 50%; right: 16px; transform: translateY(-50%); }
.brainos-node-bl { width: 56px; height: 36px; bottom: 16px; left: 50%; transform: translateX(-50%); }
.brainos-node-br { width: 64px; height: 36px; bottom: 50%; right: 16px; transform: translateY(-50%); }

.brainos-outer-node {
  position: absolute;
  width: 56px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(244, 162, 42, 0.15);
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  backdrop-filter: blur(4px);
}

/* Position outer nodes around the ring */
.brainos-outer-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.brainos-outer-node:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.brainos-outer-node:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.brainos-outer-node:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }

/* ===== TRUST BAR ===== */
.svc-trust {
  padding: 40px clamp(24px, 5vw, 80px);
  background: var(--deep-navy);
  border-top: 1px solid rgba(244, 162, 42, 0.08);
  border-bottom: 1px solid rgba(244, 162, 42, 0.08);
}

.svc-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.svc-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.svc-trust-stat {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.svc-trust-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-align: center;
}

.svc-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(244, 162, 42, 0.15);
}

/* ===== DEEP DIVES ===== */
.svc-deep-dives {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--ink);
}

.svc-deep-dives-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.svc-deep-dive {
  padding: 64px 0;
  border-bottom: 1px solid rgba(244, 162, 42, 0.08);
}

.svc-deep-dive:first-child {
  padding-top: 0;
}

.svc-deep-dive:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.svc-deep-dive-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.svc-deep-dive-num {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--amber);
  opacity: 0.6;
}

.svc-deep-dive-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.svc-deep-dive-body {
  max-width: 720px;
  margin-bottom: 32px;
}

.svc-deep-dive-body p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--faint);
  margin-bottom: 16px;
}

.svc-deep-dive-body p:last-child {
  margin-bottom: 0;
}

.svc-deep-dive-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  max-width: 560px;
}

.svc-deep-dive-list li {
  font-size: 0.8125rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.svc-deep-dive-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--amber);
  opacity: 0.6;
}

.svc-deep-dive-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--amber);
  text-decoration: none;
  transition: opacity 0.2s;
}

.svc-deep-dive-link:hover {
  opacity: 0.7;
}

/* ===== METHODOLOGY ===== */
.svc-methodology {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--deep-navy);
  border-top: 1px solid rgba(244, 162, 42, 0.08);
}

.svc-methodology-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.svc-methodology-header {
  margin-bottom: 72px;
}

.svc-methodology-header .svc-section-headline {
  margin-top: 8px;
  margin-bottom: 16px;
}

.svc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(244, 162, 42, 0.15);
}

.svc-step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid rgba(244, 162, 42, 0.1);
  position: relative;
}

.svc-step:last-child {
  border-right: none;
  padding-right: 0;
}

.svc-step::before {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
}

.svc-step:last-child::before {
  display: none;
}

.svc-step-num {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--amber);
  margin-bottom: 20px;
  opacity: 0.6;
}

.svc-step-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.svc-step-content p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== CASE STUDIES ===== */
.svc-case-studies {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--ink);
  border-top: 1px solid rgba(244, 162, 42, 0.08);
}

.svc-case-studies-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.svc-case-studies .svc-section-headline {
  margin-top: 8px;
  margin-bottom: 16px;
}

.svc-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(244, 162, 42, 0.06);
  border: 1px solid rgba(244, 162, 42, 0.06);
  margin-top: 48px;
}

.svc-case {
  padding: 40px 32px;
  background: var(--ink);
}

.svc-case-client {
  margin-bottom: 20px;
}

.svc-case-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(244, 162, 42, 0.1);
  border: 1px solid rgba(244, 162, 42, 0.2);
  padding: 4px 10px;
  border-radius: 2px;
}

.svc-case-problem,
.svc-case-solution,
.svc-case-outcome {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--faint);
  margin-bottom: 16px;
}

.svc-case-problem:last-child,
.svc-case-solution:last-child,
.svc-case-outcome:last-child {
  margin-bottom: 0;
}

.svc-case-problem strong,
.svc-case-solution strong,
.svc-case-outcome strong {
  color: var(--warm-white);
  font-weight: 600;
}

.svc-case-outcome {
  padding-top: 16px;
  border-top: 1px solid rgba(244, 162, 42, 0.1);
  margin-top: 16px;
}

/* ===== FAQ ===== */
.svc-faq {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--deep-navy);
  border-top: 1px solid rgba(244, 162, 42, 0.08);
}

.svc-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.svc-faq .svc-section-headline {
  margin-top: 8px;
  margin-bottom: 48px;
}

.svc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-faq-item {
  border-bottom: 1px solid rgba(244, 162, 42, 0.1);
}

.svc-faq-item:first-of-type {
  border-top: 1px solid rgba(244, 162, 42, 0.1);
}

.svc-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--warm-white);
  cursor: pointer;
  list-style: none;
  gap: 24px;
  transition: color 0.2s;
}

.svc-faq-q::-webkit-details-marker {
  display: none;
}

.svc-faq-q::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--amber);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.svc-faq-item[open] .svc-faq-q::after {
  transform: rotate(45deg);
}

.svc-faq-q:hover {
  color: var(--amber);
}

.svc-faq-a {
  padding-bottom: 28px;
}

.svc-faq-a p {
  font-size: 0.9375rem;
  color: var(--faint);
  line-height: 1.7;
}

/* ===== DUAL CTA ===== */
.svc-cta-dual {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--ink);
  border-top: 1px solid rgba(244, 162, 42, 0.08);
}

.svc-cta-dual-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.svc-cta-dual-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.svc-cta-dual-body {
  font-size: 1rem;
  color: var(--faint);
  line-height: 1.7;
  margin-bottom: 40px;
}

.svc-cta-dual-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .svc-outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .svc-cards {
    grid-template-columns: 1fr;
  }

  .svc-who-inner,
  .svc-brainos-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .svc-who-left {
    position: static;
  }

  .svc-brainos-visual {
    position: static;
  }

  .svc-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .svc-trust-inner {
    flex-wrap: wrap;
    gap: 32px;
  }

  .svc-trust-divider {
    display: none;
  }

  .svc-steps {
    grid-template-columns: 1fr;
  }

  .svc-step {
    border-right: none;
    border-top: 1px solid rgba(244, 162, 42, 0.1);
    padding: 40px 0;
  }

  .svc-step:first-child {
    border-top: none;
    padding-top: 0;
  }

  .svc-step::before {
    display: none;
  }

  .svc-cases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .svc-hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .svc-deep-dive {
    padding: 40px 0;
  }

  .svc-methodology-header {
    margin-bottom: 48px;
  }

  .svc-cta-dual-actions {
    flex-direction: column;
  }

  .svc-cta-dual-actions .btn-primary,
  .svc-cta-dual-actions .btn-ghost {
    width: 100%;
  }
}