/* ================================================================
   Cross & Mouro Advisory — Global Stylesheet
   Based on geraldcroes.nl stijlgids · Version 1.0
   ================================================================ */

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

/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
  --primary:      #172645;
  --primary-deep: #0f1c33;
  --accent:       #C38822;
  --accent-mid:   #d4962a;
  --accent-light: rgba(195,136,34,0.12);
  --bg:           #F9FAFB;
  --fg:           #171C26;
  --muted:        #EDF0F2;
  --muted-text:   #657081;
  --card:         #FFFFFF;
  --off-white:    #F5F4F0;
  --border:       #DCE0E5;
  --radius:       8px;
  --radius-lg:    12px;
  --shadow-card:  0 4px 24px -4px rgba(23,28,38,0.10);
  --shadow-hover: 0 8px 36px -6px rgba(23,28,38,0.16);
  --transition:   0.22s cubic-bezier(.4,0,.2,1);
  --max-w:        1160px;
  --max-w-text:   720px;
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font-family: inherit; }

/* ================================================================
   TYPOGRAPHY SCALE  (exact stijlgids)
   ================================================================ */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h3, .h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}
h4, .h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}
p, .body { font-size: 16px; line-height: 1.7; color: var(--fg); }
.body-lg { font-size: 18px; line-height: 1.7; }
.body-sm { font-size: 14px; line-height: 1.65; color: var(--muted-text); }
.overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ================================================================
   LAYOUT UTILITIES
   ================================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.container-text {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-sm { padding: clamp(40px, 6vw, 72px) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ================================================================
   HEADER / NAV
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(23,38,69,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(195,136,34,0.18);
  height: 68px;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; flex-shrink: 0;
}
.header-monogram {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.header-monogram span {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600; color: #fff;
}
.header-brand { display: flex; flex-direction: column; line-height: 1.1; }
.header-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 600; color: var(--off-white);
}
.header-tagline {
  font-size: 9px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
}
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-size: 13px; font-weight: 400;
  color: rgba(245,244,240,0.62);
  text-decoration: none;
  transition: color var(--transition);
}
.header-nav a:hover,
.header-nav a.active { color: var(--off-white); }
.btn-nav {
  background: var(--accent); color: #fff !important;
  border: none; border-radius: 7px;
  padding: 8px 20px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-nav:hover { background: var(--accent-mid); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--off-white); border-radius: 2px; transition: var(--transition); }
.mobile-nav {
  display: none; position: fixed; inset: 68px 0 0 0;
  background: var(--primary); z-index: 99;
  flex-direction: column; padding: 32px 28px; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 18px; font-weight: 400; color: rgba(245,244,240,0.75);
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--off-white); }
.mobile-nav .btn-mobile-cta {
  margin-top: 20px; background: var(--accent); color: #fff;
  text-align: center; border-radius: 9px; padding: 16px;
  font-size: 16px; font-weight: 500;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-block; background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius); padding: 16px 36px;
  font-size: 16px; font-weight: 500; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px -4px rgba(195,136,34,0.38);
}
.btn-primary:hover {
  background: var(--accent-mid); transform: translateY(-2px);
  box-shadow: 0 8px 28px -4px rgba(195,136,34,0.44);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  display: inline-block; background: var(--primary); color: var(--off-white);
  border: none; border-radius: var(--radius); padding: 14px 32px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.btn-secondary:hover { background: var(--primary-deep); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary); border-radius: var(--radius);
  padding: 13px 28px; font-size: 15px; font-weight: 400; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover { background: var(--muted); }
.btn-ghost-white {
  display: inline-block; background: transparent; color: var(--off-white);
  border: 1.5px solid rgba(245,244,240,0.35); border-radius: var(--radius);
  padding: 13px 28px; font-size: 15px; font-weight: 400; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,244,240,0.6); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ================================================================
   CARDS
   ================================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card-surface {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-dark {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--off-white);
}
.card-accent-border { border-left: 4px solid var(--accent); }

/* ================================================================
   BADGES
   ================================================================ */
.badge {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
}
.badge-accent { background: var(--accent-light); color: #7a5010; }
.badge-primary { background: rgba(23,38,69,0.09); color: var(--primary); }
.badge-muted { background: var(--muted); color: var(--muted-text); }

/* ================================================================
   SECTION HEADER PATTERN
   ================================================================ */
.section-header { margin-bottom: clamp(36px, 5vw, 56px); }
.section-header.center { text-align: center; }
.section-header .overline { margin-bottom: 10px; display: block; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 17px; color: var(--muted-text); max-width: 560px; line-height: 1.7; }
.section-header.center p { margin: 0 auto; }

/* ================================================================
   HERO (shared)
   ================================================================ */
.hero {
  background: var(--primary);
  padding: clamp(72px,10vw,120px) clamp(20px,5vw,60px) clamp(60px,8vw,100px);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 90% at 60% 100%, rgba(195,136,34,0.11) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative; z-index: 1;
}
.hero .overline {
  display: inline-block;
  background: rgba(195,136,34,0.12);
  border: 1px solid rgba(195,136,34,0.28);
  border-radius: 4px; padding: 4px 14px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--off-white); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(245,244,240,0.68); line-height: 1.7;
  margin-bottom: 34px; max-width: 580px;
}
.hero-pills {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.10);
}
.hero-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(245,244,240,0.55);
}
.hero-pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.hero-photo-wrap { position: relative; }
.hero-photo-wrap img {
  border-radius: var(--radius-lg);
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: grayscale(20%);
}
.hero-photo-deco {
  position: absolute; bottom: -18px; right: -18px;
  width: 60%; height: 60%;
  border: 2px solid rgba(195,136,34,0.3);
  border-radius: var(--radius-lg); z-index: -1;
}

