/* ============================================================
   ZEN CREATIVES — DESIGN TOKENS  (Black · White · Red)
   ============================================================ */
:root {
  /* Core palette */
  --black:        #0a0a0a;
  --black-mid:    #111111;
  --black-soft:   #1a1a1a;
  --black-card:   #161616;
  --red:          #8a0606;
  --red-deep:     #bf5252;
  --red-glow:     rgba(224, 32, 32, 0.18);
  --red-border:   rgba(224, 32, 32, 0.35);
  --white:        #ffffff;
  --white-90:     rgba(255, 255, 255, 0.9);
  --white-60:     rgba(255, 255, 255, 0.6);
  --white-30:     rgba(255, 255, 255, 0.3);
  --white-10:     rgba(255, 255, 255, 0.1);
  --white-05:     rgba(255, 255, 255, 0.05);

  /* Semantic aliases */
  --bg:           var(--black);
  --bg-alt:       var(--black-mid);
  --surface:      var(--black-card);
  --surface-hover:#1f1f1f;
  --border:       rgba(255, 255, 255, 0.08);
  --border-strong:rgba(255, 255, 255, 0.15);
  --text-primary: var(--white);
  --text-muted:   var(--white-60);
  --text-faint:   var(--white-30);
  --accent:       var(--red);
  --accent-deep:  var(--red-deep);

  /* Typography */
  --font-display: "Space Grotesk", sans-serif;
  --font-body:    "Inter", sans-serif;

  /* Layout */
  --container-width: 1200px;
  --section-pad:     6rem;
  --section-pad-sm:  4rem;

  /* Radius */
  --radius-sm:  0.5rem;
  --radius-md:  0.75rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-pill:999px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.container-narrow { max-width: 780px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

.gradient-text { color: var(--accent); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border: 1px solid var(--red-border);
  background: var(--red-glow);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.eyebrow-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.eyebrow-label::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--accent);
  margin-top: 0.5rem;
}

.section-head--center .eyebrow-label::after {
  margin: 0.5rem auto 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 600px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(224, 32, 32, 0.35);
}

.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(224, 32, 32, 0.45);
}

.btn-outline {
  border: 1.5px solid var(--border-strong);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-block { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 0.2rem;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:not(.btn):hover {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.nav-cta { padding: 0.6rem 1.25rem; }

.nav-toggle {
  display: none;
  color: var(--white);
  font-size: 1.375rem;
  padding: 0.25rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  padding-top: 5rem;
}

.neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(130px);
}

.hero-glow--violet {
  top: -8rem; right: -8rem;
  width: 34rem; height: 34rem;
  background: rgba(224, 32, 32, 0.12);
}

.hero-glow--teal {
  bottom: -10rem; left: -10rem;
  width: 30rem; height: 30rem;
  background: rgba(224, 32, 32, 0.08);
}

.hero-glow--center {
  top: 50%; left: 50%;
  width: 44rem; height: 44rem;
  transform: translate(-50%, -50%);
  background: rgba(224, 32, 32, 0.06);
  filter: blur(150px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin-top: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: center;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.825rem;
  color: var(--text-faint);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white-30);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  transition: color 0.2s ease;
}

.scroll-down:hover { color: var(--accent); }

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%       { transform: translate(-50%, -8px); }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-alt { background: var(--bg-alt); }

.section-head {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .section-text {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2rem;
}

.tag {
  padding: 0.35rem 0.875rem;
  border: 1px solid var(--border-strong);
  background: var(--white-05);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white-60);
}

.about-cards { display: flex; flex-direction: column; gap: 1rem; }

.about-card {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.about-card:hover {
  border-color: var(--red-border);
  background: var(--surface-hover);
}

.about-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }

.about-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   ICON BOX
   ============================================================ */
.icon-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: var(--radius-md);
  background: rgba(224, 32, 32, 0.12);
  border: 1px solid var(--red-border);
  color: var(--accent);
  font-size: 1.05rem;
}

.icon-box--gradient {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  padding: 1.875rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 1.875rem; right: 1.875rem;
  height: 2px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-border);
  background: var(--surface-hover);
}

