/* ============================================================
   Media For Prospects — Shared Stylesheet
   All pages (except index.html) link to this file.
   index.html uses inline styles for the Yeldra-clone hero.
   ============================================================ */

/* ── 1. CSS Variables ── */
:root {
  --black:        #07001f;
  --purple:       #6e45ff;
  --green:        #3dfd98;
  --purple-300:   #a990ff;
  --purple-200:   #c6b5ff;
  --purple-100:   #e3dbff;
  --green-300:    #8dfdc3;
  --green-200:    #b3fed7;
  --green-100:    #d9feeb;
  --neutral:      #9895a1;
  --surface:      rgba(255,255,255,.04);
  --border:       rgba(255,255,255,.08);
  --border-light: rgba(255,255,255,.05);
}

/* ── 2. Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--black);
  color: #fff;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: .3px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; padding: 0; margin: 0; }
a   { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.02em; }
p   { margin: 0; }

/* ── 3. Grain texture ── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 200;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
}

/* ── 4. Navigation ── */
nav[role="navigation"] {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .875rem 5%;
  background: rgba(7,0,31,.8);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav-logo { height: 44px; flex-shrink: 0; }

.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 2rem; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,.58);
  font-size: .875rem; font-weight: 500;
  transition: color .18s;
}
.nav-links a:hover     { color: rgba(255,255,255,.9); }
.nav-links a.active    { color: #fff; font-weight: 600; }
.nav-links a:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; border-radius: 3px; }

.nav-actions { display: flex; gap: .75rem; align-items: center; }

/* ── 5. Button System ── */
.btn {
  display: inline-flex; align-items: center; gap: .375rem;
  font-family: inherit; font-weight: 600; cursor: pointer;
  border: none; white-space: nowrap; transition: opacity .18s, transform .14s;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

/* Small — for nav */
.btn-ghost {
  padding: .5rem 1.125rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px; color: rgba(255,255,255,.8);
  font-size: .875rem; background: transparent;
  transition: background .18s, border-color .18s, color .18s;
}
.btn-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.28); color: #fff; }
.btn-ghost:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }

.btn-purple {
  padding: .5rem 1.25rem;
  background: var(--purple); border-radius: 8px; color: #fff; font-size: .875rem;
  box-shadow: 0 4px 16px rgba(110,69,255,.35);
}
.btn-purple:hover { opacity: .88; transform: translateY(-1px); }
.btn-purple:focus-visible { outline: 2px solid var(--purple-200); outline-offset: 2px; }

/* Large — for CTAs */
.btn-lg { padding: .9375rem 2.25rem; border-radius: 12px; font-size: 1rem; }

.btn-purple-lg {
  background: var(--purple); color: #fff;
  box-shadow: 0 8px 32px rgba(110,69,255,.4), 0 2px 8px rgba(110,69,255,.18);
}
.btn-purple-lg:hover { opacity: .87; transform: translateY(-2px); }
.btn-purple-lg:focus-visible { outline: 2px solid var(--purple-200); outline-offset: 2px; }

.btn-outline-lg {
  border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.82); background: transparent;
}
.btn-outline-lg:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.26); color: #fff; }
.btn-outline-lg:focus-visible { outline: 2px solid rgba(255,255,255,.4); outline-offset: 2px; }

.btn-green {
  padding: .9375rem 2.25rem; border-radius: 12px; font-size: 1rem;
  background: rgba(61,253,152,.18); border: 1px solid rgba(61,253,152,.35);
  color: var(--green-300);
}
.btn-green:hover { background: rgba(61,253,152,.25); }

/* ── 6. Section Utilities ── */
.section    { padding: 6rem 5%; }
.section-sm { padding: 4rem 5%; }
.section-lg { padding: 8rem 5%; }

.divider-top    { border-top: 1px solid var(--border-light); }
.divider-bottom { border-bottom: 1px solid var(--border-light); }

.text-center  { text-align: center; }
.max-prose    { max-width: 680px; }
.mx-auto      { margin-left: auto; margin-right: auto; }

