/* ============================================================
   FCG CONSULTING — styles.css
   Warm Editorial Luxury — Cream · Forest Green · Amber
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --bg:            #ffffff;
  --bg-alt:        #f5f5f5;
  --bg-card:       #ffffff;
  --bg-dark:       #0b223a;
  --surface:       #ebebeb;
  --ink:           #191917;
  --green:         #0b223a;
  --green-light:   #3D3862;
  --green-deep:    #1E1B30;
  --green-dim:     rgba(47, 43, 73, 0.07);
  --green-line:    rgba(47, 43, 73, 0.18);
  --amber:         #0b223a;
  --amber-light:   #3D3862;
  --amber-deep:    #1E1B30;
  --amber-dim:     rgba(47, 43, 73, 0.10);
  --amber-line:    rgba(47, 43, 73, 0.25);
  --text:          #191917;
  --text-muted:    #5E5850;
  --text-dim:      #9A9490;
  --border:        rgba(25, 25, 23, 0.11);
  --border-light:  rgba(25, 25, 23, 0.06);
  --radius:        6px;
  --radius-lg:     14px;
  --max-w:         1160px;
  --nav-h:         64px;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:      cubic-bezier(0.0, 0, 0.2, 1);
  --shadow-sm:     0 1px 4px rgba(25,25,23,0.07), 0 1px 2px rgba(25,25,23,0.04);
  --shadow-md:     0 4px 20px rgba(25,25,23,0.09), 0 2px 8px rgba(25,25,23,0.05);
  --shadow-lg:     0 20px 64px rgba(25,25,23,0.13), 0 4px 16px rgba(25,25,23,0.07);
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
textarea { resize: vertical; }

/* --- Typography ------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.section-label::before { display: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.body-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* --- Layout ----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section {
  padding: 6rem 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-label::after { display: none; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(47, 43, 73, 0.28);
}
.btn-primary:active { background: var(--green-deep); transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-gold {
  background: var(--amber);
  color: #ffffff;
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47, 43, 73, 0.28);
}
.btn-gold:active { transform: translateY(0); }

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Scroll Progress Bar ---------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--green), var(--amber));
  z-index: 200;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* --- Navigation ------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(25, 25, 23, 0.09);
  border-bottom-color: var(--border);
}

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

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-btn-outline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-btn-outline:hover {
  border-color: #000;
  background: rgba(0,0,0,0.03);
}

.nav-btn-solid {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  background: #0b223a;
  border-radius: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-btn-solid:hover { background: #163657; }

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  max-width: none;
  display: block;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.nav-logo-text em {
  font-style: normal;
  color: var(--green);
  margin-left: 0.35rem;
  font-weight: 400;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #1a1a1a;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-chevron {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  margin-top: -1px;
  opacity: 0.5;
}

.nav-cta {
  padding: 0.65rem 1.5rem !important;
  background: var(--amber) !important;
  color: #ffffff !important;
  border-radius: var(--radius) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--amber-light) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(47, 43, 73, 0.3) !important;
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s ease;
}
.nav-mobile.open {
  max-height: 300px;
  padding: 1rem 0;
}

.mobile-link {
  display: block;
  padding: 0.9rem 2.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--ink); }
.mobile-cta { color: var(--amber) !important; font-weight: 700 !important; }

/* --- Hero -------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scrolling background grid */
.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 12px;
  padding: 0 6px;
  overflow: hidden;
}

.hero-bg-col {
  flex: 1;
  overflow: hidden;
}

.hero-bg-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: transform;
}

.hero-bg-track--up {
  animation: bgScrollUp var(--speed, 28s) linear infinite;
}

.hero-bg-track--down {
  animation: bgScrollDown var(--speed, 28s) linear infinite;
  transform: translateY(-50%);
}

@keyframes bgScrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes bgScrollDown {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* Background cards */
.hbc {
  border-radius: 12px;
  padding: 1.5rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
  overflow: hidden;
  position: relative;
}

.hbc--dark {
  background: #0b223a;
  color: #fff;
}

.hbc--light {
  background: #f5f5f5;
  color: #0b223a;
}

.hbc--mid {
  background: #1a3a5c;
  color: #fff;
}

.hbc--screenshot {
  padding: 0;
  min-height: 200px;
  background: #e8e4de;
}

.hbc--screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hbc-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(11,34,58,0.7));
}

