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

:root {
  --bg:        #1e2028;
  --bg-card:   #262830;
  --bg-nav:    #1a1c23;
  --text:      #c8cad0;
  --text-dim:  #8a8d96;
  --heading:   #e4e6eb;
  --accent:    #b8993e;
  --accent-h:  #d4b254;
  --border:    #33363f;
  --max-w:     960px;
  --nav-h:     56px;
  --font:      "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:      "JetBrains Mono", "Fira Code", "Consolas", monospace;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  color: var(--heading);
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 1.75rem; margin-bottom: 1rem; }
h2 { font-size: 1.35rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.1rem;  margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--accent-h);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover { color: var(--heading); }

code, .mono {
  font-family: var(--mono);
  font-size: 0.9em;
}

/* ===== NAVIGATION ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

nav .nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

nav .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  margin-left: -1.5rem;
}

.logo-img {
  height: 32px;
  width: auto;
}

nav .nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-left: auto;
}

nav .nav-links a {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

nav .nav-links a:hover,
nav .nav-links a.active {
  color: var(--heading);
  border-bottom-color: var(--accent);
}

/* Mobile nav toggle */
nav .nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
  padding: 0.25rem;
}

/* ===== LAYOUT ===== */
main {
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}

main.main-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* When hero-band or showcase-band precedes main, reduce top padding */
.hero-band + main,
.showcase-band + main {
  padding-top: 1rem;
  padding-bottom: 6rem;
}

.section {
  margin-bottom: 3rem;
}

.section:last-child {
  margin-bottom: 0;
}

/* ===== HERO ===== */
.hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 3.5rem;
}

.hero-elevated {
  position: relative;
  background: rgba(0, 0, 0, 0.15);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-elevated + .section-full::before {
  display: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 720px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero .subtitle {
  font-size: 1rem;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.hero .cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero illustration */
.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-h);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-h);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--heading);
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 820px) {
  .card-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  transition: border-color 0.15s;
}

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

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 0;
}

.card .tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent-h);
  font-family: var(--mono);
  margin-bottom: 0.75rem;
}

/* ===== PILLARS / FEATURES ===== */
.pillar-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pillar-list { grid-template-columns: 1fr 1fr; }
}

.pillar-list li {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.pillar-list li strong {
  display: block;
  color: var(--heading);
  margin-bottom: 0.25rem;
}

.pillar-list li span {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ===== TABLE ===== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.spec-table th {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.spec-table td {
  color: var(--text);
}

/* ===== CASE STUDY DETAIL ===== */
.case-heading {
  display: inline-block;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 1.25rem;
}

.case-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.case-meta div {
  font-size: 0.85rem;
}

.case-meta .label {
  color: var(--accent);
  display: block;
  font-size: 0.75rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

/* ===== INSIGHTS / BLOG ===== */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.article-item {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.15s;
}

.article-item:hover {
  border-color: var(--accent);
}

.article-item .date {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--mono);
  margin-bottom: 0.4rem;
}

.article-item h3 {
  margin-bottom: 0.4rem;
}

.article-item h3 a {
  color: var(--heading);
}

.article-item p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 0;
}

/* Article page */
.article-body {
  max-width: 680px;
}

.article-body h1 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.article-body .meta {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-family: var(--mono);
}

.article-body h2 {
  margin-top: 2rem;
}

.article-body ul, .article-body ol {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.article-body li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin: 1.25rem 0;
  color: var(--text-dim);
  font-style: italic;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-block h3 {
  margin-bottom: 0.5rem;
}

.contact-block p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.contact-block a {
  font-family: var(--mono);
  font-size: 0.9rem;
}

/* ===== LEGAL ===== */
.legal-content h2 {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  margin-top: 1.5rem;
}

.legal-content ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg-nav);
  padding: 2rem 1.5rem;
  margin-top: auto;
}

footer .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer .footer-left {
  font-size: 0.8rem;
  color: var(--text-dim);
}

footer .footer-left .company {
  color: var(--heading);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

footer .footer-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

footer .footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
}

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

/* ===== SEPARATOR ===== */
.sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* ===== SECTION FULL (homepage sections) ===== */
.section-full {
  margin-bottom: 0;
  padding-bottom: 4.5rem;
  padding-top: 4.5rem;
  position: relative;
}

.section-full::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 8px;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 153, 62, 0.12) 0%, transparent 70%);
}