/* ── 7. Typography ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--green); margin-bottom: .875rem;
}
.eyebrow::before {
  content: ''; display: block; width: 18px; height: 2px;
  background: var(--green); border-radius: 1px; flex-shrink: 0;
}
.eyebrow.center { justify-content: center; }
.eyebrow.no-line::before { display: none; }

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -.032em; line-height: 1.13;
  margin-bottom: 1.125rem;
}
.section-sub {
  font-size: .9375rem; color: rgba(255,255,255,.52);
  line-height: 1.75; margin-bottom: 0;
}

/* ── 8. Page Hero (interior pages) ── */
.page-hero {
  padding: 10rem 5% 5rem;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero-blob {
  position: absolute; width: 600px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(110,69,255,.3) 0%, transparent 68%);
  top: 0; left: 50%; transform: translateX(-50%); filter: blur(80px);
  pointer-events: none;
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .3rem .875rem;
  border: 1px solid rgba(110,69,255,.35); border-radius: 999px;
  background: rgba(110,69,255,.1); color: var(--purple-200);
  font-size: .78rem; font-weight: 500; letter-spacing: .02em;
  margin-bottom: 1.5rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700; letter-spacing: -.035em; line-height: 1.1;
  margin-bottom: 1.25rem; position: relative;
}
.page-hero h1 em { font-style: normal; color: var(--purple-300); }
.page-hero p {
  font-size: 1.0625rem; color: rgba(255,255,255,.55);
  max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.72;
}
.page-hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 9. Cards ── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  transition: border-color .2s, background .2s;
}
.card:hover { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.055); }

.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── 10. Service Blocks ── */
.service-block {
  padding: 4rem 5%;
  border-top: 1px solid var(--border-light);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start;
}
.service-block.alt { grid-template-columns: 1.6fr 1fr; }
.service-block.alt .service-meta { order: 2; }
.service-block.alt .service-body { order: 1; }

.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(110,69,255,.18); border: 1px solid rgba(110,69,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.service-icon.green-icon {
  background: rgba(61,253,152,.12); border-color: rgba(61,253,152,.25);
}

.service-tag {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .25rem .875rem; border-radius: 999px; margin-bottom: .875rem;
}
.service-tag-purple { background: rgba(110,69,255,.2); color: var(--purple-200); }
.service-tag-green  { background: rgba(61,253,152,.13); color: var(--green-300); }

.service-meta h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: .75rem; }
.service-meta p  { color: rgba(255,255,255,.55); font-size: .9375rem; line-height: 1.72; }

.service-body { display: flex; flex-direction: column; gap: 1.5rem; }
.service-includes, .service-who {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
}
.service-includes h3, .service-who h3 {
  font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.feature-list { display: flex; flex-direction: column; gap: .625rem; }
.feature-list li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: rgba(255,255,255,.78);
}
.chk {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .65rem;
}
.chk-purple { background: rgba(110,69,255,.28); color: var(--purple-200); }
.chk-green  { background: rgba(61,253,152,.18); color: var(--green); }

/* ── 11. Process Steps ── */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 2rem; align-items: start;
  padding: 2.5rem 0; border-bottom: 1px solid var(--border-light);
  position: relative;
}
.step-row:last-child { border-bottom: none; }
.step-row:first-child { padding-top: 0; }

.step-num-lg {
  width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0;
  background: rgba(110,69,255,.16); border: 1px solid rgba(110,69,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; color: var(--purple-200);
  font-variant-numeric: tabular-nums;
}

.step-row h3  { font-size: 1.25rem; font-weight: 700; margin-bottom: .625rem; }
.step-row p   { color: rgba(255,255,255,.52); font-size: .9375rem; line-height: 1.72; }
.step-row ul  { margin-top: .875rem; display: flex; flex-direction: column; gap: .5rem; }
.step-row ul li { display: flex; gap: .625rem; font-size: .9rem; color: rgba(255,255,255,.65); }

/* ── 12. Timeline ── */
.timeline-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.timeline-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; position: relative; overflow: hidden;
}
.timeline-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--purple);
}
.timeline-item:nth-child(2)::before { background: var(--purple-300); }
.timeline-item:nth-child(3)::before { background: var(--green); }

.timeline-period {
  font-size: .75rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--purple-200); margin-bottom: 1rem;
}
.timeline-item:nth-child(3) .timeline-period { color: var(--green-300); }
.timeline-item h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: .75rem; }
.timeline-item ul { display: flex; flex-direction: column; gap: .5rem; }
.timeline-item li {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .875rem; color: rgba(255,255,255,.62);
}
.timeline-item li::before { content: '→'; color: var(--purple-200); flex-shrink: 0; font-size: .75rem; margin-top: .1rem; }
.timeline-item:nth-child(3) li::before { color: var(--green-300); }

