/* ============================================================
   Main Stylesheet — website-template
   Dark theme (#0d1117), mobile-first, Apple-inspired.
   Customize variables.css for brand colors/fonts.
   ============================================================ */

@import "reset.css";
@import "variables.css";

/* ----------------------------------------------------------
   Self-Hosted Fonts (optional — uncomment and add font files to assets/fonts/)
   Google Fonts alternative: add <link> to partials/head.html instead
   ---------------------------------------------------------- */

/* @font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/SpaceGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */

/* ----------------------------------------------------------
   Base Styles
   ---------------------------------------------------------- */

html {
  font-size: 16px;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------------------------
   Layout — Container & Section
   ---------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.container--narrow {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  width: 100%;
  padding: var(--section-padding);
}

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

.section-header {
  margin-bottom: var(--space-3xl);
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--letter-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--letter-tight);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin-inline: auto;
}

/* ----------------------------------------------------------
   Typography — Headings
   ---------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--letter-tight);
  color: var(--color-text-primary);
}

h1 { font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl)); letter-spacing: var(--letter-tighter); }
h2 { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); letter-spacing: var(--letter-tighter); }
h3 { font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl)); }
h4 { font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl)); }
h5 { font-size: clamp(var(--text-lg), 2vw, var(--text-2xl)); }
h6 { font-size: clamp(var(--text-base), 1.5vw, var(--text-xl)); font-weight: var(--weight-semibold); }

.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.highlight       { color: var(--color-accent); }
.highlight--gold { color: var(--color-gold); }

/* ----------------------------------------------------------
   Site Header
   ---------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    backdrop-filter var(--transition-base);
}

.site-header.is-scrolled {
  background-color: rgba(13, 17, 23, 0.92);
  border-bottom-color: var(--color-border);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  width: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.site-logo__wordmark {
  font-family: var(--font-headline);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  letter-spacing: var(--letter-tight);
  color: var(--color-text-primary);
  line-height: 1;
}

.site-logo__wordmark span {
  color: var(--color-accent);
}

/* Primary nav — lives outside <header> to avoid backdrop-filter stacking context */
.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-right: var(--container-px);
  z-index: var(--z-sticky);
}

.nav-menu__list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-menu__link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  letter-spacing: var(--letter-wide);
  transition: color var(--transition-fast);
  white-space: nowrap;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.nav-menu__link:hover,
.nav-menu__link.is-active {
  color: var(--color-text-primary);
}

.nav-menu__cta {
  margin-left: var(--space-sm);
}

/* ----------------------------------------------------------
   Mobile Navigation
   ---------------------------------------------------------- */

.nav-toggle {
  display: none;
  position: fixed;
  top: 12px;
  left: calc(var(--container-px) + 56px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
  z-index: calc(var(--z-overlay) + 10);
}

.nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition:
    transform var(--transition-base),
    opacity var(--transition-fast),
    width var(--transition-base);
  transform-origin: center;
}

.nav-toggle.is-active .nav-toggle__bar {
  width: 24px;
  background-color: #FFFFFF;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-toggle.is-active {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    inset: 0;
    height: auto;
    padding-right: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    background-color: var(--color-bg-overlay);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    z-index: var(--z-overlay);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity var(--transition-base),
      transform var(--transition-base),
      pointer-events 0s var(--transition-base);
  }

  .nav-menu.is-open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity var(--transition-base),
      transform var(--transition-base);
  }

  .nav-menu__list {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }

  .nav-menu__link {
    font-size: var(--text-2xl);
    font-family: var(--font-headline);
    font-weight: var(--weight-bold);
    color: var(--color-text-primary);
    min-height: 56px;
    letter-spacing: var(--letter-tight);
  }

  .nav-menu__cta {
    margin-left: 0;
    margin-top: var(--space-md);
  }
}

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.5rem;
  min-height: 48px;
  min-width: 120px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--letter-wide);
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  user-select: none;
  text-align: center;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-secondary:hover {
  background-color: var(--color-accent-light);
  box-shadow: var(--shadow-accent);
}

.btn-call {
  background-color: var(--color-gold);
  color: var(--color-text-inverse);
  border-color: var(--color-gold);
  font-weight: var(--weight-bold);
}
.btn-call:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-text-secondary);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-border-hover);
  color: var(--color-text-primary);
}

.btn--sm  { padding: 0.5rem 1rem; min-height: 40px; font-size: var(--text-xs); }
.btn--lg  { padding: 1rem 2rem; min-height: 56px; font-size: var(--text-base); }
.btn--full { width: 100%; }

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

