/* ─────────────────────────────────────────────
   Apex Digital Partners — style.css
   ───────────────────────────────────────────── */

/* ── Custom Properties ───────────────────────── */
:root {
  --color-primary:     #9E0031;
  --color-secondary:   #070707;
  --color-tertiary:    #0D0E10;
  --color-text:        #F1F1F1;
  --color-text-muted:  #F0EEEE;
  --color-bg:          #070707;
  --color-surface:     #0D0E10;
  --color-btn:         #9E0031;
  --color-btn-hover:   #7E0027;
  --color-border:      #1E1E1E;
  --color-accent:      #9E0031;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-width:    1200px;
  --section-pad:  80px;
  --section-pad-mobile: 48px;
  --radius:       8px;
  --nav-height:   72px;
  --transition:   all 0.2s ease;
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

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

/* ── Typography ──────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-text); line-height: 1.15; }
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 600; }
p  { color: var(--color-text-muted); line-height: 1.75; }

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-btn);
  color: #fff;
  border: 2px solid var(--color-btn);
}
.btn-primary:hover {
  background: var(--color-btn-hover);
  border-color: var(--color-btn-hover);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}
.btn-cta-white {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid #fff;
  font-weight: 600;
}
.btn-cta-white:hover {
  background: var(--color-text-muted);
  border-color: var(--color-text-muted);
  color: var(--color-primary);
  text-decoration: none;
}
.btn-full { width: 100%; }

/* ── Navigation ──────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--color-tertiary);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--color-primary); text-decoration: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
}
.nav-links a:hover { color: var(--color-primary); }
.nav-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.9375rem;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.72);
  z-index: 0;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(158,0,49,0.18) 0%, transparent 70%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
}
.hero-h1 { color: var(--color-text); max-width: 16ch; }
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 640px;
  font-weight: 400;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  pointer-events: none;
  z-index: 1;
}

/* ── Trust Bar ───────────────────────────────── */
.trust-bar {
  background: var(--color-surface);
  padding: 32px 0;
}
.trust-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.trust-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
}
.trust-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}
.trust-sub {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ── Services Grid ───────────────────────────── */
.services-section {
  background: var(--color-bg);
  padding: var(--section-pad) 0;
}
.services-section.bg-alt { background: var(--color-surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  border-top: 3px solid var(--color-primary);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  overflow: hidden;
}
.service-card:hover {
  box-shadow: 0 4px 24px rgba(158,0,49,0.15);
  transform: translateY(-2px);
}

/* Service card graphic (SVG illustration replaces photo) */
.service-card-img {
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -32px -32px 24px -32px;
  background: #070707;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(158,0,49,0.1) 0%, transparent 70%);
}
.service-card-img svg {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img svg { transform: scale(1.06); }

/* Service card body wrap */
.service-card-body-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

/* Service icon (SVG) */
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card-title {
  font-size: 1.125rem;
  color: var(--color-text);
}
.service-card-body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}
.service-card-link {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  align-self: flex-start;
}
.service-card-link:hover { text-decoration: underline; }

/* ── Why Us ──────────────────────────────────── */
.why-us-section {
  background: var(--color-surface);
  padding: var(--section-pad) 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
}
.why-point { display: flex; flex-direction: column; gap: 8px; }
.why-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.4;
  line-height: 1;
}
.why-title { font-size: 1.125rem; color: var(--color-text); }
.why-body  { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.7; }

/* ── Process ─────────────────────────────────── */
.process-section {
  background: var(--color-bg);
  padding: var(--section-pad) 0;
}
.process-section.bg-alt { background: var(--color-surface); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
  pointer-events: none;
}
.process-step { display: flex; flex-direction: column; gap: 8px; padding-top: 8px; }
.process-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
}
.process-title { font-size: 1rem; color: var(--color-text); font-weight: 600; }
.process-body  { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.7; }

/* ── CTA Section ─────────────────────────────── */
.cta-section {
  background: var(--color-primary);
  padding: var(--section-pad) 0;
}
.cta-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta-heading { color: #fff; }
.cta-body { color: rgba(255,255,255,0.85); max-width: 600px; }

/* ── About Snippet ───────────────────────────── */
.about-snippet { padding: var(--section-pad) 0; }
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p { font-size: 0.9375rem; line-height: 1.75; color: var(--color-text-muted); }
.about-text .section-heading { text-align: left; margin-bottom: 24px; }

/* About image */
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.about-stat-label { font-size: 0.875rem; color: var(--color-text-muted); }

/* ── Gallery Section ─────────────────────────── */
.gallery-section {
  background: var(--color-surface);
  padding: var(--section-pad) 0;
}
.section-sub {
  text-align: center;
  color: var(--color-text-muted);
  margin-top: -32px;
  margin-bottom: 40px;
  font-size: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.03); opacity: 0.9; }

