/* ======================================================
   PROTOCALL PAGES CSS
   Service, industry, and content page styles
   ====================================================== */

/* ========== PAGE HERO (light, for inner pages) ========== */
.page-hero {
  padding: calc(var(--space-20) + var(--space-8)) 0 var(--space-12);
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border-subtle);
  position: relative;
}

.page-hero__content {
  max-width: 640px;
}

.page-hero__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: var(--weight-extrabold);
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
  color: var(--color-text-heading);
  margin-bottom: var(--space-4);
}

.page-hero__desc {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* ========== CAPABILITIES GRID ========== */
.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.capability-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all 200ms var(--ease-out);
}

.capability-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.capability-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary-subtle);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

.capability-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.capability-card__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ========== CONTACT FORM ========== */
.contact-section {
  background: var(--color-bg-body);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: start;
}

.contact__info h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.contact__info p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.contact__detail-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-subtle);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact__detail-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-tertiary);
  margin-bottom: 2px;
}

.contact__detail-value {
  font-size: 13px;
  color: var(--color-text-heading);
  font-weight: 500;
}

/* Form */
.form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form__group {
  margin-bottom: var(--space-4);
}

.form__label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-body);
  margin-bottom: 6px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 9px 14px;
  font-size: 13px;
  font-family: inherit;
  color: var(--color-text-heading);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all 100ms ease;
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-tertiary);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-dark);
  box-shadow: 0 0 0 1px var(--color-dark);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

/* ========== ABOUT PAGE ========== */
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about__text h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.about__text p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.about__visual {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--color-text-tertiary);
}

/* Values */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.value-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all 200ms var(--ease-out);
}

.value-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary-subtle);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}

.value-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.value-card__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ========== PROCESS STEPS (how-it-works detail) ========== */
.process__step-details {
  margin-top: var(--space-3);
  padding-left: var(--space-5);
  list-style: disc;
}

.process__step-details li {
  font-size: 12px;
  color: var(--color-text-tertiary);
  line-height: 1.6;
  margin-bottom: var(--space-1);
}

.process__step-details li::marker {
  color: var(--color-primary);
}

/* ========== CASE STUDY CARDS ========== */
.case-studies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.case-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all 200ms var(--ease-out);
}

.case-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
}

.case-card__tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}

.case-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
}

.case-card__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.case-card__metrics {
  display: flex;
  gap: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-subtle);
}

.case-card__metric-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1;
}

.case-card__metric-label {
  font-size: 11px;
  color: var(--color-text-tertiary);
  margin-top: 2px;
}

/* ========== RESPONSIVE — PAGES ========== */
@media (max-width: 1024px) {
  .capabilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-studies__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero__title {
    font-size: var(--text-3xl);
  }

  .capabilities__grid,
  .values__grid,
  .case-studies__grid {
    grid-template-columns: 1fr;
  }

  .contact__layout {
    grid-template-columns: 1fr;
  }

  .about__content {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   PREMIUM PAGE COMPONENTS — v2
   Dark page heroes, bento grids, workflows, FAQs,
   pricing, comparison tables, vertical illustrations
   ====================================================== */

/* ========== PAGE HERO — DARK CINEMATIC ========== */
.page-hero--dark {
  position: relative;
  background: var(--color-dark);
  color: #fff;
  padding: clamp(7.5rem, 12vw, 10.5rem) 0 clamp(5rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}

/* Bottom fade into next section + animated radial glow */
.page-hero--dark::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 18% 32%, rgba(255, 107, 44, 0.22), transparent 65%),
    radial-gradient(ellipse 50% 40% at 82% 78%, rgba(255, 138, 84, 0.14), transparent 70%),
    linear-gradient(180deg, transparent 65%, rgba(250, 250, 250, 0.04) 100%);
  pointer-events: none;
  z-index: 0;
  animation: page-hero-glow 18s ease-in-out infinite;
}
@keyframes page-hero-glow {
  0%, 100% { transform: translate(0,0); }
  50%      { transform: translate(20px,-15px); }
}

/* Refined grid with radial mask + grain */
.page-hero--dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 25%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 25%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Refined grid with radial mask */
.page-hero--dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 25%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 25%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.page-hero--dark .container { position: relative; z-index: 2; }

.page-hero--dark .page-hero__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}

/* Breadcrumb */
.page-hero--dark .page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-6);
  letter-spacing: 0.02em;
}
.page-hero--dark .page-hero__breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 200ms ease;
}
.page-hero--dark .page-hero__breadcrumb a:hover { color: var(--color-accent); }