.hbc--chart {
  background: #0f2d4a;
  color: #fff;
  justify-content: space-between;
  min-height: 180px;
}

.hbc--quote {
  background: #f5f5f5;
  color: #0b223a;
  min-height: 180px;
}

.hbc-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.hbc-num--sm {
  font-size: 2.2rem;
  color: #0b223a;
}

.hbc--light .hbc-num--sm { color: #0b223a; }

.hbc-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.4rem;
  color: inherit;
}

.hbc-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.5rem;
}

.hbc-copy {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: inherit;
}

.hbc-icon {
  font-size: 2rem;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.hbc-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #0b223a;
  opacity: 0.15;
  margin-bottom: 0.25rem;
}

.hbc-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  margin-bottom: 0.75rem;
}

.hbc-bars span {
  flex: 1;
  background: rgba(255,255,255,0.25);
  border-radius: 3px 3px 0 0;
  display: block;
}

/* Gradient scrim over background */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.08) 100%),
    linear-gradient(to right,  rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.75) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.05) 15%, rgba(255,255,255,0.05) 85%, rgba(255,255,255,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Center overlay card */
.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
  width: 100%;
  max-width: 680px;
  margin-top: var(--nav-h);
}

.hero-center-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 8px 60px rgba(11,34,58,0.18), 0 1px 0 rgba(255,255,255,0.8) inset;
  width: 100%;
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0b223a;
  margin-bottom: 1.75rem;
}

.hero-headline em {
  font-style: normal;
  color: #0b223a;
  text-decoration: underline;
  text-decoration-color: rgba(11,34,58,0.25);
  text-underline-offset: 6px;
}

/* Hero quote form */
.hero-quote-form {
  width: 100%;
}

.hero-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid rgba(11,34,58,0.15);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(11,34,58,0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-input-wrap:focus-within {
  border-color: #0b223a;
  box-shadow: 0 2px 20px rgba(11,34,58,0.14);
}

.hero-input-prefix {
  padding: 0 0 0 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #aaa;
  white-space: nowrap;
  user-select: none;
}

.hero-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1.05rem 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #0b223a;
  background: transparent;
  min-width: 0;
}

.hero-input::placeholder { color: #ccc; }

.hero-input-btn {
  flex-shrink: 0;
  background: #0b223a;
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  align-self: stretch;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.hero-input-btn:hover { background: #163657; }

.hero-input-subtext {
  margin-top: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: #aaa;
  letter-spacing: 0.02em;
}

/* Typewriter cursor */
.tw-cursor {
  display: inline-block;
  font-weight: 300;
  color: #0b223a;
  animation: twBlink 0.75s step-end infinite;
  margin-left: 2px;
}
@keyframes twBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-bottom-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11,34,58,0.45);
  text-align: center;
}

/* --- Mission ------------------------------------------------ */
.mission {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Decorative oversized quote mark */
.mission-inner::before {
  content: '\201C';
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}

.mission-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.mission-ornament-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--amber-line);
}

.mission-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.mission-divider {
  width: 40px;
  height: 1.5px;
  background: var(--amber);
  margin: 2rem auto;
  opacity: 0.6;
}

.mission-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* --- Services ---------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  transition: border-color 0.3s, box-shadow 0.35s, transform 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

/* Animated left-edge accent */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--green), var(--amber));
  transition: height 0.45s var(--ease);
  border-radius: 0 0 3px 0;
}

/* Top shimmer on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(47, 43, 73, 0.15);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover::after {
  opacity: 1;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--amber);
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.card-header .service-icon,
.card-header .process-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-icon {
  margin-bottom: 1.35rem;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.service-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-list li {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  padding-left: 1.1rem;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.45;
}

/* --- Stats -------------------------------------------------- */
.stats-section {
  background: var(--green) !important;
  padding: 7rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.stat-value {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  line-height: 1;
}

.stat-block + .stat-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.75rem, 4.5vw, 4.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-left: -0.1rem;
  align-self: flex-start;
  margin-top: 0.25rem;
}

.stat-block .stat-label {
  width: 100%;
  text-align: center;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.8rem;
}

/* --- Process (Grid) ---------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
}

.process-icon {
  margin-bottom: 1.35rem;
}

.process-phase {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0;
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* --- Pillars ----------------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
  position: relative;
}

/* Top edge reveal on hover */
.pillar::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--amber));
  border-radius: 0 0 2px 2px;
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left center;
}