@media (max-width: 767px) {
  .btn { white-space: normal; max-width: 100%; }
}

/* ----------------------------------------------------------
   Cards
   ---------------------------------------------------------- */

.card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.card--accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.card--gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--color-accent-light);
  border-radius: var(--radius);
  margin-bottom: var(--space-lg);
  font-size: var(--text-2xl);
}

.card__title {
  font-family: var(--font-headline);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-sm);
  letter-spacing: var(--letter-tight);
}

.card__body {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.card__footer {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

/* ----------------------------------------------------------
   Grid Layouts
   ---------------------------------------------------------- */

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

/* ----------------------------------------------------------
   Hero Section
   ---------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: calc(var(--header-height) + var(--space-4xl)) var(--space-4xl);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-below);
}

.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 17, 23, 0.90) 0%,
    rgba(13, 17, 23, 0.60) 60%,
    rgba(13, 17, 23, 0.80) 100%
  );
  z-index: var(--z-base);
}

.hero__content {
  position: relative;
  z-index: var(--z-raised);
  max-width: 700px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--letter-wider);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--color-gold-light);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-full);
}

.hero__title {
  font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl));
  font-family: var(--font-headline);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--letter-tighter);
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.hero__trust {
  margin-top: var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ----------------------------------------------------------
   Pricing / Trust
   ---------------------------------------------------------- */

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.pricing-card__range {
  font-family: var(--font-headline);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--weight-bold);
  color: var(--color-gold);
  line-height: 1;
}

.pricing-cta {
  margin-top: var(--space-2xl);
}

.trust-grid {
  margin-bottom: var(--space-2xl);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(192, 57, 43, 0.08), rgba(13, 17, 23, 0.1)),
    var(--color-bg-card);
}

.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

/* ----------------------------------------------------------
   Service Landing Pages
   ---------------------------------------------------------- */

.service-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  background:
    radial-gradient(circle at top left, rgba(240, 180, 41, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(192, 57, 43, 0.18), transparent 30%),
    linear-gradient(180deg, #121821 0%, #0d1117 54%, #0d1117 100%);
}

.service-hero::before,
.service-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.4;
  pointer-events: none;
}

.service-hero::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -120px;
  background: rgba(240, 180, 41, 0.12);
}

.service-hero::after {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: -120px;
  background: rgba(192, 57, 43, 0.15);
}

.service-hero__layout {
  position: relative;
  z-index: var(--z-raised);
  display: grid;
  gap: var(--space-2xl);
  align-items: start;
}

.service-hero__content {
  max-width: 720px;
}

.service-hero__headline {
  font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl));
  margin-bottom: var(--space-lg);
}

.service-hero__summary {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 60ch;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.service-hero__panel {
  position: relative;
  z-index: var(--z-raised);
}

.service-highlight-list {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.service-highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background-color: rgba(255, 255, 255, 0.03);
}

.service-highlight__value {
  min-width: 72px;
  font-family: var(--font-headline);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  letter-spacing: var(--letter-tight);
  color: var(--color-gold);
  line-height: 1.1;
}

.service-highlight__text {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.metric-card {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--color-bg-card);
}

.metric-card__value {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--weight-bold);
  line-height: 1;
  color: var(--color-accent);
}

.metric-card__label {
  display: block;
  margin-top: var(--space-sm);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.callout-panel {
  padding: var(--space-xl);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-accent-border);
  background:
    linear-gradient(180deg, rgba(192, 57, 43, 0.1), rgba(13, 17, 23, 0.2)),
    var(--color-bg-card);
  box-shadow: var(--shadow-card);
}

.callout-panel--gold {
  border-color: rgba(240, 180, 41, 0.25);
  background:
    linear-gradient(180deg, rgba(240, 180, 41, 0.08), rgba(13, 17, 23, 0.18)),
    var(--color-bg-card);
}

.callout-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  color: var(--color-gold);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--letter-wider);
  text-transform: uppercase;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: var(--color-bg-card);
  box-shadow: var(--shadow-card);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.125rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  font-family: var(--font-headline);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
  color: var(--color-text-primary);
  background-color: rgba(255, 255, 255, 0.02);
}

.comparison-table td {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.list-checks {
  display: grid;
  gap: var(--space-sm);
}

.list-checks li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text-secondary);
}

.list-checks li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
}

.roi-card {
  display: grid;
  gap: var(--space-xl);
}

.roi-equation {
  display: grid;
  gap: var(--space-md);
}