.page-hero--dark .page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  background: linear-gradient(135deg, rgba(255,107,44,0.14), rgba(255,138,84,0.06));
  border: 1px solid rgba(255, 107, 44, 0.28);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(14px);
  letter-spacing: 0.02em;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 8px 24px -10px rgba(255, 107, 44, 0.4);
}

.page-hero--dark .page-hero__eyebrow-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF8854, #E85C1F);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  box-shadow: 0 0 10px rgba(255,107,44,0.5);
}

.page-hero--dark .page-hero__title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: var(--space-5);
  background: linear-gradient(180deg, #fff 0%, #F1F5F9 60%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero--dark .page-hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, #FFB088 0%, #FF6B2C 50%, #E85C1F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  padding-right: 0.12em;
}

.page-hero--dark .page-hero__desc {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 560px;
  margin-bottom: var(--space-8);
}

.page-hero--dark .page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

/* Secondary CTA on dark hero */
.page-hero--dark .page-hero__ctas .btn--secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}
.page-hero--dark .page-hero__ctas .btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.page-hero--dark .page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding-top: var(--space-6);
  position: relative;
}
.page-hero--dark .page-hero__meta::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 1px;
  background: linear-gradient(90deg, rgba(255,107,44,0.6), transparent);
}

.page-hero--dark .page-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-hero--dark .page-hero__meta-value {
  font-size: 1.625rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
  background: linear-gradient(180deg, #fff, #E2E8F0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero--dark .page-hero__meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.42);
  font-weight: 500;
}

/* Animated entrance */
.page-hero--dark .page-hero__breadcrumb,
.page-hero--dark .page-hero__eyebrow,
.page-hero--dark .page-hero__title,
.page-hero--dark .page-hero__desc,
.page-hero--dark .page-hero__ctas,
.page-hero--dark .page-hero__meta,
.page-hero--dark .page-hero__visual {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-hero--dark .page-hero__breadcrumb { animation-delay: 0ms; }
.page-hero--dark .page-hero__eyebrow    { animation-delay: 80ms; }
.page-hero--dark .page-hero__title      { animation-delay: 160ms; }
.page-hero--dark .page-hero__desc       { animation-delay: 260ms; }
.page-hero--dark .page-hero__ctas       { animation-delay: 360ms; }
.page-hero--dark .page-hero__meta       { animation-delay: 460ms; }
.page-hero--dark .page-hero__visual     { animation-delay: 360ms; animation-duration: 1100ms; }

@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll cue */
.page-hero--dark .page-hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  z-index: 2;
  pointer-events: none;
}
.page-hero--dark .page-hero__scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  position: relative;
  overflow: hidden;
}
.page-hero--dark .page-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  to { top: 100%; }
}

/* Hero visual frame — calm, contained */
.page-hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  justify-self: end;
  margin-left: auto;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 107, 44, 0.12), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow:
    0 40px 80px -24px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05);
  animation: visual-float 9s ease-in-out infinite;
}
@keyframes visual-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Soft top-edge highlight only — no rotating ring, no grid */
.page-hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%);
  pointer-events: none;
}

.page-hero__visual-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

/* Reduced-motion safeguard for hero animations */
@media (prefers-reduced-motion: reduce) {
  .page-hero--dark::after,
  .page-hero--dark .page-hero__breadcrumb,
  .page-hero--dark .page-hero__eyebrow,
  .page-hero--dark .page-hero__title,
  .page-hero--dark .page-hero__desc,
  .page-hero--dark .page-hero__ctas,
  .page-hero--dark .page-hero__meta,
  .page-hero--dark .page-hero__visual,
  .page-hero__visual,
  .page-hero__visual::after,
  .page-hero--dark .page-hero__scroll-line::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========== BENTO GRID ========== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: var(--space-4);
}

.bento-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  overflow: hidden;
  transition: all 250ms var(--ease-out);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.bento-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.bento-card--feature {
  grid-column: span 4;
  grid-row: span 2;
  background: linear-gradient(160deg, #18181B 0%, #09090B 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.06);
  min-height: 320px;
}

.bento-card--feature::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 107, 44,0.25), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 100%, rgba(255,107,44,0.10), transparent 60%);
  pointer-events: none;
}