.pillar:hover {
  border-color: rgba(47, 43, 73, 0.14);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--green-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background 0.3s, border-color 0.3s;
}

.pillar:hover .pillar-icon {
  background: rgba(47, 43, 73, 0.13);
  border-color: rgba(47, 43, 73, 0.28);
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.pillar-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.78;
}

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

.contact-info .section-label {
  margin-bottom: 1rem;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-divider {
  width: 40px;
  height: 1.5px;
  background: var(--amber-line);
  margin-bottom: 1.5rem;
}

.contact-promise {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.75;
}

.contact-promise strong {
  color: var(--text-muted);
}

/* --- Form -------------------------------------------------- */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.label-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.63rem;
  color: var(--text-dim);
  opacity: 0.7;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 43, 73, 0.09);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #c84040;
  box-shadow: 0 0 0 3px rgba(200, 64, 64, 0.09);
}

.form-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 1rem;
  text-align: center;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.success-check {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1.5px solid var(--green-line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Footer ------------------------------------------------- */
.footer {
  background: var(--green);
  border-top: none;
  padding: 1.5rem 0 1rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-logo-wrap {
  display: block;
}

.footer-logo-img {
  height: 88px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 1rem;
}

.footer-logo-text em {
  font-style: normal;
  color: var(--amber-light);
  margin-left: 0.35rem;
  font-weight: 400;
  font-size: 1.1rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
}

.footer-col-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.35rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-nav a:hover { color: #ffffff; }

.footer-contact-col p:not(.footer-col-title) {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  gap: 1rem;
}

/* --- Reveal animations ------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.pillars-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.pillars-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.pillars-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* --- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 0.9fr;
    gap: 3.5rem;
  }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; margin-left: auto; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-visual { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid .reveal { transition-delay: 0s !important; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block + .stat-block::before { display: none; }

  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid .reveal { transition-delay: 0s !important; }

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

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }


  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .section { padding: 5rem 0; }
  .container { padding: 0 1.5rem; }
  .hero-title { font-size: 3rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem; }
}

/* ============================================================
   ABOUT TEASER (index.html)
   ============================================================ */

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.about-teaser-content .section-title {
  margin-bottom: 1.25rem;
}

.about-teaser-content .body-text {
  margin-bottom: 2rem;
}

.about-teaser-pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-mini-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.about-mini-pillar .pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--green-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
}

.about-mini-pillar .pillar-title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.about-mini-pillar .pillar-body {
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 860px) {
  .about-teaser-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ============================================================
   ABOUT PAGE (about.html)
   ============================================================ */

.about-intro-section {
  padding-top: 6rem;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  align-items: start;
}

.about-intro-content .body-text + .body-text {
  margin-top: -0.5rem;
}

.about-companies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-company-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.about-company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--green-light));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}

.about-company-card:hover {
  border-color: rgba(47, 43, 73, 0.14);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-company-card:hover::before {
  transform: scaleX(1);
}

.company-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.company-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.company-desc {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 860px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 520px) {
  .about-companies-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* --- Page Hero (contact.html, work.html) ------------------- */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}

.page-hero-inner {
  max-width: 680px;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 540px;
}

/* --- CTA Banner -------------------------------------------- */
.cta-banner {
  background: var(--green) !important;
  padding: 4rem 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-banner-text .section-title {
  color: #ffffff;
}

.cta-banner-text .body-text {
  color: rgba(255, 255, 255, 0.6);
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cta-banner .btn-primary {
  background: #ffffff;
  color: var(--green);
}

.cta-banner .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.cta-banner .btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

.cta-banner .btn-ghost:hover {
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: 760px) {
  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

/* --- Contact Page ------------------------------------------ */
.contact-page-section {
  padding-top: 6rem;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--green-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}

.contact-info-value {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-what-to-expect {
  margin-bottom: 1.75rem;
}

.contact-expect-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.contact-expect-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-expect-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-expect-list li svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Select input */
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239A9490' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
}

.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 43, 73, 0.09);
}

/* --- Work Page --------------------------------------------- */
.work-case {
  padding: 7rem 0;
}

.work-case-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.work-case-alt .work-case-inner {
  direction: rtl;
}

.work-case-alt .work-case-content,
.work-case-alt .work-case-visual {
  direction: ltr;
}

.work-case-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.work-case-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--green);
  opacity: 0.2;
  line-height: 1;
}

.work-case-industry {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.work-case-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.work-case-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.work-services-delivered {
  margin-bottom: 2.25rem;
}

.work-services-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.work-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-line);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
}