/* ── Origin / Intro Sections ─────────────────── */
.origin-section, .intro-section, .overview-section {
  padding: var(--section-pad) 0;
}
.origin-section { background: var(--color-surface); }
.origin-body, .intro-body, .overview-body {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ── Team ────────────────────────────────────── */
.team-section { padding: var(--section-pad) 0; background: var(--color-bg); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.team-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  border-top: 3px solid var(--color-primary);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-name { font-size: 1.125rem; color: var(--color-text); }
.team-role { font-size: 0.875rem; color: var(--color-primary); font-weight: 500; }
.team-bio  { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.7; }

/* ── FAQ Accordion ───────────────────────────── */
.faq-section { background: var(--color-bg); padding: var(--section-pad) 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  font-weight: 300;
  line-height: 1;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 20px 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-answer[hidden] { display: none; }

/* ── Service Area ────────────────────────────── */
.area-section { background: var(--color-surface); padding: 48px 0; text-align: center; }
.area-text { color: var(--color-text-muted); font-size: 1rem; }

/* ── Contact Page ────────────────────────────── */
.contact-section { padding: var(--section-pad) 0; background: var(--color-bg); }
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}
.contact-form-col .section-heading { text-align: left; margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.875rem; color: var(--color-text-muted); font-weight: 500; }
.form-group input, .form-group textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.field-error { font-size: 0.8125rem; color: #ef4444; min-height: 1em; }
.form-success { color: #22c55e; font-size: 0.9375rem; text-align: center; padding-top: 8px; }
.contact-details-col .section-heading { text-align: left; margin-bottom: 24px; }
.contact-details-list { display: flex; flex-direction: column; gap: 16px; }
.contact-details-list li { font-size: 0.9375rem; color: var(--color-text-muted); }
.contact-details-list a { color: var(--color-primary); }
.contact-details-list strong { color: var(--color-text); margin-right: 4px; }
.footer-hours { font-size: 0.8125rem; color: var(--color-text-muted); opacity: 0.7; }

/* ── Blog ────────────────────────────────────── */
.blog-section { padding: var(--section-pad) 0; background: var(--color-bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  border-top: 3px solid var(--color-primary);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  overflow: hidden;
}
.blog-card:hover { box-shadow: 0 4px 24px rgba(158,0,49,0.15); transform: translateY(-2px); }

/* Blog card image */
.blog-card-img {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -32px -32px 20px -32px;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-date { font-size: 0.8125rem; color: var(--color-primary); font-weight: 500; }
.blog-card-title { font-size: 1.0625rem; color: var(--color-text); }
.blog-card-title a { color: var(--color-text); }
.blog-card-title a:hover { color: var(--color-primary); text-decoration: none; }
.blog-card-excerpt { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.7; flex: 1; }

/* ── Legal Pages ─────────────────────────────── */
.legal-section { padding: var(--section-pad) 0; background: var(--color-bg); }
.legal-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.legal-content h1 { font-size: 2rem; margin-bottom: 4px; }
.legal-content h2 { font-size: 1.125rem; color: var(--color-text); margin-top: 8px; }
.legal-content p { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.75; }
.legal-updated { font-size: 0.8125rem; color: var(--color-text-muted); opacity: 0.6; }

/* ── Thank You ───────────────────────────────── */
.thankyou-section { padding: var(--section-pad) 0; background: var(--color-bg); }
.thankyou-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 24px;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 404 ─────────────────────────────────────── */
.error-section { padding: var(--section-pad) 0; background: var(--color-bg); }
.error-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 24px;
}
.error-code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.4;
  line-height: 1;
}
.error-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* ── Footer ──────────────────────────────────── */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.footer-logo:hover { color: var(--color-primary); text-decoration: none; }
.footer-tagline {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 12px;
}
.footer-desc { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.7; }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer-col ul a:hover { color: var(--color-primary); }
.footer-col ul li { font-size: 0.875rem; color: var(--color-text-muted); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(240,238,238,0.6);
}
.footer-bottom a { color: rgba(240,238,238,0.6); }
.footer-bottom a:hover { color: var(--color-primary); }

/* ── Utility ─────────────────────────────────── */
.bg-alt { background: var(--color-surface) !important; }

/* ── Scroll Animations ───────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: var(--section-pad-mobile); }

  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--color-tertiary); padding: 24px; border-bottom: 1px solid var(--color-border); gap: 16px; }
  .nav-links.is-open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr; }
  .about-cols { grid-template-columns: 1fr; gap: 40px; }
  .about-text .section-heading { text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .trust-inner { flex-direction: column; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .error-code { font-size: 5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card-img, .service-card-img { height: 160px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Hero redesign ───────────────────────────────── */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(158,0,49,0.12) 0%, #070707 70%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 400px at 20% 60%, rgba(158,0,49,0.07) 0%, transparent 60%),
    radial-gradient(circle 300px at 80% 40%, rgba(158,0,49,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 100px 24px 80px;
  position: relative;
  z-index: 1;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-graphic--left { justify-content: flex-end; }
.hero-graphic--right { justify-content: flex-start; }
.hero-svg { max-width: 100%; height: auto; }

/* Floating animation on hero SVGs */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes float-alt {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.hero-graphic--left  .hero-svg { animation: float     5s ease-in-out infinite; }
.hero-graphic--right .hero-svg { animation: float-alt 6s ease-in-out 1s infinite; }

/* Pulse ring animation */
@keyframes pulse-out {
  0%   { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}
.pulse-ring { transform-origin: 185px 65px; animation: pulse-out 2s ease-out infinite; }
.pulse-ring:nth-child(2) { animation-delay: 0.6s; }

/* Hero stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(241,241,241,0.15);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #9E0031, transparent);
  margin: 0 auto;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Load animations (anim-in) ───────────────────── */
.anim-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
body.loaded .anim-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Scroll reveal (AOS-style) ───────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="up"]    { transform: translateY(32px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

/* ── Process section — alternating layout ────────── */
.process-steps-alt { display: flex; flex-direction: column; gap: 0; }
.process-step-alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}
.process-step-alt:last-child { border-bottom: none; }
.process-step-alt.reverse .step-text { order: 2; }
.process-step-alt.reverse .step-num-col { order: 1; }
.step-num-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-num-big {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  user-select: none;
}
.step-text { display: flex; flex-direction: column; gap: 12px; }
.step-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  font-family: var(--font-heading);
}
.step-text p { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.75; }

/* ── Service card body fix ───────────────────────── */
.service-card-body:empty::before {
  content: "Premium digital service tailored to your business growth objectives.";
  color: var(--color-text-muted);
  font-style: italic;
}

/* ── Hero responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 2fr 1fr; gap: 24px; }
  .hero-graphic .hero-svg { width: 180px; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; padding: 80px 24px 60px; }
  .hero-graphic { display: none; }
  .process-step-alt { grid-template-columns: 1fr; gap: 16px; }
  .process-step-alt.reverse .step-text { order: 1; }
  .process-step-alt.reverse .step-num-col { order: 2; display: none; }
  .step-num-big { font-size: 4rem; }
}

/* ── Hero proportions ── */
.hero-h1 {
  font-size: clamp(2.4rem, 4.2vw, 4rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.hero-inner {
  padding: 48px 24px 36px !important;
  gap: 24px !important;
}
.hero-subtitle {
  font-size: 1.0rem !important;
  max-width: 520px;
}
.hero-graphic .hero-svg {
  width: 200px;
  height: auto;
}
.hero-stats {
  gap: 16px !important;
}
.hero-stat-num {
  font-size: 1.2rem !important;
}

/* ── Section background alternation ── */
.services-section    { background: #070707; }
.why-us-section      { background: #0D0E10; }
.process-section     { background: #070707; }
.about-snippet       { background: #0D0E10; }
.gallery-section     { background: #070707; }
.faq-section         { background: #0D0E10; }

/* ── Service card border stronger ── */
.service-card {
  border: 1px solid rgba(158,0,49,0.3) !important;
  border-top: 3px solid #9E0031 !important;
}

/* ── Why-us split layout with illustration ── */
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.why-us-illustration {
  position: sticky;
  top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-illustration { display: none; }
}

/* ── Graphic divider sections ── */
.graphic-divider {
  padding: 64px 0;
  overflow: hidden;
  position: relative;
}
.graphic-divider-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.graphic-divider-text {
  flex: 1;
}
.graphic-divider-text .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9E0031;
  font-weight: 600;
  margin-bottom: 12px;
}
.graphic-divider-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #F1F1F1;
  margin-bottom: 16px;
}
.graphic-divider-text p {
  font-size: 1rem;
  color: #F0EEEE;
  line-height: 1.7;
  max-width: 480px;
}
.graphic-divider-svg {
  flex-shrink: 0;
  width: 340px;
}
.graphic-divider--reverse .graphic-divider-text { order: 2; }
.graphic-divider--reverse .graphic-divider-svg  { order: 1; }
@media (max-width: 768px) {
  .graphic-divider-svg { display: none; }
}

/* ── Floating label chips ── */
.svg-chip {
  animation: float-chip 4s ease-in-out infinite;
}
.svg-chip-alt {
  animation: float-chip 5s ease-in-out 1.2s infinite;
}
@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Section label (eyebrow above heading) ── */
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9E0031;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  display: block;
}

/* ── Process step with illustration ── */
.process-with-graphic {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .process-with-graphic { grid-template-columns: 1fr; }
  .process-illustration { display: none; }
}

/* ── Stats ribbon ── */
.stats-ribbon {
  background: #9E0031;
  padding: 48px 0;
}
.stats-ribbon-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat-item { text-align: center; }
.stat-item-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-item-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .stat-divider { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   HOME PAGE REDESIGN — Nymera-inspired dark-luxury aesthetic
   Colour palette preserved: #9E0031 / #070707 / #0D0E10 / #F1F1F1
   ════════════════════════════════════════════════════════════════ */

/* ── Glassmorphic nav (global, all pages benefit) ── */
.site-nav {
  background: rgba(7,7,7,0.82) !important;
  backdrop-filter: blur(22px) !important;
  -webkit-backdrop-filter: blur(22px) !important;
  border-bottom: 1px solid rgba(158,0,49,0.14) !important;
}

/* ── Gradient text utility ── */
.text-gradient {
  background: linear-gradient(120deg, #F1F1F1 0%, #F1F1F1 30%, #9E0031 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* ── Pill button variants ── */
.btn-pill {
  border-radius: 100px !important;
  padding: 14px 36px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}
.btn-ghost-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 13px 32px;
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(241,241,241,0.18);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-ghost-pill:hover {
  border-color: rgba(158,0,49,0.55);
  color: #9E0031;
  text-decoration: none;
}

/* ── Hero v2 ─ centered, full-viewport ── */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #070707;
  position: relative;
  overflow: hidden;
}
.hero-v2-ambience {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-v2-ambience::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 880px;
  height: 880px;
  background: radial-gradient(circle at center, rgba(158,0,49,0.16) 0%, rgba(158,0,49,0.04) 45%, transparent 70%);
  border-radius: 50%;
}
.hero-v2-ambience::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #070707);
  pointer-events: none;
}
.hero-v2-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 24px 24px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  gap: 0;
}
.hero-v2-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-v2-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-primary);
}
.hero-v2-eyebrow::before,
.hero-v2-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(158,0,49,0.5);
  flex-shrink: 0;
}
.hero-v2 .hero-h1 {
  font-size: clamp(3rem, 6.5vw, 5.5rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.035em;
  max-width: 18ch;
}
.hero-v2 .hero-subtitle {
  font-size: 1.05rem;
  max-width: 560px;
  color: rgba(240,238,238,0.7);
  line-height: 1.75;
}
.hero-v2 .hero-cta-row {
  gap: 12px;
  margin-top: 4px;
}

/* ── Hero orb ── */
.hero-orb-wrap {
  position: relative;
  width: 460px;
  height: 460px;
  flex-shrink: 0;
  margin-top: 24px;
}
.hero-orb-glow {
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(158,0,49,0.32) 0%, rgba(158,0,49,0.07) 50%, transparent 72%);
  filter: blur(36px);
  animation: orb-breathe 5s ease-in-out infinite;
}
@keyframes orb-breathe {
  0%,100% { transform: scale(1); opacity: 0.75; }
  50%      { transform: scale(1.12); opacity: 1; }
}
.hero-orb-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  animation: orb-float 9s ease-in-out infinite;
}
@keyframes orb-float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-16px); }
}
.orb-spin-ring {
  transform-origin: 250px 250px;
  animation: orb-spin 32s linear infinite;
}
.orb-spin-ring-rev {
  transform-origin: 250px 250px;
  animation: orb-spin 50s linear infinite reverse;
}
@keyframes orb-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.orb-core-pulse {
  transform-box: fill-box;
  transform-origin: center;
  fill: none;
  stroke: #9E0031;
  stroke-width: 1.5;
  animation: orb-pulse 2.8s ease-out infinite;
}
.orb-core-pulse-2 { animation-delay: 1.4s; }
@keyframes orb-pulse {
  0%   { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(3);  opacity: 0; }
}
.orb-chip-1 {
  animation: chip-float-1 5s ease-in-out infinite;
}
.orb-chip-2 {
  animation: chip-float-2 6.5s ease-in-out 1.2s infinite;
}
@keyframes chip-float-1 {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-9px); }
}
@keyframes chip-float-2 {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-11px); }
}

/* ── Hero stats strip ── */
.hero-v2-stats {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(158,0,49,0.12);
  width: 100%;
}
.hero-v2-stats-inner {
  display: flex;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-v2-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 28px 16px;
  border-right: 1px solid rgba(158,0,49,0.12);
}
.hero-v2-stat:last-child { border-right: none; }
.hero-v2-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.hero-v2-stat-label {
  font-size: 0.7rem;
  color: rgba(240,238,238,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
}

/* ── Scroll indicator (reusable) ── */
.hero-v2-scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-v2-scroll span {
  display: block;
  width: 1.5px;
  height: 44px;
  background: linear-gradient(to bottom, #9E0031, transparent);
  margin: 0 auto;
  animation: scroll-line 2s ease-in-out infinite;
}

/* ── Marquee strip ── */
.marquee-strip {
  background: rgba(158,0,49,0.05);
  border-top: 1px solid rgba(158,0,49,0.1);
  border-bottom: 1px solid rgba(158,0,49,0.1);
  padding: 14px 0;
  overflow: hidden;
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(240,238,238,0.5);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9E0031;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Bento grid (services) ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  background: rgba(13,14,16,0.75);
  border: 1px solid rgba(158,0,49,0.14);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.bento-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(158,0,49,0.55) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bento-card:hover::after { opacity: 1; }
.bento-card:hover {
  border-color: rgba(158,0,49,0.32);
  box-shadow: 0 0 52px rgba(158,0,49,0.07), 0 12px 48px rgba(0,0,0,0.55);
  transform: translateY(-4px);
  text-decoration: none;
}
.bento-card--featured { grid-column: span 2; }
.bento-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(158,0,49,0.85);
}
.bento-icon {
  width: 44px;
  height: 44px;
  color: var(--color-primary);
}
.bento-icon svg { width: 100%; height: 100%; }
.bento-card h3 {
  font-size: 1.175rem;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
.bento-card--featured h3 { font-size: 1.4rem; }
.bento-card > p {
  font-size: 0.9rem;
  color: rgba(240,238,238,0.58);
  line-height: 1.72;
  flex: 1;
}
.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #9E0031;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  align-self: flex-start;
}
.bento-link:hover { gap: 10px; text-decoration: none; color: #BF0039; }
.bento-bg-num {
  position: absolute;
  right: -12px;
  bottom: -20px;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(158,0,49,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

/* ── Why Us v2 ── */
.why-us-v2 {
  padding: var(--section-pad) 0;
  background: #0D0E10;
}
.why-us-v2-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}
.why-v2-list { display: flex; flex-direction: column; }
.why-v2-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(158,0,49,0.09);
}
.why-v2-item:last-child { border-bottom: none; }
.why-v2-num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: #9E0031;
  letter-spacing: 2px;
  padding-top: 3px;
}
.why-v2-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.why-v2-body p {
  font-size: 0.875rem;
  color: rgba(240,238,238,0.58);
  line-height: 1.72;
}
.why-v2-card {
  position: sticky;
  top: 100px;
  background: rgba(13,14,16,0.85);
  border: 1px solid rgba(158,0,49,0.22);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}
.why-v2-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(158,0,49,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.why-v2-roi {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.why-v2-roi-num {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 700;
  color: #9E0031;
  line-height: 1;
}
.why-v2-roi-label {
  font-size: 0.72rem;
  color: rgba(240,238,238,0.45);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.why-v2-divider {
  height: 1px;
  background: rgba(158,0,49,0.18);
}
.why-v2-mini {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-v2-mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.why-v2-mini-row span { font-size: 0.82rem; color: rgba(240,238,238,0.5); }
.why-v2-mini-row strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-text);
  font-weight: 600;
}
@media (max-width: 1024px) {
  .why-us-v2-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-v2-card { position: static; }
}

/* ── Process v2 ─ 4-step horizontal cards ── */
.process-v2-section {
  padding: var(--section-pad) 0;
  background: #070707;
}
.process-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 48px;
}
.process-v2-grid::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,0,49,0.28) 20%, rgba(158,0,49,0.28) 80%, transparent);
  z-index: 0;
  pointer-events: none;
}
.process-v2-card {
  background: rgba(13,14,16,0.65);
  border: 1px solid rgba(158,0,49,0.11);
  border-radius: 16px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.process-v2-card:hover {
  border-color: rgba(158,0,49,0.28);
  box-shadow: 0 0 32px rgba(158,0,49,0.06);
}
.process-v2-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(158,0,49,0.35);
  background: rgba(158,0,49,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #9E0031;
  flex-shrink: 0;
}
.process-v2-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}
.process-v2-card p {
  font-size: 0.85rem;
  color: rgba(240,238,238,0.52);
  line-height: 1.68;
}
@media (max-width: 1024px) {
  .process-v2-grid { grid-template-columns: repeat(2, 1fr); }
  .process-v2-grid::before { display: none; }
}
@media (max-width: 580px) {
  .process-v2-grid { grid-template-columns: 1fr; }
}

/* ── CTA v2 ─ glow version ── */
.cta-v2 {
  padding: var(--section-pad) 0;
  background: #070707;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-v2::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(158,0,49,0.18) 0%, transparent 68%);
  pointer-events: none;
}
.cta-v2-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-v2 h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.06;
  color: var(--color-text);
  letter-spacing: -0.03em;
}
.cta-v2 > .cta-v2-inner > p {
  max-width: 520px;
  color: rgba(240,238,238,0.58);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Bento responsive ── */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--featured { grid-column: span 2; }
  .hero-orb-wrap { width: 360px; height: 360px; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--featured { grid-column: span 1; }
  .hero-orb-wrap { width: 280px; height: 280px; }
  .hero-v2-stat-num { font-size: 1.3rem; }
  .hero-v2-stat { padding: 20px 12px; }
}

/* ════════════════════════════════════════════════════════════════
   EXTENDED DESIGN SYSTEM — More graphics, gradients, depth
   ════════════════════════════════════════════════════════════════ */

/* ── Dot-grid background texture ── */
.dot-grid {
  background-image: radial-gradient(rgba(158,0,49,0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* ── Gradient border utility ── */
.grad-border {
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.grad-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(158,0,49,0.5) 0%, transparent 50%, rgba(158,0,49,0.2) 100%);
  z-index: -1;
}

/* ── Glow line divider ── */
.glow-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,0,49,0.45) 50%, transparent);
  margin: 0;
}

