/* ================================================================
   Pellervo — Stylesheet v3
   Fonts: Raleway + Inter (Google Fonts via <link> in HTML)
   Icons: Font Awesome 6 (cdnjs)
   Palette: Charcoal #1A1A2E · Red #C41E3A · Grey · White
   ================================================================ */

:root {
  --red:          #C41E3A;
  --red-dark:     #A3172F;
  --red-glow:     rgba(196,30,58,0.12);
  --charcoal:     #1A1A2E;
  --charcoal-mid: #2D2D45;
  --grey-dark:    #3D3D55;
  --grey-text:    #5A5A72;
  --grey-light:   #9898AE;
  --bg-light:     #F6F7FA;
  --bg-white:     #FFFFFF;
  --border:       #E4E6F0;
  --border-soft:  #ECEEF5;
  --shadow-xs:    0 1px 4px rgba(26,26,46,0.06);
  --shadow-sm:    0 3px 14px rgba(26,26,46,0.09);
  --shadow-md:    0 8px 32px rgba(26,26,46,0.13);
  --radius:       10px;
  --radius-sm:    6px;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }
h1, h2, h3, h4 {
  font-family: 'Raleway', 'Trebuchet MS', 'Segoe UI', Arial, sans-serif;
  line-height: 1.2;
  color: var(--charcoal);
}

/* ── Navigation ──────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-menu li a {
  color: var(--grey-text);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-menu li a:hover { color: var(--charcoal); background: var(--bg-light); }
.nav-menu li a.active { color: var(--charcoal); }

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--bg-white) !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta-btn:hover {
  background: var(--red-dark) !important;
  color: var(--bg-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,30,58,0.30) !important;
}

/* ── Layout helpers ──────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }
.section-light { background: var(--bg-light); }
.section-dark  { background: var(--charcoal); }

/* ── Eyebrow / label ─────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Typography ──────────────────────────────────── */
.display {
  font-family: 'Raleway', 'Trebuchet MS', Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 0.9rem;
}

h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 0.5rem; }

.lead {
  font-size: 1.05rem;
  color: var(--grey-text);
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 2.8rem;
}

.text-red { color: var(--red); }
.text-muted { color: var(--grey-text); }
.text-white { color: var(--bg-white) !important; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--bg-white);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,30,58,0.32);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.10);
  color: var(--bg-white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.65);
  color: var(--bg-white);
  transform: translateY(-1px);
}

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

.btn-white {
  background: var(--bg-white);
  color: var(--red);
}
.btn-white:hover {
  background: #F0F0F8;
  color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

/* Dot-grid background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Red accent corner glow */
.hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,30,58,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
}

.hero-content .display { color: var(--bg-white); margin-bottom: 1.5rem; }
.hero-content .display em { color: var(--red); font-style: normal; }
.hero-content .lead { color: rgba(255,255,255,0.65); max-width: 540px; margin-bottom: 2.5rem; }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-trust {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.trust-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.trust-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.60);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Hero illustration panel */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.hero-card-header {
  background: rgba(196,30,58,0.15);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.hero-card-body { padding: 24px 20px; }

.hero-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-metric:last-child { border-bottom: none; }

.hm-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  display: flex;
  align-items: center;
  gap: 9px;
}

.hm-label i { color: var(--red); width: 14px; text-align: center; }

.hm-value {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-white);
}

.hm-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(0,200,100,0.15);
  color: #4DEBA0;
}

.hm-badge.red {
  background: rgba(196,30,58,0.20);
  color: #FF6B8A;
}

/* ── Stats band ──────────────────────────────────── */
.stats-band {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-soft);
  padding: 0;
}

.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 44px 0 44px 40px;
  border-right: 1px solid var(--border-soft);
  transition: background 0.2s;
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-light); }

.stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--grey-text);
  font-weight: 500;
  line-height: 1.4;
  max-width: 150px;
}

/* ── Section header ──────────────────────────────── */
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.7rem; }
.section-header .lead { margin-bottom: 0; }

/* ── Cards ───────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--red-glow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.25rem;
  color: var(--red);
  transition: background 0.2s, transform 0.2s;
}

.card:hover .card-icon-wrap { background: var(--red); color: var(--bg-white); transform: scale(1.05); }

.card h3 { margin-bottom: 0.7rem; }
.card p { color: var(--grey-text); font-size: 0.93rem; line-height: 1.7; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.3rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-link i { font-size: 0.7rem; transition: transform 0.2s; }
.card:hover .card-link i { transform: translateX(4px); }

/* Number badge on cards */
.card-number {
  position: absolute;
  top: 1.5rem; right: 1.8rem;
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--bg-light);
  line-height: 1;
  pointer-events: none;
  transition: color 0.2s;
}
.card:hover .card-number { color: var(--border-soft); }