/* ── 13. Before/After Cards ── */
.ba-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.ba-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.ba-card-header {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between;
}
.ba-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 999px;
}
.ba-label-before { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
.ba-label-after  { background: rgba(61,253,152,.15); color: var(--green-300); }
.ba-niche { font-size: .825rem; color: rgba(255,255,255,.45); }

.ba-image-slot {
  height: 220px; background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
}
.ba-image-slot .slot-icon { font-size: 2rem; opacity: .3; }
.ba-image-slot .slot-label { font-size: .8rem; color: rgba(255,255,255,.3); }

.ba-stats { display: flex; gap: 0; padding: 1.25rem 1.5rem; }
.ba-stat { flex: 1; text-align: center; }
.ba-stat + .ba-stat { border-left: 1px solid var(--border-light); }
.ba-stat-num  { font-size: 1.5rem; font-weight: 700; letter-spacing: -.03em; color: var(--green); }
.ba-stat-desc { font-size: .75rem; color: rgba(255,255,255,.42); margin-top: .2rem; }

/* ── 14. Video Slots ── */
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.video-slot { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.video-thumb {
  position: relative; height: 180px; background: rgba(255,255,255,.03);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border-light);
}
.play-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(110,69,255,.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
}
.video-embed { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
.video-caption { padding: 1rem 1.25rem; }
.video-caption-niche {
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--purple-200); margin-bottom: .375rem;
}
.video-caption h4 { font-size: .9375rem; font-weight: 600; margin-bottom: .25rem; }
.video-caption p  { font-size: .825rem; color: rgba(255,255,255,.45); }

/* ── 15. Testimonials ── */
.testi-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem;
}
.testi-stars { color: #fbbf24; font-size: .875rem; margin-bottom: .875rem; letter-spacing: .1em; }
.testi-quote { font-size: .9375rem; color: rgba(255,255,255,.72); line-height: 1.72; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: .875rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(110,69,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem; color: var(--purple-200);
}
.testi-name { font-weight: 600; font-size: .9rem; }
.testi-role { font-size: .8rem; color: rgba(255,255,255,.38); }

.testi-screenshot-slot {
  background: rgba(255,255,255,.03); border: 2px dashed rgba(255,255,255,.1);
  border-radius: 14px; padding: 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  min-height: 200px;
}
.testi-screenshot-slot .slot-icon  { font-size: 2rem; opacity: .25; }
.testi-screenshot-slot .slot-label { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ── 16. Pillars ── */
.pillar-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.pillar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; gap: .875rem;
  transition: border-color .2s;
}
.pillar:hover { border-color: rgba(110,69,255,.35); }
.pillar-num {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(110,69,255,.18); border: 1px solid rgba(110,69,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; color: var(--purple-200);
}
.pillar h3 { font-size: 1.125rem; font-weight: 700; }
.pillar p  { font-size: .9rem; color: rgba(255,255,255,.52); line-height: 1.7; }

/* ── 17. By The Numbers ── */
.numbers-band {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.number-cell {
  padding: 3rem 2rem; text-align: center;
  border-right: 1px solid var(--border-light);
}
.number-cell:last-child { border-right: none; }
.number-cell-num {
  font-size: 2.5rem; font-weight: 700; letter-spacing: -.04em;
  line-height: 1; margin-bottom: .5rem; color: var(--purple-200);
}
.number-cell-label { font-size: .875rem; color: rgba(255,255,255,.48); line-height: 1.4; }

/* ── 18. Social Links ── */
.social-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: .625rem;
  padding: .625rem 1.125rem; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface);
  color: rgba(255,255,255,.75); font-size: .875rem; font-weight: 500;
  transition: border-color .18s, color .18s, background .18s;
}
.social-link:hover { border-color: rgba(110,69,255,.45); color: var(--purple-200); background: rgba(110,69,255,.08); }
.social-link:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── 19. FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(110,69,255,.3); }
.faq-item[open] { border-color: rgba(110,69,255,.4); }

.faq-item summary {
  padding: 1.375rem 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.9);
  list-style: none; user-select: none;
  transition: color .18s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #fff; }

.faq-chevron {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: rgba(255,255,255,.5);
  transition: transform .22s, background .18s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); background: rgba(110,69,255,.25); color: var(--purple-200); }

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: .9375rem; color: rgba(255,255,255,.58); line-height: 1.78;
  border-top: 1px solid var(--border-light); padding-top: 1.25rem;
}
.faq-answer a { color: var(--purple-300); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer a:hover { color: var(--purple-200); }

/* ── 20. Pricing Teaser ── */
.pricing-teaser {
  background: rgba(110,69,255,.08); border: 1px solid rgba(110,69,255,.2);
  border-radius: 20px; padding: 3rem; text-align: center;
}
.pricing-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; letter-spacing: -.04em; color: var(--purple-200); margin-bottom: .5rem;
}
.pricing-desc { font-size: 1rem; color: rgba(255,255,255,.55); margin-bottom: 2rem; }