/* ══════════════════════════════════════
   INNER PAGE HERO  (.page-hero)
══════════════════════════════════════ */
.page-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #070707;
  padding: 100px 0 72px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(158,0,49,0.13) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero-glow::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 5%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle at center, rgba(158,0,49,0.18) 0%, rgba(158,0,49,0.04) 50%, transparent 72%);
  border-radius: 50%;
}
.page-hero-glow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #070707);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.page-hero-text { display: flex; flex-direction: column; gap: 20px; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(240,238,238,0.45);
}
.page-breadcrumb a { color: rgba(240,238,238,0.45); text-decoration: none; }
.page-breadcrumb a:hover { color: #9E0031; }
.page-breadcrumb-sep { color: rgba(240,238,238,0.25); }
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #9E0031;
  background: rgba(158,0,49,0.08);
  border: 1px solid rgba(158,0,49,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  align-self: flex-start;
}
.page-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--color-text);
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(240,238,238,0.65);
  line-height: 1.72;
  max-width: 520px;
}
.page-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.page-hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-hero-graphic-inner {
  background: rgba(13,14,16,0.7);
  border: 1px solid rgba(158,0,49,0.2);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.page-hero-graphic-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(158,0,49,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-graphic-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,0,49,0.55), transparent);
}
.page-hero-big-num {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: #9E0031;
  line-height: 1;
  position: relative;
}
.page-hero-big-label {
  font-size: 0.72rem;
  color: rgba(240,238,238,0.45);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-align: center;
}
.page-hero-stats-row {
  display: flex;
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(158,0,49,0.12);
}
.page-hero-mini-stat {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(158,0,49,0.12);
}
.page-hero-mini-stat:last-child { border-right: none; }
.page-hero-mini-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #9E0031;
  line-height: 1;
}
.page-hero-mini-stat span {
  font-size: 0.65rem;
  color: rgba(240,238,238,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-graphic { display: none; }
}
@media (max-width: 640px) {
  .page-hero { padding: 80px 0 56px; }
  .page-hero h1 { font-size: 2.1rem; }
}

/* ══════════════════════════════════════
   FEATURE CARDS  (.feature-card)
══════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: rgba(13,14,16,0.7);
  border: 1px solid rgba(158,0,49,0.13);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,0,49,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover::after { opacity: 1; }
.feature-card:hover {
  border-color: rgba(158,0,49,0.3);
  box-shadow: 0 0 36px rgba(158,0,49,0.07);
}
.feature-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #9E0031;
  opacity: 0.25;
  line-height: 1;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}
.feature-card p {
  font-size: 0.875rem;
  color: rgba(240,238,238,0.55);
  line-height: 1.65;
}
@media (max-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .feature-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   GLASS PANEL  (.glass-panel)
══════════════════════════════════════ */
.glass-panel {
  background: rgba(13,14,16,0.75);
  border: 1px solid rgba(158,0,49,0.18);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.glass-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(158,0,49,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.glass-panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,0,49,0.5), transparent);
}