.roi-equation__line {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.roi-equation__line strong {
  color: var(--color-text-primary);
  font-weight: var(--weight-semibold);
}

.roi-equation__line--result {
  padding-top: var(--space-sm);
  border-bottom: none;
  font-size: var(--text-base);
}

.faq-list {
  display: grid;
  gap: var(--space-lg);
}

.faq-item {
  padding: var(--space-xl);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-card);
  box-shadow: var(--shadow-card);
}

.faq-item__question {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.faq-item__answer {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.note-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.note-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   Stats / Numbers
   ---------------------------------------------------------- */

.stat-item {
  text-align: center;
  padding: var(--space-xl);
}

.stat-item__number {
  font-family: var(--font-headline);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: var(--weight-bold);
  letter-spacing: var(--letter-tighter);
  color: var(--color-accent);
  line-height: 1;
  display: block;
}

.stat-item__label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: var(--space-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   Testimonials
   ---------------------------------------------------------- */

.testimonial__quote {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.testimonial__quote::before {
  content: '"';
  font-family: var(--font-headline);
  font-size: 4rem;
  color: var(--color-accent);
  line-height: 0;
  vertical-align: -1.5rem;
  margin-right: var(--space-2xs);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial__name {
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
}

.testimonial__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.testimonial__stars {
  color: var(--color-gold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

/* ----------------------------------------------------------
   Process / Steps
   ---------------------------------------------------------- */

.process-step {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.process-step__number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--color-accent-light);
  border: 1px solid var(--color-accent-border);
  border-radius: 50%;
  font-family: var(--font-headline);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  color: var(--color-accent);
  line-height: 1;
}

.process-step__title {
  font-family: var(--font-headline);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-xs);
}

.process-step__desc {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* ----------------------------------------------------------
   Badge / Tag
   ---------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
  white-space: nowrap;
}

.badge--accent  { background-color: var(--color-accent-light); color: var(--color-accent); border: 1px solid var(--color-accent-border); }
.badge--gold    { background-color: var(--color-gold-light); color: var(--color-gold); }
.badge--success { background-color: var(--color-success-light); color: var(--color-success); }
.badge--error   { background-color: var(--color-error-light); color: var(--color-error); }

/* ----------------------------------------------------------
   Forms
   ---------------------------------------------------------- */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  letter-spacing: var(--letter-wide);
}

.form-label--required::after {
  content: ' *';
  color: var(--color-error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  min-height: 48px;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-primary);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

.form-input.has-error,
.form-select.has-error,
.form-textarea.has-error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px var(--color-error-light);
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b949e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-hint { font-size: var(--text-xs); color: var(--color-text-muted); }
.form-error-msg { font-size: var(--text-xs); color: var(--color-error); }

.form-message {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border: 1px solid transparent;
}

.form-message--success {
  background-color: var(--color-success-light);
  color: var(--color-success);
  border-color: rgba(34, 197, 94, 0.25);
}

.form-message--error {
  background-color: var(--color-error-light);
  color: var(--color-error);
  border-color: rgba(239, 68, 68, 0.25);
}

/* SMS consent disclosure */
.sms-consent {
  display: none;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: rgba(255,255,255,0.03);
}

/* ----------------------------------------------------------
   Gallery
   ---------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-card);
  background-color: var(--color-bg-alt);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ----------------------------------------------------------
   Site Footer
   ---------------------------------------------------------- */

.site-footer {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-4xl) var(--space-2xl);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 640px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-3xl); }
}

.site-footer__brand p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-md);
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-headline);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--letter-wider);
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.footer-links a:hover { color: var(--color-text-primary); }

.site-footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: space-between;
}

.site-footer__legal {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ----------------------------------------------------------
   Mobile Sticky CTA
   ---------------------------------------------------------- */

.mobile-cta-btn {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-sticky);
  display: none;
  align-items: center;
  gap: var(--space-sm);
  background-color: var(--color-gold);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--letter-wide);
  padding: var(--space-sm) var(--space-xl);
  min-height: 52px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.mobile-cta-btn:hover {
  background-color: var(--color-gold-hover);
  transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 767px) {
  .mobile-cta-btn { display: flex; }
  body.nav-open .mobile-cta-btn { display: none; }
  main { padding-bottom: 88px; }
  .process-step { flex-direction: column; gap: var(--space-md); }
  .stat-item { padding: var(--space-lg) var(--space-md); }
  .card { padding: var(--space-lg); }
  .metric-grid { grid-template-columns: 1fr; }
  .comparison-table { display: block; overflow-x: auto; }
  .service-highlight { flex-direction: column; }
  .roi-equation__line { align-items: flex-start; flex-direction: column; gap: var(--space-xs); }
}