.bento-card--feature .bento-card__title { color: #fff; }
.bento-card--feature .bento-card__desc { color: rgba(255,255,255,0.65); }
.bento-card--feature .bento-card__link { color: var(--color-accent); }

.bento-card--md  { grid-column: span 2; }
.bento-card--lg  { grid-column: span 3; }
.bento-card--xl  { grid-column: span 4; }
.bento-card--full { grid-column: 1 / -1; }
.bento-card--tall { grid-row: span 2; }

/* Make sure bento svg/text glyphs (emojis) are visible inside dark visuals */
.page-hero__visual-svg text:not([fill]) { fill: #fff; }

.bento-card__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.bento-card--feature .bento-card__eyebrow { color: var(--color-accent); }

.bento-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}

.bento-card--feature .bento-card__icon {
  background: rgba(255, 107, 44,0.15);
  color: #93C5FD;
}

.bento-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-heading);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}

.bento-card--feature .bento-card__title { font-size: 1.5rem; }

.bento-card__desc {
  font-size: 13.5px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.bento-card__link {
  margin-top: var(--space-4);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 150ms ease;
}

.bento-card:hover .bento-card__link { gap: 8px; }

.bento-card__visual {
  position: relative;
  margin-top: var(--space-4);
  flex: 1;
  min-height: 100px;
}

/* ========== WORKFLOW / TIMELINE ========== */
.workflow {
  position: relative;
  display: grid;
  gap: var(--space-4);
}

.workflow__line {
  position: absolute;
  left: 27px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-primary-subtle) 100%);
  border-radius: 2px;
}

.workflow__step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-5);
  padding: var(--space-5) 0;
}

.workflow__step-marker {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  font-family: var(--font-mono);
  box-shadow: 0 0 0 6px var(--color-bg-body);
}

.workflow__step-content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.workflow__step-content p {
  font-size: 13.5px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-3);
}

.workflow__step-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}

.workflow__step-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--color-bg-subtle);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border-subtle);
}

/* ========== FEATURE LIST (icon rows) ========== */
.feature-list { display: grid; gap: var(--space-2); }

.feature-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.feature-row:last-child { border-bottom: none; }

.feature-row__icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}

.feature-row__title {
  font-size: 14.5px; font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: 4px;
}

.feature-row__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ========== STAT STRIP — DARK ========== */
.stat-strip {
  background: var(--color-dark);
  color: #fff;
  padding: var(--space-12) 0;
  position: relative; overflow: hidden;
}

.stat-strip::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 50% 60% at 25% 50%, rgba(255, 107, 44,0.10), transparent 70%),
    radial-gradient(ellipse 50% 60% at 75% 50%, rgba(255,107,44,0.06), transparent 70%);
  pointer-events: none;
}

.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.stat-strip__item {
  text-align: left;
  padding: 0 var(--space-2);
}

.stat-strip__value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(160deg, #fff 0%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-strip__label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ========== TOOLS / INTEGRATIONS CHIPS ========== */
.tools-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-heading);
  transition: all 200ms ease;
}

.tool-chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.tool-chip__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ========== PRICING / PACKAGES ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: all 200ms var(--ease-out);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pricing-card--featured {
  background: linear-gradient(160deg, #18181B 0%, #09090B 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured:hover {
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--color-primary);
}

.pricing-card__badge {
  position: absolute;
  top: -10px; right: var(--space-6);
  padding: 4px 10px;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.pricing-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
}

.pricing-card--featured .pricing-card__name { color: var(--color-accent); }

.pricing-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-heading);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-1);
}

.pricing-card--featured .pricing-card__price { color: #fff; }

.pricing-card__price-suffix {
  font-size: 13px;
  color: var(--color-text-tertiary);
  font-weight: 400;
}

.pricing-card--featured .pricing-card__price-suffix { color: rgba(255,255,255,0.45); }

.pricing-card__desc {
  font-size: 13.5px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border-subtle);
}

.pricing-card--featured .pricing-card__desc {
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.08);
}

.pricing-card__features {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  flex-grow: 1;
}

.pricing-card__feature {
  font-size: 13px;
  color: var(--color-text-body);
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: flex-start;
}

.pricing-card--featured .pricing-card__feature { color: rgba(255,255,255,0.85); }

.pricing-card__check {
  color: var(--color-success);
  flex-shrink: 0;
}

.pricing-card--featured .pricing-card__check { color: #34D399; }

/* ========== FAQ — CSS-only details ========== */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-3);
}

.faq__item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color 200ms ease;
}