/* ══════════════════════════════════════
   ABOUT PAGE — VALUES + TEAM
══════════════════════════════════════ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.value-card {
  background: rgba(13,14,16,0.65);
  border: 1px solid rgba(158,0,49,0.13);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(158,0,49,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.value-card:hover {
  border-color: rgba(158,0,49,0.28);
  transform: translateY(-2px);
}
.value-num {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  color: #9E0031;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}
.value-card p {
  font-size: 0.875rem;
  color: rgba(240,238,238,0.58);
  line-height: 1.7;
}
@media (max-width: 640px) { .value-grid { grid-template-columns: 1fr; } }

.team-card-v2 {
  background: rgba(13,14,16,0.7);
  border: 1px solid rgba(158,0,49,0.15);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.team-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(158,0,49,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.team-card-v2::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,0,49,0.45), transparent);
}
.team-card-v2:hover {
  border-color: rgba(158,0,49,0.3);
  transform: translateY(-3px);
}
.team-avatar-v2 {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9E0031 0%, #6B001F 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.team-avatar-v2::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(158,0,49,0.4), transparent);
  z-index: -1;
}
.team-name-v2 { font-size: 1.175rem; font-weight: 600; color: var(--color-text); }
.team-role-v2 { font-size: 0.82rem; color: #9E0031; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.team-bio-v2 { font-size: 0.9rem; color: rgba(240,238,238,0.6); line-height: 1.72; }

/* ══════════════════════════════════════
   BLOG CARDS v2
══════════════════════════════════════ */
.blog-card-v2 {
  background: rgba(13,14,16,0.7);
  border: 1px solid rgba(158,0,49,0.13);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card-v2:hover {
  border-color: rgba(158,0,49,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 40px rgba(158,0,49,0.06);
}
.blog-card-v2-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card-v2-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(13,14,16,0.9));
}
.blog-card-v2:hover .blog-card-v2-img img { transform: scale(1.04); }
.blog-card-v2-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9E0031;
}
.blog-card-v2-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
}
.blog-card-v2-body h3 a {
  color: inherit;
  text-decoration: none;
}
.blog-card-v2-body h3 a:hover { color: #9E0031; }
.blog-card-v2-body p {
  font-size: 0.875rem;
  color: rgba(240,238,238,0.55);
  line-height: 1.7;
  flex: 1;
}
.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #9E0031;
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s ease;
  align-self: flex-start;
}
.blog-read-link:hover { gap: 10px; text-decoration: none; }