.section-full:first-of-type {
  padding-top: 3.5rem;
}

.hero + .section-full::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 8px;
  background: radial-gradient(ellipse at 50% 100%, rgba(184, 153, 62, 0.12) 0%, transparent 70%);
}

.section-full:last-child {
  padding-bottom: 0;
}

.section-full:last-child::after {
  display: none;
}

.section-elevated {
  position: relative;
}

.section-elevated::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: rgba(255, 255, 255, 0.02);
  z-index: -1;
  pointer-events: none;
}

/* Section headings */
.section-heading {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* ===== SERVICE SECTION HEADER (illustration + text) ===== */
.service-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-header-text {
  flex: 1;
  min-width: 0;
}

.service-header-text .section-heading {
  margin-bottom: 0.5rem;
  display: inline-block;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--accent);
}

.service-header-text .section-sub {
  margin-bottom: 0;
}

.service-header-illustration {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
}

.service-header-illustration svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  .service-header {
    gap: 1rem;
  }
  .service-header-illustration {
    width: 60px;
    height: 60px;
  }
}

/* ===== HERO BAND (video background) ===== */
.hero-band {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 4rem;
  box-shadow:
    0 8px 24px -4px rgba(0, 0, 0, 0.4),
    0 2px 6px -1px rgba(0, 0, 0, 0.25);
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 35, 0.82);
  z-index: 1;
}

.hero-band-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-band .hero-text {
  min-width: 0;
}

.hero-band h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-band .subtitle {
  font-size: 1rem;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.hero-band .cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

/* Hero pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.hero-pills span {
  display: inline-block;
  font-size: 0.72rem;
  font-family: var(--mono);
  font-weight: 500;
  color: var(--text);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-band {
    padding: 3rem 1rem 2.5rem;
  }
  .hero-band h1 {
    font-size: 1.8rem;
  }
}

/* Hero eyebrow */
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--mono);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

/* ===== 3-COLUMN COMPARISON ===== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 740px) {
  .compare-grid { grid-template-columns: 1fr 1.15fr 1fr; }
}

.compare-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s;
}

.compare-dim {
  opacity: 0.75;
}

.compare-highlight {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(184, 153, 62, 0.06) 0%, var(--bg-card) 100%);
  position: relative;
}

@media (min-width: 740px) {
  .compare-highlight {
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  }
}

.compare-header {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.compare-highlight .compare-header {
  color: var(--accent-h);
  border-bottom-color: rgba(184, 153, 62, 0.3);
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare-list li {
  font-size: 0.85rem;
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  line-height: 1.5;
}

.compare-pro {
  color: var(--text);
}

.compare-con {
  color: var(--text-dim);
}

.compare-neutral {
  color: var(--text-dim);
  opacity: 0.7;
}

.compare-pro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(184, 153, 62, 0.15);
  border: 1.5px solid var(--accent);
}

.compare-pro::after {
  content: "";
  position: absolute;
  left: 3.5px;
  top: 0.65rem;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid var(--accent-h);
  border-bottom: 1.5px solid var(--accent-h);
  transform: rotate(-45deg);
}

.compare-con::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-dim);
  font-weight: 400;
  font-size: 0.85rem;
}

.compare-neutral::before {
  content: "~";
  position: absolute;
  left: 2px;
  color: var(--text-dim);
  font-weight: 400;
  font-size: 0.95rem;
}

/* ===== PRODUCTION SHOWCASE (full-bleed with image bg) ===== */
.showcase-band {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.5rem;
  box-shadow:
    0 -8px 24px -4px rgba(0, 0, 0, 0.4),
    0 8px 24px -4px rgba(0, 0, 0, 0.4),
    inset 0 2px 6px -2px rgba(0, 0, 0, 0.3),
    inset 0 -2px 6px -2px rgba(0, 0, 0, 0.3);
}