/* ── Two-column ──────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col-reverse { grid-template-columns: 1fr 1fr; }

/* ── Process steps ───────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%;
  width: 80%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.15rem;
  color: var(--grey-light);
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}

.step:hover .step-circle {
  border-color: var(--red);
  background: var(--red);
  color: var(--bg-white);
  transform: scale(1.08);
}

.step h3 { font-size: 0.97rem; margin-bottom: 0.5rem; }
.step p { color: var(--grey-text); font-size: 0.86rem; line-height: 1.6; }

/* ── Service blocks ──────────────────────────────── */
.service-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.2s;
}

.service-item:last-child { border-bottom: none; }

.service-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--red-glow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 1.05rem;
  margin-top: 2px;
  transition: background 0.2s, color 0.2s;
}

.service-item:hover .service-item-icon { background: var(--red); color: var(--bg-white); }

.service-item-body h3 { font-size: 0.97rem; margin-bottom: 0.4rem; }
.service-item-body p { color: var(--grey-text); font-size: 0.9rem; line-height: 1.65; }

/* ── Results / Case study ────────────────────────── */
.results-panel {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 3rem 3.5rem;
  margin-top: 3rem;
}

.results-panel h3 { color: var(--bg-white); font-size: 1.1rem; margin-bottom: 0.6rem; }
.results-panel p { color: rgba(255,255,255,0.60); font-size: 0.9rem; margin-bottom: 2rem; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.result-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.5rem;
}

.result-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}

.result-label {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ── Quote / testimonial ─────────────────────────── */
.quote-card {
  background: var(--bg-light);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
}

.quote-card blockquote {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
}

.quote-card cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--grey-light);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ── KPI stack ───────────────────────────────────── */
.kpi-stack {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.kpi-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.2s;
}

.kpi-item:last-child { border-bottom: none; }
.kpi-item:hover { background: var(--bg-light); }

.kpi-num {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  min-width: 72px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.kpi-label {
  font-size: 0.88rem;
  color: var(--grey-text);
  line-height: 1.45;
}

/* ── Industries ──────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }

.tag {
  background: var(--bg-light);
  color: var(--grey-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.tag:hover { border-color: var(--red); color: var(--red); background: var(--red-glow); }

/* ── Page hero (inner pages) ─────────────────────── */
.page-hero {
  background: var(--charcoal);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
}

.page-hero .eyebrow { color: rgba(255,255,255,0.45); }
.page-hero .eyebrow::before { background: rgba(255,255,255,0.30); }

.page-hero h1 {
  color: var(--bg-white);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-hero p { color: rgba(255,255,255,0.60); max-width: 600px; font-size: 1.05rem; }

/* ── CTA banner ──────────────────────────────────── */
.cta-band {
  background: var(--red);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -80px;
  width: 460px; height: 460px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--bg-white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.02rem; }
.cta-band-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Contact ─────────────────────────────────────── */
.contact-split { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 1.8rem;
}

.contact-block:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-icon {
  width: 44px; height: 44px;
  background: var(--red-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 1.05rem;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-light);
  margin-bottom: 0.3rem;
}

.contact-value { font-size: 0.95rem; color: var(--charcoal); line-height: 1.6; }
.contact-value a { color: var(--charcoal); }
.contact-value a:hover { color: var(--red); }

/* ── Form ────────────────────────────────────────── */
.form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--grey-text);
}

input, textarea, select {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--charcoal);
  background: var(--bg-light);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--red);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.09);
}

textarea { resize: vertical; min-height: 140px; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A72' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.40);
  padding: 56px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-logo img { height: 30px; filter: brightness(0) invert(1); opacity: 0.80; margin-bottom: 1rem; }
.footer-desc { font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.38); max-width: 200px; }

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.40); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--bg-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.80rem;
}

.footer-bottom a { color: rgba(255,255,255,0.40); }
.footer-bottom a:hover { color: var(--bg-white); }

/* ── Divider ─────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border-soft); }

/* ── Note / alert ────────────────────────────────── */
.note {
  display: flex;
  gap: 1rem;
  padding: 1.4rem 1.8rem;
  background: var(--red-glow);
  border: 1px solid rgba(196,30,58,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.90rem;
  color: var(--grey-dark);
  align-items: flex-start;
}

.note i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.note strong { color: var(--charcoal); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps-grid::before { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: span 2; }
}

@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border-soft); }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-menu { gap: 0; }
  .nav-menu li a { padding: 5px 8px; font-size: 0.75rem; }
  section { padding: 64px 0; }
  .hero { min-height: auto; padding: 72px 0 64px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}