/* ══════════════════════════════════════
   ENHANCED CTA SECTION
══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(180deg, #070707 0%, #0a0006 50%, #070707 100%) !important;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(158,0,49,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,0,49,0.35), transparent);
}
.cta-heading {
  position: relative;
  z-index: 1;
}
.cta-body { position: relative; z-index: 1; }
.cta-section .btn { position: relative; z-index: 1; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-glass {
  background: rgba(13,14,16,0.75);
  border: 1px solid rgba(158,0,49,0.18);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(158,0,49,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.contact-glass::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,0,49,0.45), transparent);
}
.contact-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-step-num {
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #9E0031 0%, #6B001F 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.contact-step p {
  font-size: 0.9rem;
  color: rgba(240,238,238,0.65);
  line-height: 1.65;
  margin: 0;
  padding-top: 4px;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(158,0,49,0.55);
  box-shadow: 0 0 0 3px rgba(158,0,49,0.08);
}

/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */
.svc-row-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(158,0,49,0.08);
}
.svc-row-v2:last-child { border-bottom: none; }
.svc-row-v2.reverse .svc-text-v2 { order: 2; }
.svc-row-v2.reverse .svc-vis  { order: 1; }
.svc-text-v2 h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.svc-text-v2 > p {
  color: rgba(240,238,238,0.65);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.svc-pill {
  background: rgba(158,0,49,0.1);
  border: 1px solid rgba(158,0,49,0.22);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(240,238,238,0.75);
  white-space: nowrap;
}
.svc-vis {
  background: rgba(13,14,16,0.65);
  border: 1px solid rgba(158,0,49,0.15);
  border-radius: 18px;
  padding: 40px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(158,0,49,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.svc-vis::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,0,49,0.4), transparent);
}
@media (max-width: 768px) {
  .svc-row-v2 { grid-template-columns: 1fr; gap: 32px; }
  .svc-row-v2.reverse .svc-text-v2 { order: 1; }
  .svc-row-v2.reverse .svc-vis { order: 2; }
  .svc-vis { min-height: 160px; }
}