@media (min-width: 960px) {
  .service-hero__layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  }

  .roi-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    align-items: start;
  }
}

/* ----------------------------------------------------------
   Material Service Pages
   ---------------------------------------------------------- */

.service-stat-grid {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.service-stat {
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.03);
}

.service-stat__label {
  display: block;
  margin-bottom: var(--space-2xs);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--letter-wider);
  text-transform: uppercase;
}

.service-stat__value {
  color: var(--color-text-primary);
  font-family: var(--font-headline);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
}

.service-photo-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.photo-placeholder {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  border: 1px dashed var(--color-border-hover);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(240, 180, 41, 0.04), rgba(192, 57, 43, 0.08)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.photo-placeholder__tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: var(--space-sm);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-gold);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
}

.photo-placeholder__title {
  margin-bottom: var(--space-xs);
  font-family: var(--font-headline);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
}

.photo-placeholder__body {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.comparison-card {
  height: 100%;
}

.comparison-card__heading {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-family: var(--font-headline);
  font-size: var(--text-2xl);
}

.comparison-card__marker {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
}

.comparison-card__marker--pro {
  background-color: var(--color-gold);
}

.comparison-card__marker--con {
  background-color: var(--color-accent);
}

.pricing-band {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

.pricing-band__summary {
  padding: var(--space-xl);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(192, 57, 43, 0.10), rgba(13, 17, 23, 0.08)),
    var(--color-bg-card);
}

.pricing-band__label {
  display: inline-flex;
  margin-bottom: var(--space-md);
}

.pricing-band__range {
  margin-bottom: var(--space-md);
  color: var(--color-gold);
  font-family: var(--font-headline);
  font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl));
  line-height: 1;
}

.pricing-band__note {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.use-cases {
  display: grid;
  gap: var(--space-lg);
}

.use-case {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.02);
}

.use-case h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--text-xl);
}

.use-case p,
.maintenance-item p {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.maintenance-list {
  display: grid;
  gap: var(--space-lg);
}

.maintenance-item {
  padding: var(--space-lg);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background-color: rgba(255, 255, 255, 0.03);
}

.maintenance-item h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-xl);
}

.service-faq-list {
  display: grid;
  gap: var(--space-md);
}

.service-faq {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-bg-card);
  overflow: hidden;
}

.service-faq summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-lg);
  font-family: var(--font-headline);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
}

.service-faq summary::-webkit-details-marker {
  display: none;
}

.service-faq[open] summary {
  border-bottom: 1px solid var(--color-border);
}

.service-faq__answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.service-cta {
  padding: var(--space-3xl);
  border: 1px solid rgba(240, 180, 41, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(240, 180, 41, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(22, 27, 34, 0.96), rgba(13, 17, 23, 1));
}

.service-cta p {
  max-width: 44rem;
  margin: var(--space-md) auto var(--space-xl);
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .service-stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-band {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .use-cases,
  .maintenance-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ----------------------------------------------------------
   Utility Classes
   ---------------------------------------------------------- */

.divider { border: none; border-top: 1px solid var(--color-border); margin-block: var(--space-2xl); }

.text-left   { text-align: left; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

.text-primary   { color: var(--color-text-primary); }
.text-muted     { color: var(--color-text-secondary); }
.text-accent    { color: var(--color-accent); }
.text-gold      { color: var(--color-gold); }
.text-success   { color: var(--color-success); }
.text-error     { color: var(--color-error); }

.font-regular  { font-weight: var(--weight-regular); }
.font-medium   { font-weight: var(--weight-medium); }
.font-semibold { font-weight: var(--weight-semibold); }
.font-bold     { font-weight: var(--weight-bold); }

.hidden { display: none; }
.block  { display: block; }
.flex   { display: flex; }

.mt-auto { margin-top: auto; }
.mx-auto { margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border-width: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-accent);
  color: white;
  font-weight: var(--weight-semibold);
  border-radius: 0 0 var(--radius) 0;
  z-index: var(--z-toast);
  transition: top var(--transition-fast);
}

.skip-link:focus { top: 0; }

::selection {
  background-color: var(--color-accent-light);
  color: var(--color-text-primary);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg-alt); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.25); }

@media (min-width: 1024px) {
  :root {
    --section-padding-y: 6rem;
    --section-padding-x: 2rem;
  }
}

@media print {
  .site-header, .nav-toggle, .nav-menu, .mobile-cta-btn { display: none; }
}