.service-card:hover::before { opacity: 1; }

.service-card .icon-box {
  width: 2.625rem;
  height: 2.625rem;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.service-card h3 { font-size: 1.025rem; font-weight: 600; margin-bottom: 0.5rem; }

.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  gap: 1px;
  background: var(--border);
}

.why-card {
  background: var(--black-card);
  padding: 2.25rem 2rem;
  transition: background 0.25s ease;
}

.why-card:hover { background: var(--surface-hover); }

.why-icon { font-size: 1.375rem; color: var(--accent); margin-bottom: 1.125rem; display: block; }

.why-card h3 { font-size: 1.025rem; font-weight: 600; margin-bottom: 0.5rem; }

.why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 2.5rem 2rem;
  position: relative;
}

.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 1;
  margin-bottom: 0.625rem;
  line-height: 1;
}

.process-step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }

.process-step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   RESULTS
   ============================================================ */
.results-section { overflow: hidden; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.result-stat {
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.result-stat:hover {
  border-color: var(--red-border);
  transform: translateY(-3px);
}

.result-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.125rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.result-stat p { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s ease;
}

.testimonial-card:hover { border-color: var(--red-border); }

.testimonial-icon { color: var(--accent); font-size: 1.25rem; margin-bottom: 1.25rem; }

.testimonial-card > p {
  flex: 1;
  font-size: 0.9rem;
  color: var(--white-90);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--border);
}

.testimonial-author strong { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; }

.testimonial-author span { font-size: 0.75rem; color: var(--text-faint); margin-top: 0.2rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.625rem; }

.faq-item {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.active { border-color: var(--red-border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--accent); }

.faq-question i {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }

.faq-answer p {
  padding: 0 1.5rem 1.375rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.125rem; margin-top: 2.5rem; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info-item .icon-box { width: 2.625rem; height: 2.625rem; font-size: 0.95rem; }

.contact-form-wrap {
  padding: 2.25rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-xl);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-60);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-strong);
  background: var(--black-mid);
  color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-30); }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(224, 32, 32, 0.18);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 340px;
  padding: 2rem;
}

.form-success.visible { display: flex; }

.form-success i { font-size: 2.75rem; color: var(--accent); margin-bottom: 1.25rem; }

.form-success h3 { font-size: 1.375rem; margin-bottom: 0.625rem; }

.form-success p { font-size: 0.9rem; color: var(--text-muted); max-width: 320px; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 260px;
  line-height: 1.75;
}

.social-links { display: flex; gap: 0.625rem; margin-top: 1.375rem; flex-wrap: wrap; }

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  color: var(--white);
  border-color: var(--accent);
  background: rgba(224, 32, 32, 0.12);
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer ul a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer ul a:hover { color: var(--white); padding-left: 0.375rem; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-contact i { color: var(--accent); width: 1rem; flex-shrink: 0; margin-top: 0.15rem; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  align-items: center;
  text-align: center;
  padding-top: 2.5rem;
  font-size: 0.75rem;
  color: var(--white-30);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(300px, 80vw);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    border-left: 1px solid var(--border);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open { right: 0; }
  .nav-links a:not(.btn) { font-size: 1rem; border-bottom: none; }
  .nav-cta { margin-top: 0.75rem; }
  .nav-toggle { display: block; }
}

/* ============================================================
   RESPONSIVE — DESKTOP ABOUT / CONTACT
   ============================================================ */
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1.1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-pad: var(--section-pad-sm); }

  .container { padding: 0 1.25rem; }
  .nav-container { padding: 1rem 1.25rem; }
  .hero { padding-top: 6rem; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Hide desktop CTA pill in top bar; still visible in mobile menu */
  .nav-container .nav-cta { display: none; }
  .nav-links .nav-cta { display: inline-flex; }
}

/* ============================================================
   SERVICE CARD — clickable overlay + CTA label
   ============================================================ */
.service-card {
  position: relative; /* ensure overlay is contained */
}

/* Full-card invisible overlay link */
.service-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-lg);
}