.work-case-cta {
  display: inline-flex;
}

/* Divider between cases */
.work-divider {
  padding: 0;
}

.work-divider-line {
  height: 1px;
  background: var(--border-light);
}

/* Browser mockup */
.work-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.work-mockup-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  display: block;
}

.mockup-url {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-left: 0.5rem;
  font-family: 'Montserrat', monospace;
}

.work-mockup-screen {
  background: var(--bg-card);
  padding: 2rem 1.75rem 1.5rem;
  min-height: 280px;
}

.work-mockup-screenshot {
  padding: 0;
  min-height: unset;
  overflow: hidden;
}

.work-mockup-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 0 12px 12px;
}

/* Construction mockup color accent */
.work-mockup-construction .mockup-btn-primary {
  background: #3a3558;
}

/* Homes mockup color accent */
.work-mockup-homes .mockup-btn-primary {
  background: #4a6741;
}

.mockup-hero-block {
  margin-bottom: 1.75rem;
}

.mockup-label-line {
  width: 60px;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  margin-bottom: 1rem;
}

.mockup-headline-block {
  margin-bottom: 0.9rem;
}

.mockup-h1 {
  height: 18px;
  border-radius: 4px;
  background: var(--surface);
  margin-bottom: 0.5rem;
  width: 85%;
}

.mockup-h1.short {
  width: 60%;
}