.faq__item[open] {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.faq__summary {
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-text-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  list-style: none;
  user-select: none;
}

.faq__summary::-webkit-details-marker { display: none; }

.faq__summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--color-text-tertiary);
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.faq__item[open] .faq__summary::after {
  content: '−';
  color: var(--color-primary);
}

.faq__body {
  padding: 0 var(--space-6) var(--space-5);
  font-size: 13.5px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ========== COMPARISON TABLE ========== */
.compare {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.compare__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
}

.compare__row + .compare__row {
  border-top: 1px solid var(--color-border-subtle);
}

.compare__cell {
  padding: var(--space-5) var(--space-6);
  font-size: 13.5px;
  color: var(--color-text-body);
}

.compare__cell--label {
  font-weight: 600;
  color: var(--color-text-heading);
}

.compare__cell--us {
  background: rgba(255, 107, 44, 0.04);
  font-weight: 600;
  color: var(--color-text-heading);
}

.compare__head .compare__cell {
  background: var(--color-bg-subtle);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
}

.compare__head .compare__cell--us {
  background: var(--color-primary);
  color: #fff;
}

.compare__check { color: var(--color-success); }
.compare__cross { color: var(--color-text-tertiary); opacity: 0.5; }

/* ========== QUOTE / TESTIMONIAL BLOCK ========== */
.quote-block {
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '“';
  position: absolute;
  top: -20px; left: 30px;
  font-family: Georgia, serif;
  font-size: 200px;
  color: rgba(255, 107, 44,0.15);
  line-height: 1;
  pointer-events: none;
}

.quote-block::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(255, 107, 44,0.20), transparent 70%),
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(255,107,44,0.10), transparent 70%);
  pointer-events: none;
}

.quote-block__content {
  position: relative; z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.quote-block__text {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.45;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-8);
}

.quote-block__author {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
}

.quote-block__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
}

.quote-block__name {
  font-size: 13px; font-weight: 600; color: #fff;
}

.quote-block__role {
  font-size: 12px; color: rgba(255,255,255,0.55);
}

/* ========== BREADCRUMBS ========== */
.crumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-5);
}

.crumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 150ms ease;
}

.crumbs a:hover { color: var(--color-primary); }

.crumbs__sep { opacity: 0.4; }

.page-hero--dark .crumbs { color: rgba(255,255,255,0.4); }
.page-hero--dark .crumbs a { color: rgba(255,255,255,0.7); }
.page-hero--dark .crumbs a:hover { color: #fff; }

/* ========== SPLIT FEATURE (image + text) ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #18181B 0%, #09090B 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-lg);
}

.split__visual::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(255, 107, 44,0.30), transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 70%, rgba(255,107,44,0.15), transparent 60%);
}

.split__visual::after {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.split__visual-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 2;
}

.split__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.split__title {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-text-heading);
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.split__desc {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* ========== METRICS CARD (used in case cards) ========== */
.metric-pop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-bg-subtle);
  border-radius: var(--radius-lg);
  margin-top: var(--space-6);
}

.metric-pop__item { text-align: center; }
.metric-pop__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.metric-pop__label {
  font-size: 11px;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========== SECTION HEADER LEFT ALIGNED ========== */
.section__header--left { text-align: left; margin-left: 0; max-width: 720px; }
.section__header--left .section__subtitle { margin-left: 0; }

/* ========== CASE-CARD V2 (richer) ========== */
.case-card--v2 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-card__cover {
  aspect-ratio: 20/13;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  background: linear-gradient(160deg, #1E293B, #0F172A);
  border: 1px solid var(--color-border-subtle);
  position: relative; overflow: hidden;
}

.case-card__cover-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* ========== RESPONSIVE — V2 ========== */
@media (max-width: 1024px) {
  .page-hero--dark .page-hero__layout { grid-template-columns: 1fr; }
  .page-hero__visual { margin: 0; max-width: 100%; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento-card--feature { grid-column: span 4; }
  .bento-card--xl, .bento-card--lg { grid-column: span 2; }
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
  .pricing-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: var(--space-8); }
}

@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card,
  .bento-card--md,
  .bento-card--lg,
  .bento-card--xl,
  .bento-card--feature { grid-column: span 1; }
  .compare__row { grid-template-columns: 1fr; }
  .compare__cell { padding: var(--space-3) var(--space-5); }
  .quote-block { padding: var(--space-8) var(--space-5); }
  .stat-strip__grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}