/* ============================================================
   THE FRENCH SEQUENCE® — style.css
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Inter:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --background: #0f0f0f;
  --foreground: #f7f7f7;
  --silver: #b8b8b8;
  --muted-foreground: #9e9e9e;
  --secondary: #1f1f1f;
  --border: rgba(255, 255, 255, 0.1);
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

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

/* --- Layout --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

/* --- Typography helpers --- */
.serif { font-family: var(--font-serif); }
.text-silver { color: var(--silver); }
.text-muted { color: var(--muted-foreground); }
.italic { font-style: italic; }
.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}
.label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

/* --- Grain overlay --- */
.grain {
  position: relative;
}
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.4;
  z-index: 1;
}
.grain > * {
  position: relative;
  z-index: 2;
}

/* --- Hero background --- */
.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(50,50,50,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(30,30,30,0.6) 0%, transparent 50%),
    linear-gradient(180deg, #0f0f0f, #0a0a0a);
}

/* --- Divider --- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  margin: 3rem 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 2.5rem;
  }
}

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

.header-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a:hover {
  color: var(--foreground);
  transition: color 0.2s;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid rgba(247,247,247,0.3);
  padding: 0.75rem 1.25rem;
  border-radius: 2px;
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }
}

.header-cta:hover {
  border-color: var(--foreground);
  background: var(--foreground);
  color: var(--background);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  font-family: var(--font-sans);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.mobile-menu.open {
  display: flex;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.hero-glow {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: 25%;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  filter: blur(120px);
}

.hero-glow-2 {
  position: absolute;
  bottom: 25%;
  right: -5rem;
  width: 31rem;
  height: 31rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  filter: blur(140px);
}

.hero-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 1.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-inner {
    padding: 8rem 2.5rem;
  }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 75rem;
}

.hero-sub {
  margin-top: 2.5rem;
  max-width: 42rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-sub {
    font-size: 1.125rem;
  }
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--foreground);
  color: var(--background);
  padding: 1rem 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.2s;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--silver);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(247,247,247,0.2);
  padding: 1rem 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: rgba(247,247,247,0.6);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(247,247,247,0.3);
  padding: 1rem 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.2s;
}

.btn-outline-light:hover {
  background: var(--foreground);
  color: var(--background);
}

.btn-large {
  padding: 1.25rem 2.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll span {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--muted-foreground);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-track img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.4) contrast(0.9);
  opacity: 0.7;
  transition: opacity 0.3s;
}

@media (min-width: 768px) {
  .marquee-track img {
    height: 3rem;
  }
}

.marquee-track img:hover {
  opacity: 1;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Verticals marquee */
.verticals-strip {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.verticals-row {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0;
  animation: marquee 40s linear infinite;
}

.verticals-row.reverse {
  animation-direction: reverse;
}

.verticals-row span {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: rgba(184,184,184,0.4);
  padding: 0 1.5rem;
  white-space: nowrap;
}

.verticals-row .dot {
  color: rgba(184,184,184,0.2);
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  padding: 8rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 12rem 0;
  }
}

.section-sm {
  padding: 5rem 0;
}

.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-y {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bg-secondary { background: rgba(31,31,31,0.3); }

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.section-label-silver {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--silver);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-title-lg {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ============================================================
   GRID CARDS (bg-border pattern)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 5rem;
}

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

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

.card {
  background: var(--background);
  padding: 2.5rem;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.card-number {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--silver);
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

/* ============================================================
   CASE STUDIES LIST
   ============================================================ */
.studies-list {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.study-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 0.5rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}

.study-row:last-child {
  border-bottom: none;
}

.study-row:hover {
  background: rgba(255,255,255,0.02);
}

.study-num {
  grid-column: span 2;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--silver);
}

@media (min-width: 768px) {
  .study-num { grid-column: span 1; }
}

.study-cat {
  grid-column: span 10;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .study-cat { grid-column: span 3; }
}

.study-client {
  grid-column: span 12;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 768px) {
  .study-client { grid-column: span 6; }
}

.study-cta {
  grid-column: span 12;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: right;
  opacity: 0.6;
  transition: opacity 0.2s;
}

@media (min-width: 768px) {
  .study-cta { grid-column: span 2; }
}

.study-row:hover .study-cta {
  opacity: 1;
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--silver);
  margin-bottom: 0.75rem;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* ============================================================
   IMAGE helpers
   ============================================================ */
.img-grayscale {
  filter: grayscale(100%);
}

.aspect-4-5 {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.aspect-3-4 {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.aspect-21-9 {
  aspect-ratio: 21/9;
  overflow: hidden;
}

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

/* ============================================================
   TWO-COLUMN GRID
   ============================================================ */
.col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .col-grid-12 {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
  .col-5 { grid-column: span 5; }
  .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; }
}

/* ============================================================
   MANIFESTE / TEXT SECTIONS
   ============================================================ */
.manifeste-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 5rem;
  max-width: 62rem;
}

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

.manifeste-grid p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  text-align: center;
  max-width: 68rem;
  margin: 0 auto;
}