/* "Learn More →" label at card bottom */
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: gap 0.2s ease;
  position: relative;
  z-index: 2; /* sits above overlay so it's visually on top */
  pointer-events: none; /* click still goes through to overlay link */
}

.service-card:hover .service-card-cta {
  gap: 0.65rem;
}

/* ============================================================
   SERVICE PAGE — hero banner
   ============================================================ */
.sp-hero {
  background: var(--black);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.sp-hero::before {
  content: '';
  position: absolute;
  top: -6rem; right: -6rem;
  width: 26rem; height: 26rem;
  border-radius: 50%;
  background: var(--red-glow);
  filter: blur(110px);
  pointer-events: none;
}

.sp-hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.sp-hero-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 1.25rem;
  background: var(--accent);
  color: var(--white);
  font-size: 2.25rem;
  box-shadow: 0 12px 40px rgba(224, 32, 32, 0.35);
}

.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sp-breadcrumb a {
  color: var(--accent);
  transition: opacity 0.2s;
}
.sp-breadcrumb a:hover { opacity: 0.75; }
.sp-breadcrumb i { font-size: 0.6rem; color: var(--text-faint); }

.sp-hero-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.sp-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ============================================================
   SERVICE PAGE — content sections
   ============================================================ */
.sp-section {
  padding: 5rem 0;
}

.sp-section-alt { background: var(--bg-alt); }

.sp-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .sp-two-col { grid-template-columns: 1fr 1fr; }
  .sp-hero-inner { gap: 2.5rem; }
}

.sp-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.875rem;
  display: block;
}

.sp-label::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--accent);
  margin-top: 0.5rem;
}

.sp-heading {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.sp-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* Feature / benefit list */
.sp-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.5rem;
}

.sp-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.sp-list-item i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Process steps on service page */
.sp-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.sp-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.sp-step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--red-glow);
  border: 1px solid var(--red-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

.sp-step-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.sp-step-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Stat cards inside service pages */
.sp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.sp-stat {
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color 0.25s ease;
}

.sp-stat:hover { border-color: var(--red-border); }

.sp-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}

.sp-stat p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* CTA Banner */
.sp-cta-banner {
  background: var(--surface);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-cta-banner::before {
  content: '';
  position: absolute;
  top: -4rem; left: 50%;
  transform: translateX(-50%);
  width: 20rem; height: 20rem;
  border-radius: 50%;
  background: var(--red-glow);
  filter: blur(80px);
  pointer-events: none;
}

.sp-cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.875rem;
  position: relative;
}

.sp-cta-banner p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.sp-cta-banner .btn { position: relative; }

/* ============================================================
   SERVICE PAGE — mobile hero layout
   ============================================================ */
@media (max-width: 640px) {
  .sp-hero { padding: 6rem 0 3.5rem; }
  .sp-hero-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .sp-hero-icon { width: 4rem; height: 4rem; font-size: 1.75rem; }
  .sp-section { padding: 3.5rem 0; }
  .sp-cta-banner { padding: 2rem 1.5rem; }
}

/* ============================================================
   CONSULTATION CARD  (replaces contact form)
   ============================================================ */
.consult-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Image block */
.consult-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  flex-shrink: 0;
}

.consult-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.5s ease;
}

.consult-card:hover .consult-img {
  transform: scale(1.03);
}

/* "Free Consultation" badge over image */
.consult-img-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 0.875rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 16px rgba(224, 32, 32, 0.4);
}

/* Text + button block */
.consult-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consult-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.consult-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Perks checklist */
.consult-perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.consult-perks li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.consult-perks li i {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* CTA button */
.consult-btn {
  margin-top: 0.5rem;
  border-radius: var(--radius-md);
}

/* Responsive: on wide screens the image can be taller */
@media (min-width: 768px) {
  .consult-img-wrap {
    aspect-ratio: 16 / 6;
  }
}

@media (max-width: 640px) {
  .consult-body {
    padding: 1.5rem;
  }
  .consult-img-wrap {
    aspect-ratio: 16 / 8;
  }
}