/* ── 21. CTA Block ── */
.cta-block {
  padding: 8rem 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-block-blob {
  position: absolute; width: 600px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(110,69,255,.28) 0%, transparent 68%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); filter: blur(90px);
  pointer-events: none;
}
.cta-block > .cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-block h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700;
  letter-spacing: -.03em; line-height: 1.12; margin-bottom: 1.25rem;
}
.cta-block p { color: rgba(255,255,255,.52); font-size: 1.0625rem; line-height: 1.72; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 22. Inline link style ── */
.link-inline { color: var(--purple-300); text-decoration: underline; text-underline-offset: 3px; }
.link-inline:hover { color: var(--purple-200); }

/* ── 23. Info boxes ── */
.info-box {
  background: rgba(61,253,152,.06); border: 1px solid rgba(61,253,152,.18);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  display: flex; align-items: flex-start; gap: .875rem;
}
.info-box-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.info-box p { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.65; }

/* ── 24. Two-column layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.two-col.center { align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

/* ── 25. Photo placeholder ── */
.photo-slot {
  width: 100%; aspect-ratio: 4/5; border-radius: 20px;
  background: rgba(255,255,255,.04); border: 2px dashed rgba(255,255,255,.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem;
  max-width: 380px;
}
.photo-slot .slot-icon  { font-size: 3rem; opacity: .2; }
.photo-slot .slot-label { font-size: .8rem; color: rgba(255,255,255,.28); }

/* ── 26. Footer ── */
footer {
  padding: 2.5rem 5% 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.25rem;
}
.footer-brand { display: flex; align-items: center; gap: 1.25rem; }
.footer-logo { height: 40px; opacity: .65; flex-shrink: 0; }
.footer-about {
  color: rgba(255,255,255,.45); font-size: .85rem; font-weight: 500;
  padding: .3rem .875rem; border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  transition: color .18s, border-color .18s;
}
.footer-about:hover { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.22); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer-links a { color: rgba(255,255,255,.38); font-size: .85rem; transition: color .18s; }
.footer-links a:hover { color: rgba(255,255,255,.7); }
.footer-social { display: flex; gap: .625rem; align-items: center; }
.footer-social-link {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.48);
  transition: border-color .18s, color .18s, background .18s;
}
.footer-social-link:hover { border-color: rgba(110,69,255,.4); color: var(--purple-200); background: rgba(110,69,255,.07); }
.footer-social-link:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }
.footer-social-link svg { width: 15px; height: 15px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.05);
}
.footer-copy { color: rgba(255,255,255,.25); font-size: .8rem; }

/* ── 27. Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(110,69,255,.45); border-radius: 3px; }

/* ── 28. Responsive ── */
@media (max-width: 1024px) {
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block.alt .service-meta { order: 1; }
  .service-block.alt .service-body { order: 2; }
  .numbers-band { grid-template-columns: repeat(2,1fr); }
  .number-cell:nth-child(2) { border-right: none; }
  .number-cell:nth-child(3) { border-top: 1px solid var(--border-light); }
  .number-cell:nth-child(4) { border-top: 1px solid var(--border-light); border-right: none; }
}

@media (max-width: 860px) {
  .two-col   { grid-template-columns: 1fr; gap: 2.5rem; }
  .three-col { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid-2 { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .video-grid { grid-template-columns: 1fr; }
  .numbers-band { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand { flex-direction: column; align-items: center; }
  .page-hero { padding: 9rem 5% 4rem; }
  .step-row { grid-template-columns: 60px 1fr; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .page-hero-ctas { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .social-links { flex-direction: column; }
  .numbers-band { grid-template-columns: 1fr; }
  .number-cell { border-right: none; border-top: 1px solid var(--border-light); }
  .number-cell:first-child { border-top: none; }
}