.testimonial-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.3;
}

.testimonial-author {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--silver);
}

/* ============================================================
   FOUNDER BLOCKQUOTE
   ============================================================ */
.founder-quote {
  border-left: 2px solid var(--silver);
  padding-left: 1.5rem;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: rgba(247,247,247,0.9);
  margin-top: 2rem;
}

/* ============================================================
   PLATFORMS
   ============================================================ */
.platforms-note {
  margin-top: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .platforms-note { padding: 0 2.5rem; }
}

.platforms-note .label { margin-bottom: 1.5rem; }

.platforms-note p {
  font-size: 0.875rem;
  color: var(--silver);
}

/* ============================================================
   CTA HERO SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 0.3;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), rgba(15,15,15,0.8) 60%, rgba(15,15,15,0.6));
}

.cta-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .cta-inner { padding: 0 2.5rem; }
}

.cta-inner h2 {
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 1;
  max-width: 62rem;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--background);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
  .footer-inner { padding: 5rem 2.5rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 5fr 3fr 4fr;
  }
}

.footer-logo img {
  height: 6rem;
  width: auto;
}

.footer-logo p {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 25rem;
  line-height: 1.75;
}

.footer-nav-title,
.footer-contact-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--silver);
  transition: color 0.2s;
}

.footer-contact a {
  font-size: 0.875rem;
  display: block;
}

.footer-contact .city {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1.5rem;
}

.footer-links a:hover {
  color: var(--foreground);
  transition: color 0.2s;
}

/* ============================================================
   HERO MINI (sub-pages)
   ============================================================ */
.page-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-top: 1.5rem;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 68rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
  .legal-content { padding: 4rem 2.5rem; }
}

.legal-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.legal-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1.5rem;
}

.legal-section p {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 48rem;
}

.legal-section p strong {
  color: var(--foreground);
}

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

.legal-footer {
  margin-top: 3rem;
  text-align: center;
  color: var(--muted-foreground);
}

.legal-footer .serif {
  font-size: 1.5rem;
  color: var(--foreground);
}

/* --- Cookie table --- */
.cookie-table {
  width: 100%;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-collapse: collapse;
  overflow-x: auto;
}

.cookie-table th {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--secondary);
  color: var(--foreground);
}

.cookie-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.cookie-table-wrap {
  overflow-x: auto;
}

/* ============================================================
   CASE STUDY PAGE
   ============================================================ */
.case-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}

.case-hero h1 {
  margin-top: 2rem;
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 1;
  max-width: 62rem;
}

.case-hero .back {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.case-hero .back:hover {
  color: var(--foreground);
}

.case-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--silver);
  margin-top: 3rem;
}

.case-meta span.line {
  display: block;
  width: 3rem;
  height: 1px;
  background: rgba(184,184,184,0.3);
}

.case-excerpt {
  margin-top: 2.5rem;
  max-width: 48rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.approach-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.approach-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--silver);
  flex-shrink: 0;
  width: 3rem;
}

.approach-text {
  font-size: 1rem;
  color: rgba(247,247,247,0.85);
  line-height: 1.75;
  padding-top: 0.5rem;
}

.results-card-value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.results-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--silver);
  margin-top: 1rem;
}

.next-study {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  transition: color 0.2s;
}

.next-study:hover {
  color: var(--silver);
}

.next-study-cat {
  margin-top: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

/* ============================================================
   LEAD GEN PAGE SPECIFICS
   ============================================================ */
.leadgen-grade {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--silver);
  margin-bottom: 1.5rem;
}

.process-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  align-items: center;
}

@media (min-width: 768px) {
  .process-row {
    grid-template-columns: 1fr 4fr 7fr;
  }
}

.process-row:last-child {
  border-bottom: none;
}

.process-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--silver);
}

.process-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.process-desc {
  color: var(--muted-foreground);
  font-size: 1rem;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin: 0 auto; }

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}
