/* ============================================================
   NORRM STUDIO — MASTER STYLESHEET
   Digital Marketing Agency, Lahore, Pakistan
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  --ink: #0D0D0D;
  --paper: #FFFFFF;
  --bone: #F5F5F3;
  --violet: #6D28D9;
  --violet-dark: #5B21B6;
  --line: #E2E1DD;
  --muted: #6B6B68;
  --max-w: 1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.15;
}

h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

small,
.caption {
  font-size: 13px;
}

/* ============================================================
   ACCESSIBILITY - FOCUS STYLES
   ============================================================ */

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

/* ============================================================
   CONTAINER
   ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: clamp(64px, 10vw, 104px) 0;
}

.section--sm {
  padding: clamp(40px, 6vw, 64px) 0;
}

.section--bone {
  background: var(--bone);
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  display: inline-block;
  margin-bottom: 12px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 200ms ease, border-color 200ms ease;
}

.nav.scrolled {
  background: #000000;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 38px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .nav__logo img {
    height: 32px;
    max-width: 180px;
  }
}

.logo-light {
  display: none;
}

.logo-dark {
  display: block;
}

.nav.nav--light {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav.nav--light .logo-light {
  display: block;
}

.nav.nav--light .logo-dark {
  display: none;
}

.nav.nav--light .nav__links a {
  color: var(--ink);
}

.nav.nav--light .nav__links a:hover,
.nav.nav--light .nav__links a.active {
  color: var(--violet);
}

.nav.nav--light .nav__hamburger span {
  background: var(--ink);
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
  transition: color 150ms;
}

.nav__links a:hover {
  color: var(--violet);
}

.nav__links a.active {
  color: var(--violet);
}

.nav__cta {
  background: var(--violet);
  color: var(--paper);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 150ms;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--violet-dark);
  color: var(--paper);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--paper);
  display: block;
  transition: all 200ms;
}

.nav.scrolled .nav__hamburger span {
  background: var(--paper);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px clamp(20px, 5vw, 48px) 24px;
  background: var(--ink);
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  color: var(--paper);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__mobile a:hover {
  color: var(--violet);
}

.nav__mobile a.active {
  color: var(--violet);
}

.nav__mobile .nav__cta {
  margin-top: 16px;
  text-align: center;
  border-bottom: none;
}

@media (max-width: 767px) {
  .nav__links,
  .desktop-cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 28px;
  cursor: pointer;
  border: none;
  transition: background 150ms, color 150ms;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
}

.btn--violet {
  background: var(--violet);
  color: var(--paper);
}

.btn--violet:hover {
  background: var(--violet-dark);
  color: var(--paper);
}

.btn--ink {
  background: var(--ink);
  color: var(--paper);
}

.btn--ink:hover {
  background: #1a1a1a;
  color: var(--paper);
}

.btn--outline {
  background: transparent;
  color: var(--violet);
  border: 2px solid var(--violet);
}

.btn--outline:hover {
  background: var(--violet);
  color: var(--paper);
}

.btn--white {
  background: var(--paper);
  color: var(--ink);
}

.btn--white:hover {
  background: var(--bone);
  color: var(--ink);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(64px, 10vw, 104px);
  background: var(--paper);
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 20px;
}

.hero__heading {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 780px;
}

.hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   VALUE PROPS
   ============================================================ */

.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-prop {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.value-prop__icon {
  width: 44px;
  height: 44px;
  color: var(--violet);
}

.value-prop__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.value-prop__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .value-props {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .value-props {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-prop:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   SERVICES GRID (Homepage)
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--paper);
  transition: border-color 200ms, transform 200ms;
  display: block;
  text-decoration: none;
}

.service-card:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--violet);
  margin-bottom: 16px;
}

.service-card__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

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

@media (min-width: 768px) and (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   SERVICE BLOCKS (Services Page)
   ============================================================ */

.service-block {
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 767px) {
  .service-block__inner {
    grid-template-columns: 1fr;
  }
}

.service-block__icon {
  width: 56px;
  height: 56px;
  color: var(--violet);
}

.service-block__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}

.service-block__title {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.service-block__body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

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

.service-block__list li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.service-block__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

/* ============================================================
   TESTIMONIAL CARD
   ============================================================ */

.tcard {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tcard__quote {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.75;
  font-style: italic;
}

.tcard__quote::before {
  content: '\201C';
  font-size: 48px;
  line-height: 0;
  vertical-align: -20px;
  color: var(--violet);
  margin-right: 4px;
}

.tcard__person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.tcard__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bone);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--violet);
  font-size: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.tcard__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.tcard__role {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   VIDEO CARD
   ============================================================ */

.video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms;
  border: none;
  cursor: pointer;
}

.video-card__play-btn:hover {
  background: var(--violet-dark);
}

.video-card__play-btn svg {
  width: 24px;
  height: 24px;
  color: white;
  margin-left: 4px;
}

.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card.playing .video-card__play {
  display: none;
}