.showcase-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.showcase-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 35, 0.9);
  z-index: 1;
}

.showcase-band-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.showcase-band .section-heading {
  color: var(--heading);
}

.showcase-band .section-sub {
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.showcase-band h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.showcase-band .subtitle {
  font-size: 1rem;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 1.25rem;
}

.showcase-band .showcase-card {
  background: rgba(38, 40, 48, 0.7);
  backdrop-filter: blur(4px);
  border-color: rgba(51, 54, 63, 0.6);
}

.showcase-band .process-timeline {
  background: rgba(51, 54, 63, 0.4);
}

.showcase-band .process-step {
  background: rgba(38, 40, 48, 0.5);
  backdrop-filter: blur(4px);
}

.showcase-band.showcase-band-compact {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.showcase-band.showcase-band-tall {
  padding-top: 11rem;
  padding-bottom: 11rem;
}

.showcase-band.showcase-band-tall + main {
  padding-top: 3rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 800px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.showcase-card:hover {
  border-color: var(--accent);
}

.showcase-number {
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--mono);
  color: var(--accent-h);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.showcase-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.3rem;
}

.showcase-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

/* ===== CAPABILITY CARDS ===== */
.capability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .capability-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 860px) {
  .capability-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.capability-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, transform 0.2s;
}

.capability-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.capability-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 153, 62, 0.08);
  border-radius: 8px;
  padding: 4px;
}

.capability-content {
  flex: 1;
  min-width: 0;
}

.capability-content h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.capability-content p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== PROCESS TIMELINE ===== */
.process-intro {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

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

.process-step {
  background: var(--bg-card);
  padding: 1.25rem 1rem;
  text-align: center;
  position: relative;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent-h);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--mono);
  margin-bottom: 0.5rem;
}

.process-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.25rem;
}

.process-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.process-details {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.process-details li {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}

.process-details li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.process-details li strong {
  color: var(--heading);
  font-weight: 600;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, rgba(184, 153, 62, 0.06), rgba(184, 153, 62, 0.01));
  border: 1px solid rgba(184, 153, 62, 0.18);
  border-radius: 10px;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.bottom-cta h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.bottom-cta p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  h1 { font-size: 1.5rem; }
  .hero h1 { font-size: 1.75rem; }
  .section-heading { font-size: 1.25rem; }
  main { padding: 2rem 1rem; }
  .hero-band + main { padding-top: 0.5rem; }
  .section-full { padding-top: 2.5rem; padding-bottom: 2.5rem; }

  .compare-col { padding: 1.25rem 1rem; }
  .compare-dim { opacity: 1; }

  .showcase-number { font-size: 1.6rem; }

  nav .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg-nav);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
  }

  nav .nav-links.open {
    display: flex;
  }

  nav .nav-toggle {
    display: block;
  }
}

/* ===== NO-COOKIES NOTE ===== */
@keyframes cookieNoteIn {
  0%   { opacity: 0; transform: translateX(-50%) translateY(1rem); }
  8%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  85%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(1rem); }
}

.no-cookies-note {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: cookieNoteIn 5s ease-out 1s both;
}

.no-cookies-note span {
  white-space: nowrap;
}

.no-cookies-note button {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1rem;
  cursor: pointer;
  padding: 0 0.15rem;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.no-cookies-note button:hover {
  opacity: 1;
  color: var(--accent);
}

@media (max-width: 480px) {
  .no-cookies-note {
    font-size: 0.72rem;
    bottom: 1rem;
  }
}

/* ===== TEAM (About page) ===== */
.team-member {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
}

.team-video {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
}

.team-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info h3 {
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.about-office-img {
  width: 100%;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

@media (max-width: 640px) {
  .team-member {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .team-video {
    margin: 0 auto;
  }
}