/* ══════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid rgba(158,0,49,0.09) !important;
}
.faq-question {
  transition: color 0.2s ease !important;
}
.faq-item.is-open {
  background: rgba(158,0,49,0.03);
}
.faq-answer {
  border-top: 1px solid rgba(158,0,49,0.07);
  padding: 0 0 24px !important;
}

/* ══════════════════════════════════════
   HOME HERO — additional enhancements
══════════════════════════════════════ */
.hero-v2-ambience .hero-blob-1 {
  position: absolute;
  bottom: 20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(158,0,49,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-v2-ambience .hero-blob-2 {
  position: absolute;
  top: 30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(158,0,49,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* ══════════════════════════════════════
   FOOTER ENHANCEMENT
══════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #0D0E10 0%, #08080A 100%) !important;
  border-top: 1px solid transparent !important;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,0,49,0.35), transparent);
}

/* ══════════════════════════════════════
   STATS RIBBON ENHANCEMENT
══════════════════════════════════════ */
.stats-ribbon {
  background: linear-gradient(135deg, #9E0031 0%, #7A0026 50%, #9E0031 100%) !important;
  position: relative;
  overflow: hidden;
}
.stats-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* ══════════════════════════════════════
   404 + THANK YOU  PAGES
══════════════════════════════════════ */
.fullpage-center {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #070707;
  position: relative;
  overflow: hidden;
}
.fullpage-center::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(158,0,49,0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.fullpage-center::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(158,0,49,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.fullpage-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 24px;
}
.error-code-v2 {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 14vw, 10rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, rgba(158,0,49,0.6) 0%, rgba(158,0,49,0.15) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.thankyou-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9E0031 0%, #6B001F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(158,0,49,0.35);
}

/* ══════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════ */
.legal-hero {
  background: #070707;
  padding: 100px 0 64px;
  border-bottom: 1px solid rgba(158,0,49,0.1);
  position: relative;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(158,0,49,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.legal-body-section {
  background: #0D0E10;
  padding: 80px 0;
}
.legal-content-v2 {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.legal-content-v2 h2 {
  font-size: 1.175rem;
  color: var(--color-text);
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(158,0,49,0.1);
}
.legal-content-v2 p {
  font-size: 0.9375rem;
  color: rgba(240,238,238,0.62);
  line-height: 1.78;
}

/* ══════════════════════════════════════
   ABOUT HERO — origin story section
══════════════════════════════════════ */
.origin-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.origin-text p {
  font-size: 1.0rem;
  line-height: 1.85;
  color: rgba(240,238,238,0.72);
  margin-bottom: 20px;
}
.origin-text p:last-child { margin-bottom: 0; }
.origin-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.origin-stat-item {
  padding: 28px;
  border-bottom: 1px solid rgba(158,0,49,0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.origin-stat-item:first-child { border-top-left-radius: 18px; border-top-right-radius: 18px; }
.origin-stat-item:last-child { border-bottom: none; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; }
@media (max-width: 900px) {
  .origin-grid { grid-template-columns: 1fr; }
}