/* ============================================================
   REVIEWS GRID
   ============================================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.review-entry {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  background: var(--ink);
  padding: clamp(64px, 10vw, 96px) 0;
  text-align: center;
}

.cta-band__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}

.cta-band h2 {
  color: var(--paper);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  font-size: 18px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 767px) {
  .about-story {
    grid-template-columns: 1fr;
  }
}

.about-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 767px) {
  .about-diff-grid {
    grid-template-columns: 1fr;
  }
}

.diff-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.diff-card__icon {
  width: 40px;
  height: 40px;
  color: var(--violet);
  margin-bottom: 16px;
}

.diff-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.diff-card p {
  font-size: 15px;
}

.team-functions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
  .team-functions {
    grid-template-columns: repeat(2, 1fr);
  }
}

.func-pill {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
}

.func-pill__icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.func-pill__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 767px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  font-family: inherit;
  outline: none;
  transition: border-color 150ms;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--violet);
}

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

::placeholder {
  color: var(--muted);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item__icon {
  width: 20px;
  height: 20px;
  color: var(--violet);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item__text {
  font-size: 15px;
  color: var(--ink);
}

.contact-item__text a {
  color: var(--violet);
}

.contact-item__text a:hover {
  text-decoration: underline;
}

.calendly-section {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 8vw, 80px) 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

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

.footer__brand img {
  height: 28px;
  width: auto;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col h5 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  transition: color 150ms;
}

.footer__col a:hover {
  color: var(--paper);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__book-link {
  font-size: 13px;
  color: var(--violet);
  font-weight: 500;
}

.footer__book-link:hover {
  text-decoration: underline;
  color: var(--violet);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-center { text-align: center; }
.text-violet  { color: var(--violet); }

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
  border: none;
}

.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================================
   BRAND DEPTH & ARTIFACT ENHANCEMENTS (V2 REFINEMENTS)
   ============================================================ */

/* Logo visibility upgrade */
.nav__logo img {
  height: 38px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .nav__logo img {
    height: 32px;
    max-width: 180px;
  }
}

.footer__brand img {
  height: 32px;
  width: auto;
  max-width: 200px;
  margin-bottom: 12px;
}

/* Nav on Dark Hero or Scrolled */
.nav--dark-hero {
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav--dark-hero .nav__links a {
  color: var(--paper);
}
.nav--dark-hero .nav__links a:hover,
.nav--dark-hero .nav__links a.active {
  color: var(--violet);
}
.nav--dark-hero .logo-light {
  display: none;
}
.nav--dark-hero .logo-dark {
  display: block;
}
.nav--dark-hero .nav__hamburger span {
  background: var(--paper);
}

/* Dark Hero Section */
.hero--dark {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero--dark .hero__heading {
  color: var(--paper);
}

.hero--dark .hero__sub {
  color: rgba(255, 255, 255, 0.72);
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 991px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Brand Tagline Pill */
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 24px;
}

.brand-pill--light {
  background: var(--bone);
  border-color: var(--line);
  color: var(--ink);
}

.brand-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  display: inline-block;
}

.brand-pill .seal-mini {
  width: 16px;
  height: 16px;
  color: var(--violet);
}

/* Growth Engine Artifact Card */
.growth-artifact {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.growth-artifact__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.growth-artifact__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 8px;
}

.growth-artifact__tag {
  font-size: 11px;
  background: var(--violet);
  color: var(--paper);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.pipeline-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pipeline-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  transition: border-color 150ms, background 150ms;
}

.pipeline-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--violet);
}

.pipeline-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--violet);
}

.pipeline-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 2px;
}

.pipeline-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.4;
}

.pipeline-metric {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #10B981;
}

.growth-artifact__footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.growth-artifact__stat {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.growth-artifact__stat strong {
  color: var(--paper);
}

/* Dark Contrast Feature Band */
.dark-metrics-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vw, 90px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .dark-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .dark-stats-grid {
    grid-template-columns: 1fr;
  }
}

.dark-stat-card {
  padding: 28px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition: border-color 150ms;
}

.dark-stat-card:hover {
  border-color: var(--violet);
}

.dark-stat-card__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 8px;
}

.dark-stat-card__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 6px;
}

.dark-stat-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* Contact Page Parallel Layout */
.contact-parallel-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-parallel-grid {
    grid-template-columns: 1fr;
  }
}

.calendly-primary-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.calendly-primary-box__header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calendly-primary-box__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.calendly-primary-box__sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  width: fit-content;
  margin-top: 4px;
}

.status-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
}

/* Fast Track Card */
.fast-track-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.fast-track-card h3 {
  color: var(--paper);
  font-size: 18px;
  margin-bottom: 6px;
}

.fast-track-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 20px;
}

.fast-track-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms, color 150ms, border-color 150ms;
}

.action-btn--primary {
  background: var(--violet);
  color: var(--paper);
}

.action-btn--primary:hover {
  background: var(--violet-dark);
}

.action-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.action-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--violet);
}

.action-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Secondary Message Box */
.message-box {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}

.message-box h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}

.message-box p {
  font-size: 13px;
  margin-bottom: 20px;
}

/* Norrm Scalloped Seal Badge Component */
.norrm-seal-stamp {
  width: 72px;
  height: 72px;
  display: inline-block;
  color: var(--violet);
}

.seal-watermark {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 140px;
  height: 140px;
  opacity: 0.06;
  pointer-events: none;
  color: var(--paper);
}

/* Star Rating */
.rating-stars {
  display: flex;
  gap: 4px;
  color: var(--violet);
  font-size: 16px;
  margin-bottom: 12px;
}


/* Footer Social Icons & Legal Links */
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--paper);
  transition: background 150ms, border-color 150ms, transform 150ms;
}

.footer__social a:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--paper);
  transform: translateY(-2px);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__legal {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: color 150ms;
}

.footer__legal a:hover {
  color: var(--paper);
  text-decoration: underline;
}