.mockup-body-lines {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.mockup-body-line {
  height: 8px;
  border-radius: 4px;
  background: var(--border-light);
  width: 100%;
}

.mockup-body-line.short {
  width: 70%;
}

.mockup-btn-row {
  display: flex;
  gap: 0.75rem;
}

.mockup-btn-primary {
  height: 30px;
  width: 120px;
  border-radius: var(--radius);
  background: var(--green);
  opacity: 0.75;
}

.mockup-btn-ghost {
  height: 30px;
  width: 100px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}

.mockup-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mockup-card {
  height: 70px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
}

.mockup-card.wide {
  grid-column: span 2;
}

/* Responsive for work page */
@media (max-width: 860px) {
  .work-case-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .work-case-alt .work-case-inner {
    direction: ltr;
  }

  .work-case-alt .work-case-visual {
    order: -1;
  }

  .page-hero-inner {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .work-case {
    padding: 5rem 0;
  }

  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   INSIGHTS — Homepage Featured Cards + Insights Page + Articles
   ============================================================ */

/* --- Insight Cards (homepage 3-up + listing page) ---------- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
  position: relative;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--green-light));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}

.insight-card:hover {
  border-color: rgba(47, 43, 73, 0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.insight-card:hover::before {
  transform: scaleX(1);
}

.insight-card-body {
  padding: 1.75rem 1.75rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-line);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1rem;
}

.insight-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
}

.insight-card-excerpt {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.78;
  flex: 1;
  margin-bottom: 1.5rem;
}

.insight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.75rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 500;
}

.insight-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-dim);
}

.insight-read-link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s var(--ease), opacity 0.2s;
}

.insight-read-link:hover {
  gap: 0.65rem;
  opacity: 0.75;
}

.insights-cta-row {
  text-align: center;
}

/* Listing page: 2-col grid with larger cards */
.insights-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .insights-grid,
  .insights-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .insights-grid,
  .insights-listing-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Article Page ------------------------------------------ */
.article-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}

.article-hero-inner {
  max-width: 760px;
}

.article-tag-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.article-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 620px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.article-byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1.5px solid var(--green-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.article-byline-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.article-byline-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.article-byline-detail {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* Article body */
.article-body-section {
  padding: 6rem 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 5rem;
  align-items: start;
}

.article-content {
  max-width: 680px;
}

.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

.article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.article-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.article-content strong {
  color: var(--ink);
  font-weight: 600;
}

.article-pullquote {
  border-left: 3px solid var(--green);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-pullquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

/* Article sidebar */
.article-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.article-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.article-sidebar-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.article-sidebar-link {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
  line-height: 1.45;
}

.article-sidebar-link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-sidebar-link:hover {
  color: var(--green);
}

/* Related articles */
.article-related {
  padding: 6rem 0;
  background: var(--bg-alt);
}

/* Responsive article layout */
@media (max-width: 860px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .article-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 520px) {
  .article-hero {
    padding: calc(var(--nav-h) + 3rem) 0 3rem;
  }
}

/* --- Why FCG section -------------------------------------- */
.why-section {
  background: #fff;
  padding: 6rem 2.5rem;
  border-top: 1px solid #eee;
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.why-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0b223a;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.why-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #888;
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fafafa;
}

.why-card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ccc;
  margin-bottom: 1rem;
}

.why-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0b223a;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.why-card-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

/* --- Work teaser ------------------------------------------ */
.work-teaser {
  background: #f5f5f5;
  padding: 6rem 2.5rem;
}

.work-teaser-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.work-teaser-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0b223a;
  opacity: 0.4;
  display: block;
  margin-bottom: 1rem;
}

.work-teaser-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0b223a;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.work-teaser-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

.work-teaser-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wtv-card {
  border-radius: 14px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wtv-card span {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.wtv-card small {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.wtv-card--1 { background: #0b223a; color: #fff; }
.wtv-card--2 { background: #163657; color: #fff; }
.wtv-card--3 { background: #fff; color: #0b223a; border: 1px solid #eee; }

/* ============================================================
   NEW FIGMA-STYLE SECTIONS
   ============================================================ */

/* --- Logos strip ------------------------------------------- */
.logos-strip {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  background: #fff;
  padding: 1.1rem 0;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: logoScroll 24s linear infinite;
  width: max-content;
}

.logos-track span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #aaa;
}

.logos-dot {
  color: #ddd !important;
  font-size: 1.2rem !important;
}

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Big quote -------------------------------------------- */
.quote-section {
  background: #0b223a;
  padding: 7rem 2.5rem;
}

.quote-inner {
  max-width: 900px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0.7;
  color: rgba(255,255,255,0.15);
  margin-bottom: 1.5rem;
  display: block;
}

.big-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 2.5rem;
  letter-spacing: -0.02em;
}

.quote-attr {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.quote-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.quote-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
}

/* --- Work showcase ---------------------------------------- */
.work-section {
  background: #fff;
  padding: 5rem 0 5rem;
}

.work-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
}

.work-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0b223a;
  letter-spacing: -0.03em;
}

.work-view-all {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0b223a;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.work-view-all:hover { opacity: 1; }

.work-scroll-track {
  display: flex;
  gap: 1.25rem;
  padding: 0 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.work-scroll-track::-webkit-scrollbar { display: none; }

.work-card {
  flex-shrink: 0;
  width: 320px;
  cursor: pointer;
}

.work-card-thumb {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f5f5f5;
}

.work-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-card-thumb--brand {
  background: linear-gradient(135deg, #0b223a 0%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-card-thumb--brand::after {
  content: 'BRAND';
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.2em;
}

.work-card-thumb--campaign {
  background: linear-gradient(135deg, #163657 0%, #0b223a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-card-thumb--campaign::after {
  content: '3.2×';
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
}

.work-card-thumb--seo {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-card-thumb--seo::after {
  content: '#1';
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(11,34,58,0.12);
}

.work-card-thumb--social {
  background: linear-gradient(135deg, #1e4a78 0%, #0b223a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-card-thumb--social::after {
  content: '+240%';
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
}

.work-card-meta {
  margin-bottom: 0.4rem;
}

.work-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}

.work-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0b223a;
}

/* --- Services dark ---------------------------------------- */
.services-dark {
  background: #000;
  padding: 6rem 2.5rem;
}

.sd-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}

.sd-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.sd-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.sd-link:hover { color: #fff; }

.sd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.sd-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sd-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

/* 6-card grid */
.sd-grid--6 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 340px);
}

/* Distinct card colors */
.sd-card--web       { background: #0b223a; }
.sd-card--social    { background: #1a4a6b; }
.sd-card--brand     { background: #0f3d2e; }
.sd-card--ai        { background: #2d1a5e; }
.sd-card--analytics { background: #1a3d5c; }
.sd-card--drone     { background: #3d280a; }

.sd-card-visual {
  flex: 1;
  padding: 1.5rem 1.75rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.sd-work-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 1rem;
}

.sd-vis-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 70px;
  flex: 1;
}

.sd-vis-bars span {
  flex: 1;
  background: rgba(255,255,255,0.25);
  border-radius: 3px 3px 0 0;
  display: block;
  transition: height 0.3s;
}

.sd-vis-brand-preview {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.sd-brand-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.25);
  letter-spacing: -0.04em;
  line-height: 1;
}

.sd-brand-swatches {
  display: flex;
  gap: 8px;
}

.sd-brand-swatches span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: block;
}
.sd-brand-swatches span:nth-child(1) { background: rgba(255,255,255,0.5); }
.sd-brand-swatches span:nth-child(2) { background: rgba(255,255,255,0.25); }
.sd-brand-swatches span:nth-child(3) { background: rgba(255,255,255,0.12); }

.sd-vis-big-stat {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  flex: 1;
  display: flex;
  align-items: center;
}
.sd-vis-big-stat em { font-style: normal; font-size: 2.5rem; }

.sd-vis-chart-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}

.sd-vis-result {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

.sd-card-footer {
  padding: 1.25rem 1.75rem;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sd-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.sd-card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin: 0;
}

/* Website mockup visual */
.sd-vis-mockup {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
.sd-mock-bar {
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  width: 100%;
}
.sd-mock-hero {
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}
.sd-mock-row {
  display: flex;
  gap: 5px;
}
.sd-mock-row span {
  flex: 1;
  height: 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}

/* Social media visual */
.sd-vis-social {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.sd-social-icons {
  display: flex;
  gap: 8px;
}
.sd-social-icons span {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}
.sd-social-sched {
  display: flex;
  gap: 4px;
  align-items: center;
}
.sd-social-sched span {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
}
.sd-social-sched span.active {
  background: rgba(255,255,255,0.45);
}

/* AI visual */
.sd-vis-ai {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sd-ai-node {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: rgba(255,255,255,0.35);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  flex-shrink: 0;
}
.sd-ai-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.sd-ai-lines span {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.15);
}
.sd-ai-lines span:nth-child(1) { width: 100%; }
.sd-ai-lines span:nth-child(2) { width: 70%; }
.sd-ai-lines span:nth-child(3) { width: 85%; }

/* Drone visual */
.sd-vis-drone {
  flex: 1;
  display: flex;
  align-items: center;
}

/* --- Stats row -------------------------------------------- */
.stats-row {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 4rem 2.5rem;
}

.stats-row-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-big {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #0b223a;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: #eee;
  flex-shrink: 0;
}

/* --- Insights section ------------------------------------- */
.insights-section {
  background: #f5f5f5;
  padding: 5rem 0;
}

.insights-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
}

.insights-scroll-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 0 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.ins-card {
  width: auto;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid #eee;
}

.ins-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0b223a;
  opacity: 0.5;
}

.ins-card-stat {
  font-size: 2.5rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em;
  color: #0b223a !important;
}

.ins-card--work { border-top: 3px solid #0b223a; }

.ins-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0b223a;
  flex: 1;
}

.ins-card-excerpt {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #888;
  margin: 0;
}

.ins-card-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0b223a;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.2s;
}
.ins-card-link:hover { opacity: 0.6; }

/* --- CTA dark --------------------------------------------- */
.cta-dark {
  background: #0b223a;
  padding: 7rem 2.5rem;
  text-align: center;
}

.cta-dark-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-dark-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}

.cta-dark-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.hero-input-wrap--dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.hero-input-wrap--dark:focus-within {
  border-color: rgba(255,255,255,0.4);
  box-shadow: none;
}
.hero-input-wrap--dark .hero-input-prefix { color: rgba(255,255,255,0.3); }
.hero-input-wrap--dark .hero-input { color: #fff; }
.hero-input-wrap--dark .hero-input::placeholder { color: rgba(255,255,255,0.25); }
.hero-input-wrap--dark .hero-input-btn {
  background: #fff;
  color: #0b223a;
}
.hero-input-wrap--dark .hero-input-btn:hover { background: rgba(255,255,255,0.9); }

/* --- Footer dark ------------------------------------------ */
.footer-dark {
  background: #000;
  color: #fff;
  padding: 5rem 2.5rem 2.5rem;
}

.footer-dark-top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-dark-logo {
  height: 36px;
  width: auto;
  filter: invert(1);
  margin-bottom: 1.25rem;
  display: block;
}

.footer-dark-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin: 0;
}

.footer-dark-cols {
  display: flex;
  gap: 4rem;
}

.footer-dark-col p.footer-dark-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}

.footer-dark-col nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-dark-col nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-dark-col nav a:hover { color: #fff; }

.footer-dark-address {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-dark-bottom {
  display: flex;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-dark-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}