/* ================================================================
   STAT / METRIC STRIPS
   ================================================================ */
.stat-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stat-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 600;
  color: var(--primary); line-height: 1;
}
.stat-label { font-size: 13px; color: var(--muted-text); margin-top: 5px; }

/* ================================================================
   PROBLEM SECTION (3-column pain cards)
   ================================================================ */
.pain-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(195,136,34,0.18);
  border-radius: var(--radius-lg); padding: 28px 26px;
}
.pain-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(195,136,34,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pain-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pain-card h4 { color: var(--off-white); margin-bottom: 8px; font-size: 16px; }
.pain-card p { font-size: 14px; color: rgba(245,244,240,0.6); line-height: 1.65; }

/* ================================================================
   STEP / PROCESS
   ================================================================ */
.steps-wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps-wrap::before {
  content: '';
  position: absolute; top: 26px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 2px; background: linear-gradient(90deg, var(--accent) 0%, rgba(195,136,34,0.2) 100%);
  z-index: 0;
}
.step-item { text-align: center; padding: 0 16px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600; color: var(--accent);
  position: relative; z-index: 1;
}
.step-item h4 { font-size: 16px; margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--muted-text); line-height: 1.6; }

/* ================================================================
   REPORT SECTION
   ================================================================ */
.report-mock {
  background: var(--primary);
  border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid rgba(195,136,34,0.2);
}
.report-mock-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.report-mock-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px; color: var(--off-white);
}
.report-mock-date { font-size: 11px; color: rgba(245,244,240,0.4); }
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
.kpi-card {
  background: rgba(255,255,255,0.06);
  border-radius: 8px; padding: 12px 14px;
}
.kpi-label { font-size: 9px; color: rgba(245,244,240,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.kpi-value { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--off-white); }
.kpi-delta { font-size: 10px; font-weight: 500; }
.kpi-delta.pos { color: #81c784; }
.kpi-delta.neg { color: #ef9a9a; }
.bar-row { margin-bottom: 10px; }
.bar-label { display: flex; justify-content: space-between; font-size: 11px; color: rgba(245,244,240,0.5); margin-bottom: 4px; }
.bar-track { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 3px; background: var(--accent); }

/* ================================================================
   FOUNDERS
   ================================================================ */
.founder-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.founder-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: grayscale(15%);
  display: block;
}
.founder-info { padding: 24px 26px; }
.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; color: var(--primary); margin-bottom: 2px;
}
.founder-role { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.founder-bio { font-size: 14px; color: var(--muted-text); line-height: 1.7; margin-bottom: 16px; }
.founder-credentials { display: flex; flex-wrap: wrap; gap: 6px; }

/* ================================================================
   PRICING
   ================================================================ */
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 40px -8px rgba(195,136,34,0.22);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 4px; white-space: nowrap;
}
.price-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 600; color: var(--primary); line-height: 1;
}
.price-period { font-size: 14px; color: var(--muted-text); margin-bottom: 20px; margin-top: 4px; }
.price-desc { font-size: 14px; color: var(--muted-text); line-height: 1.65; margin-bottom: 24px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--fg); padding: 7px 0;
  border-bottom: 1px solid var(--muted);
}
.price-features li:last-child { border-bottom: none; }
.price-check { color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-size: 16px; font-weight: 500; color: var(--primary);
  gap: 16px;
  user-select: none;
}
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--muted); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--accent); transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-answer {
  display: none; padding: 0 0 20px;
  font-size: 15px; color: var(--muted-text); line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--primary);
  padding: clamp(64px,9vw,112px) clamp(20px,5vw,60px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(195,136,34,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { color: var(--off-white); margin-bottom: 14px; }
.cta-section p { color: rgba(245,244,240,0.65); font-size: 17px; max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }

/* ================================================================
   CONTACT FORM
   ================================================================ */
.form-section { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(32px,4vw,48px); box-shadow: var(--shadow-card); }
.field-group { margin-bottom: 18px; }
.field-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
label.field-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-text); margin-bottom: 6px; }
.field-input {
  width: 100%; padding: 12px 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 15px; color: var(--fg);
  outline: none; -webkit-appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(195,136,34,0.13);
}
textarea.field-input { resize: vertical; min-height: 110px; }
.form-submit-wrap { margin-top: 6px; }
.form-note { font-size: 12px; color: var(--muted-text); margin-top: 10px; }
.alert-success { background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: var(--radius); padding: 14px 18px; color: #1b5e20; font-size: 14px; margin-bottom: 18px; }
.alert-error { background: #fce8e8; border: 1px solid #ef9a9a; border-radius: var(--radius); padding: 14px 18px; color: #7f0000; font-size: 14px; margin-bottom: 18px; }

/* ================================================================
   TESTIMONIAL / QUOTE
   ================================================================ */
.quote-block {
  background: var(--off-white);
  border-radius: var(--radius-lg); padding: 32px 32px 28px;
  border-left: 4px solid var(--accent);
  position: relative;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 64px; color: var(--accent); line-height: 0.6;
  margin-bottom: 16px; display: block;
}
.quote-text { font-family: 'Playfair Display', serif; font-size: 18px; font-style: italic; color: var(--primary); line-height: 1.55; margin-bottom: 16px; }
.quote-author { font-size: 13px; color: var(--muted-text); font-weight: 500; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--primary-deep);
  padding: clamp(48px,6vw,80px) 0 32px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px,4vw,56px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-brand { }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-mono {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-mid));
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mono span { font-family: 'Playfair Display', serif; font-size: 15px; color: #fff; font-weight: 600; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--off-white); }
.footer-tagline { font-size: 9px; color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase; }
.footer-desc { font-size: 13px; color: rgba(245,244,240,0.45); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(245,244,240,0.5); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--off-white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(245,244,240,0.5); margin-bottom: 10px; }
.footer-contact-item a { color: rgba(245,244,240,0.5); text-decoration: none; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(245,244,240,0.3);
}
.footer-bottom a { color: rgba(245,244,240,0.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(245,244,240,0.6); }

/* ================================================================
   UTILITY
   ================================================================ */
.divider { border: none; border-top: 1px solid var(--border); }
.mt-4 { margin-top: 4px; }
.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; }
.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; }
.bg-primary { background: var(--primary); }
.bg-muted   { background: var(--muted); }
.bg-off-white { background: var(--off-white); }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--muted-text); }
.text-white   { color: var(--off-white); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-wrap { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .steps-wrap::before { display: none; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-photo-wrap { display: none; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .field-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-wrap { grid-template-columns: 1fr; }
  .stat-strip-inner { grid-template-columns: repeat(2,1fr); }
  .btn-group { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-ghost, .btn-ghost-white { text-align: center; }
}

/* ================================================================
   SCROLLENDE CLIENTS BANNER
   ================================================================ */
.clients-banner {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
}
.clients-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-text);
  text-align: center;
  margin-bottom: 18px;
}
.clients-track-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollLeft 34s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
.clients-item {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
  opacity: 0.65;
  white-space: nowrap;
  padding: 0 32px;
  position: relative;
  transition: opacity 0.2s;
}
.clients-item:hover { opacity: 1; }
.clients-item::after {
  content: '·';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 20px;
  opacity: 0.45;
}
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 4px 0;
    padding: 0 24px;
  }
}
