/* ==============================================
   TM CONSULTANTS — White / Navy Edition
   ============================================== */

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

/* --- Custom Properties --- */
:root {
  /* White / Navy palette */
  --bg:           #ffffff;
  --bg-secondary: #f6f8fc;
  --text-primary: #0f1827;
  --text-muted:   #6b7280;
  --accent:       #1e3a5f;
  --border:       #e2e8f0;
  --border-subtle:#eff1f5;

  /* Legacy variable compat (inline styles in HTML still reference these) */
  --navy:        #1e3a5f;
  --navy-dark:   #0f1827;
  --navy-light:  #2d5691;
  --orange:      #1e3a5f;
  --orange-hover:#0f1827;
  --orange-pale: #eef2f8;
  --cream:       #ffffff;
  --cream-dark:  #f6f8fc;
  --white:       #ffffff;
  --text:        #0f1827;
  --text-muted:  #6b7280;

  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Kill all shadows */
  --shadow-xs: none;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-xl: none;

  /* Cap radius at 4px */
  --radius-sm:   4px;
  --radius-md:   4px;
  --radius-lg:   4px;
  --radius-xl:   4px;
  --radius-full: 4px;

  --ease:           cubic-bezier(0.4,0,0.2,1);
  --transition-fast:0.18s var(--ease);
  --transition:     0.3s  var(--ease);
  --transition-slow:0.5s  var(--ease);

  --max-width: 1200px;
  --nav-height: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: light; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
  background: #ffffff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.05;
  color: #0f1827;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 6.5vw, 6.5rem); font-weight: 300; line-height: 1.0; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.05rem; font-weight: 500; color: #0f1827; }
h5 { font-size: 0.95rem; font-weight: 500; color: #0f1827; }
p  { line-height: 1.7; color: #6b7280; }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header .label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555555;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 20px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  border: 1px solid transparent;
}
.btn-lg { padding: 16px 36px; }

/* Solid navy — default primary */
.btn-primary {
  background: #1e3a5f;
  color: #ffffff;
  border-color: #1e3a5f;
}
.btn-primary:hover {
  background: #0f1827;
  border-color: #0f1827;
}

/* Navy outline — on white pages */
.btn-outline {
  background: transparent;
  color: #1e3a5f;
  border-color: #1e3a5f;
}
.btn-outline:hover {
  background: #1e3a5f;
  color: #ffffff;
}

/* White outline — on dark sections (hero, cta, footer) */
.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.1);
}

/* White fill — on dark sections */
.btn-white {
  background: #ffffff;
  color: #1e3a5f;
  border-color: #ffffff;
}
.btn-white:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* CTA section is navy — buttons stay white / outline-white */
.cta-section .btn-white      { background: #ffffff; color: #1e3a5f; border-color: #ffffff; }
.cta-section .btn-white:hover { background: transparent; color: #ffffff; }
.cta-section .btn-outline-white { border-color: rgba(255,255,255,0.4); color: #ffffff; }
.cta-section .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; }

/* --- Progress Bar --- */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: #1e3a5f;
  z-index: 2000;
  width: 0%;
  transition: width 0.1s;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #eff1f5;
  /* hide/show on scroll + scroll-shadow */
  transform: translateY(0);
  transition: transform 0.32s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 1px 20px rgba(15,24,39,0.07);
  border-bottom-color: #e2e8f0;
}
.nav.nav-hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Logo — left */
.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav-logo-badge {
  width: 34px; height: 34px;
  background: #1e3a5f;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.76rem; font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
}
.nav-logo:hover .nav-logo-badge { opacity: 0.82; }
.nav-logo-text {
  font-size: 0.9rem; font-weight: 500;
  line-height: 1.2; color: #0f1827;
}
.nav-logo-text span {
  display: block;
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.08em; color: #9aa5b4;
}

/* Links — centered */
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 18px;
  color: rgba(15,24,39,0.38);
  transition: color 0.2s ease;
  position: relative;
}
.nav-link:hover,
.nav-link.active { color: #0f1827; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 18px; right: 18px;
  height: 1px; background: #1e3a5f;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* CTA — right */
.nav-cta { flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: #0f1827; transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: #ffffff;
  border-bottom: 1px solid #eff1f5;
  padding: 24px 32px 32px;
  flex-direction: column; gap: 0;
  z-index: 999;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.nav-mobile.open {
  display: flex; opacity: 1; transform: translateY(0); pointer-events: all;
}
.nav-mobile .nav-link {
  padding: 15px 0;
  font-size: 0.68rem; letter-spacing: 0.16em;
  border-bottom: 1px solid #f0f2f5;
  color: rgba(15,24,39,0.38) !important;
  transition: color 0.2s ease;
}
.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active { color: #0f1827 !important; }
.nav-mobile .nav-link::after { display: none; }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: 24px; }

/* --- Hero --- */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background layers */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #000000;
}
.hero-pattern { display: none; }  /* suppressed — grid replaces it */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 88px 88px;
}
.hero-glow {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse 90% 55% at 50% -5%, rgba(255,255,255,0.055) 0%, transparent 65%);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 3;
  background: radial-gradient(ellipse 110% 110% at 50% 50%, transparent 20%, rgba(0,0,0,0.72) 100%);
}

/* Main content — fills remaining space, vertically centered */
.hero-content {
  position: relative; z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  padding-bottom: 96px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}
.hero-visual { display: none; }
.hero-text { max-width: 800px; }

/* Eyebrow label */
.hero-label {
  display: flex;
  align-items: center; gap: 14px;
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #3c3c3c;
  margin-bottom: 32px;
}
.hero-label::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: #2c2c2c; flex-shrink: 0;
}
.hero-label .dot { display: none; }
@keyframes pulseAnim {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.25; }
}

/* BIG stacked headline */
.hero h1 {
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 36px;
}
.hero h1 .hero-line     { display: block; }
.hero h1 .hero-line-dim { display: block; color: #555555; }
.hero h1 em             { font-style: normal; color: #555555; }

.hero-desc {
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stat bar — pinned to hero bottom */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0; z-index: 5;
  border-top: 1px solid #1a1a1a;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(16px);
}
.hero-stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
}
.hero-stat-pill {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 48px;
}
.hero-stat-pill + .hero-stat-pill {
  padding-left: 48px;
  border-left: 1px solid #1a1a1a;
}
.hero-stat-pill strong {
  font-size: 1.35rem;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-pill span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #444444;
}

/* Scroll indicator — right side */
.scroll-indicator {
  position: absolute; bottom: 84px; right: 32px; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #282828;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: scrollBounce 2.8s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 36px; background: #222222; }
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* --- Service Cards (Home overview) --- */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: #1a1a1a;
  border: 1px solid #1a1a1a;
}
.service-card {
  background: #000000;
  border-radius: 0;
  padding: 40px 36px;
  box-shadow: none;
  border: none;
  transition: background var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: #ffffff;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: #0a0a0a; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 4px;
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: #888888;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: #ffffff; }
.service-card > p { font-size: 0.92rem; margin-bottom: 24px; }
.learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 500; color: #555555;
  text-transform: uppercase; letter-spacing: 0.12em;
  transition: var(--transition-fast);
}
.service-card:hover .learn-more { color: #ffffff; gap: 10px; }

/* --- Stats Band --- */
.stats-band {
  background: #060606;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 72px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; text-align: center; }
.stat-item {
  padding: 0 20px;
  border-right: 1px solid #1a1a1a;
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; color: #ffffff;
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.stat-item .stat-label { font-size: 0.78rem; color: #555555; letter-spacing: 0.08em; }

/* --- Why Section --- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 32px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 4px;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  color: #666666;
}
.why-icon svg { width: 20px; height: 20px; }
.why-item h4 { margin-bottom: 6px; }
.why-item p  { font-size: 0.92rem; }

.why-visual {
  background: #080808;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 56px 40px;
  text-align: center;
}
.why-visual::before, .why-visual::after { display: none; }
.why-visual-emoji { font-size: 52px; margin-bottom: 24px; display: block; }
.why-visual h3   { color: #ffffff; margin-bottom: 14px; }
.why-visual p    { color: #888888; font-size: 0.92rem; }

/* --- Testimonials --- */
.testimonials-section { background: #060606; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #1a1a1a; }
.testimonial-card {
  background: #060606;
  border-radius: 0;
  padding: 36px 32px;
  box-shadow: none;
  transition: background var(--transition);
}
.testimonial-card:hover { background: #0d0d0d; }
.testimonial-stars { color: #ffffff; font-size: 0.75rem; letter-spacing: 4px; margin-bottom: 16px; opacity: 0.5; }
.testimonial-text {
  font-size: 0.92rem; font-style: italic;
  color: #888888; line-height: 1.7; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid #333;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 500; font-size: 0.82rem;
  color: #ffffff; flex-shrink: 0;
}
.t-name     { font-family: var(--font-heading); font-weight: 500; font-size: 0.88rem; color: #ffffff; }
.t-business { font-size: 0.73rem; color: #555555; }

/* --- CTA Section (solid navy) --- */
.cta-section {
  background: #1e3a5f;
  padding: 96px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before { display: none; }
.cta-content { position: relative; z-index: 1; }
.cta-section h2 { color: #ffffff; margin-bottom: 16px; }
.cta-section p {
  color: rgba(255,255,255,0.7); font-size: 1.05rem;
  max-width: 540px; margin: 0 auto 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Portfolio Grid --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #1a1a1a; border: 1px solid #1a1a1a; }
.portfolio-card {
  background: #000000;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: background var(--transition);
}
.portfolio-card:hover { background: #0a0a0a; }
.portfolio-thumb {
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid #1a1a1a;
}
.portfolio-thumb-inner { text-align: center; color: white; padding: 20px; z-index: 1; }
.portfolio-thumb-icon { font-size: 48px; margin-bottom: 8px; display: block; }
.portfolio-thumb h4   { color: #ffffff; font-size: 1rem; }
.portfolio-badge {
  position: absolute; top: 12px; right: 12px;
  background: #ffffff; color: #000000;
  font-size: 0.62rem; font-weight: 600;
  padding: 3px 10px; border-radius: 2px;
  letter-spacing: 0.08em; text-transform: uppercase; z-index: 2;
}
.portfolio-info { padding: 24px; }
.portfolio-info h3  { font-size: 1rem; margin-bottom: 8px; color: #ffffff; }
.portfolio-info > p { font-size: 0.85rem; margin-bottom: 14px; }
.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 0.68rem; font-weight: 500;
  padding: 3px 10px; border-radius: 2px;
  background: #111111; color: #555555;
  border: 1px solid #1a1a1a;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: #000000;
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
}
.page-hero::before { display: none; }
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.page-hero .label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #555555;
  background: transparent;
  border: none; padding: 0;
  margin-bottom: 24px;
}
.page-hero h1 { color: #ffffff; margin-bottom: 20px; }
.page-hero p  { color: #888888; font-size: 1.05rem; }

/* --- Services Page Detailed --- */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid #1a1a1a;
}
.service-detail:first-child { padding-top: 0; }
.service-detail:last-child  { border-bottom: none; padding-bottom: 0; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #555555; background: transparent;
  padding: 0; border-radius: 0;
  margin-bottom: 16px;
}
.service-detail h2 { margin-bottom: 16px; }
.service-detail > div > p { font-size: 1.0rem; margin-bottom: 28px; }

.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-check {
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feature-check svg { width: 10px; height: 10px; color: #000000; }
.feature-item p { font-size: 0.92rem; color: #888888; }
.feature-item p strong { color: #ffffff; font-weight: 500; }

.service-visual {
  background: #080808;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 56px 40px;
  display: flex; align-items: center; justify-content: center;
  min-height: 380px;
  position: relative; overflow: hidden;
  text-align: center;
}
.service-visual::before { display: none; }
.service-visual-inner { position: relative; z-index: 1; color: #ffffff; }
.service-visual-emoji { font-size: 64px; margin-bottom: 24px; display: block; }
.service-visual h3 { color: #ffffff; font-size: 1.4rem; margin-bottom: 12px; }
.service-visual p  { color: #888888; font-size: 0.9rem; max-width: 280px; margin: 0 auto; }

/* Pricing teaser */
.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #1a1a1a; }
.pricing-card {
  background: #000000;
  border-radius: 0;
  padding: 40px 32px;
  border: none;
  transition: background var(--transition);
  position: relative;
}
.pricing-card:hover { background: #0a0a0a; }
.pricing-card.featured { background: #080808; }
.pricing-card .pop-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #ffffff; color: #000000;
  font-size: 0.62rem; font-weight: 600;
  padding: 4px 14px; border-radius: 2px;
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pricing-card .price {
  font-family: var(--font-heading); font-size: 2.2rem;
  font-weight: 300; color: #ffffff; margin-bottom: 6px;
  letter-spacing: -0.04em;
}
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: #555555; }
.pricing-card .price-note { font-size: 0.8rem; color: #555555; margin-bottom: 24px; }
.pricing-card .price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-card .price-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: #888888;
}
.pricing-card .price-feature::before {
  content: '✓'; color: #ffffff; font-weight: 400; flex-shrink: 0;
}

/* --- Process Steps --- */
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
  border: 1px solid #1a1a1a;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 32px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: #2a2a2a;
  z-index: 0;
}
.process-step {
  text-align: center; position: relative; z-index: 1;
  padding: 48px 24px;
  border-right: 1px solid #1a1a1a;
}
.process-step:last-child { border-right: none; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: transparent;
  border: 1px solid #333333;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 300;
  color: #666666;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: #ffffff; color: #000000; border-color: #ffffff;
}
.process-step h4  { margin-bottom: 10px; }
.process-step > p { font-size: 0.86rem; }

/* --- About Page --- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  background: #080808;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 48px 40px;
  position: relative; overflow: hidden;
}
.about-visual::before { display: none; }
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  padding: 5px 12px;
  font-size: 0.68rem; font-weight: 500; color: #666666;
  margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.14em;
}
.about-visual h3  { color: #ffffff; font-size: 1.5rem; margin-bottom: 14px; }
.about-visual > p { color: #888888; font-size: 0.92rem; margin-bottom: 28px; }

.achievement {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 14px 18px; margin-bottom: 10px;
  position: relative; z-index: 1;
}
.achievement-icon { font-size: 1.2rem; flex-shrink: 0; }
.achievement h5   { color: #ffffff; font-size: 0.88rem; margin-bottom: 2px; }
.achievement p    { font-size: 0.73rem; color: #555555; margin: 0; }

/* Team */
.team-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; max-width: 640px; margin: 0 auto;
  background: #1a1a1a;
}
.team-card {
  background: #060606;
  border-radius: 0;
  padding: 48px 32px;
  box-shadow: none;
  text-align: center;
  transition: background var(--transition);
}
.team-card:hover { background: #0d0d0d; }
.team-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 300;
  color: #ffffff;
  margin: 0 auto 24px;
  overflow: hidden;
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.team-card h3   { font-size: 1.2rem; margin-bottom: 6px; }
.team-role { font-size: 0.68rem; font-weight: 500; color: #666666; margin-bottom: 14px; display: block; letter-spacing: 0.12em; text-transform: uppercase; }
.team-card > p  { font-size: 0.87rem; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #1a1a1a; }
.value-card {
  background: #000000;
  border-radius: 0;
  padding: 40px 28px;
  text-align: left;
  box-shadow: none;
  border: none;
  transition: background var(--transition);
}
.value-card:hover { background: #0a0a0a; }
.value-emoji { font-size: 1.6rem; margin-bottom: 20px; display: block; }
.value-card h4  { margin-bottom: 10px; }
.value-card > p { font-size: 0.88rem; }

/* --- Contact Page --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 60px; align-items: start; }
.contact-info-col { display: flex; flex-direction: column; gap: 32px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #666666;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail h5 { margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.9rem; color: #888888; }
.contact-detail a:hover { color: #ffffff; }

/* Form */
.contact-form {
  background: #080808;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 48px;
  box-shadow: none;
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form > p { font-size: 0.92rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 500;
  color: #555555; text-transform: uppercase; letter-spacing: 0.12em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  font-size: 0.92rem; color: #ffffff;
  background: #000000;
  transition: border-color var(--transition-fast);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #333333; }
.form-group select option { background: #111111; color: #ffffff; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #ffffff;
  box-shadow: none;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; }

/* Form Success */
.form-success { text-align: center; padding: 56px 32px; }
.success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: none;
}
.success-icon svg { width: 26px; height: 26px; color: #000000; }
.form-success h3 { margin-bottom: 12px; }
.form-success p  { max-width: 400px; margin: 0 auto 28px; font-size: 0.95rem; }

/* --- Footer --- */
.footer { background: #000000; border-top: 1px solid #1a1a1a; color: #ffffff; padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand p {
  font-size: 0.84rem; color: #444444;
  margin-top: 16px; line-height: 1.75; max-width: 280px;
}
.footer-nav-title {
  font-family: var(--font-body);
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #444444; margin-bottom: 20px;
}
.footer-nav-links { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-links a {
  font-size: 0.84rem; color: #444444;
  transition: var(--transition-fast);
}
.footer-nav-links a:hover { color: #ffffff; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.84rem; color: #444444;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 13px; height: 13px; color: #444444; flex-shrink: 0; }
.footer-contact-item a:hover { color: #ffffff; }
.footer-divider { border: none; border-top: 1px solid #111111; margin-bottom: 28px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-bottom p { font-size: 0.76rem; color: #333333; }

/* --- Scroll to Top --- */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 40px; height: 40px;
  background: #1e3a5f; color: #ffffff;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(30,58,95,0.25);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  z-index: 500; cursor: pointer;
  pointer-events: none;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#scrollTop:hover   { background: #0f1827; transform: translateY(-2px); }
#scrollTop svg     { width: 18px; height: 18px; }

/* --- Animations --- */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fade-in-left {
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fade-in-right {
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1; transform: translate(0);
}
.stagger-children > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.stagger-children.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
.stagger-children.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.12s; }
.stagger-children.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.19s; }
.stagger-children.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.26s; }
.stagger-children.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.33s; }
.stagger-children.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.40s; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ================================================================
   REDESIGNED CONTENT COMPONENTS
   ================================================================ */

/* Section eyebrow — small label above every heading */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3c3c3c;
  margin-bottom: 24px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: #2c2c2c;
  flex-shrink: 0;
}
/* left-aligned section intro block */
.section-intro { margin-bottom: 64px; }
.section-intro h2 { max-width: 620px; }

/* ---- Numbered service list ---- */
.svc-list { border-top: 1px solid #1a1a1a; }
.svc-row {
  display: grid;
  grid-template-columns: 68px 1fr 28px;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid #1a1a1a;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: padding-left var(--transition);
}
.svc-row:hover { padding-left: 8px; }
.svc-num {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #2c2c2c;
  align-self: start;
  padding-top: 6px;
  font-variant-numeric: tabular-nums;
  transition: color var(--transition);
}
.svc-row:hover .svc-num { color: #555; }
.svc-body h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 300;
  color: #555555;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  transition: color var(--transition);
  line-height: 1.1;
}
.svc-row:hover .svc-body h3 { color: #ffffff; }
.svc-body p { font-size: 0.9rem; max-width: 500px; }
.svc-arrow {
  font-size: 1.1rem;
  color: #2c2c2c;
  transition: color var(--transition), transform var(--transition);
  line-height: 1;
  align-self: center;
}
.svc-row:hover .svc-arrow { color: #ffffff; transform: translate(3px, -3px); }

/* ---- Stats counter ---- */
.stats-counter-section {
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 80px 0;
}
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-counter-item {
  padding: 0 40px;
  border-right: 1px solid #1a1a1a;
}
.stat-counter-item:first-child { padding-left: 0; }
.stat-counter-item:last-child  { border-right: none; padding-right: 0; }
.stat-counter-num {
  display: block;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.stat-counter-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3c3c3c;
}

/* ---- Testimonial carousel ---- */
.testimonials-slider-section { border-top: 1px solid #1a1a1a; }
.t-slider {
  position: relative;
  max-width: 860px;
}
.t-quote-bg {
  position: absolute;
  top: -80px; left: -16px;
  font-size: 28rem;
  line-height: 1;
  color: rgba(255,255,255,0.018);
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.t-slides { position: relative; z-index: 1; min-height: 200px; }
.t-slide {
  opacity: 0;
  position: absolute; inset: 0;
  transition: opacity 0.55s var(--ease);
  pointer-events: none;
}
.t-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: all;
}
.t-slide blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  font-style: normal;
}
.t-credit {
  display: flex;
  align-items: center;
  gap: 16px;
}
.t-credit::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: #333;
  flex-shrink: 0;
}
.t-name-credit { font-size: 0.88rem; font-weight: 500; color: #ffffff; }
.t-role-credit  { font-size: 0.75rem; color: #555; margin-top: 2px; }
.t-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
}
.t-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid #222;
  border-radius: 50%;
  color: #444;
  background: none;
  cursor: pointer;
  font-size: 0.88rem;
  transition: border-color var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}
.t-arrow:hover { border-color: #ffffff; color: #ffffff; }
.t-dots { display: flex; gap: 8px; align-items: center; }
.t-dot {
  width: 28px; height: 1px;
  background: #252525;
  border: none;
  cursor: pointer;
  padding: 6px 0;    /* bigger hit target */
  background-clip: content-box;
  transition: background var(--transition-fast);
  display: block;
}
.t-dot.active { background: #ffffff; background-clip: content-box; }

/* ---- FAQ accordion ---- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid #1a1a1a;
}
.faq-item { border-bottom: 1px solid #1a1a1a; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none; border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}
.faq-q-text {
  font-size: 1rem;
  font-weight: 400;
  color: #666666;
  transition: color var(--transition-fast);
  line-height: 1.4;
}
.faq-q:hover .faq-q-text,
.faq-item.open .faq-q-text { color: #ffffff; }
.faq-icon {
  font-size: 1.3rem;
  color: #2c2c2c;
  transition: transform var(--transition), color var(--transition-fast);
  flex-shrink: 0;
  line-height: 1;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: #ffffff; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  padding-bottom: 28px;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.75;
}

/* ================================================================
   WHITE / NAVY THEME — component overrides
   (these override hardcoded dark hex values in the blocks above)
   ================================================================ */

/* hero — keep dark navy */
.hero-bg { background: #0f1827; }
.hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
}
.hero-glow { background: radial-gradient(ellipse 90% 55% at 50% -5%, rgba(255,255,255,0.05) 0%, transparent 65%); }
.hero-vignette { background: radial-gradient(ellipse 110% 110% at 50% 50%, transparent 20%, rgba(9,15,31,0.7) 100%); }
.hero-label { color: rgba(255,255,255,0.3); }
.hero-label::before { background: rgba(255,255,255,0.15); }
.hero h1 { color: #ffffff; }
.hero h1 .hero-line-dim { color: rgba(255,255,255,0.35); }
.hero-desc { color: rgba(255,255,255,0.55); }
.scroll-indicator { color: rgba(255,255,255,0.18); }
.scroll-line { background: rgba(255,255,255,0.12); }
.hero-stats { background: rgba(9,15,31,0.6); border-top-color: rgba(255,255,255,0.08); }
.hero-stat-pill strong { color: #ffffff; }
.hero-stat-pill span { color: rgba(255,255,255,0.38); }
.hero-stat-pill + .hero-stat-pill { border-left-color: rgba(255,255,255,0.08); }

/* page-heros (inner pages) — dark navy */
.page-hero { background: #0f1827; border-bottom: 1px solid rgba(255,255,255,0.06); }
.page-hero .label { color: rgba(255,255,255,0.35); }
.page-hero h1 { color: #ffffff; }
.page-hero p  { color: rgba(255,255,255,0.6); }

/* section eyebrow */
.section-eyebrow { color: #9aa5b4; }
.section-eyebrow::before { background: #dde3eb; }
.section-header .label { color: #9aa5b4; }

/* service list */
.svc-list { border-top-color: #e8ecf2; }
.svc-row { border-bottom-color: #e8ecf2; }
.svc-row:hover { padding-left: 6px; background: #f7f9fc; }
.svc-num { color: #c4cdd8; }
.svc-row:hover .svc-num { color: #6b7280; }
.svc-body h3 { color: #9aa5b4; }
.svc-row:hover .svc-body h3 { color: #0f1827; }
.svc-arrow { color: #c4cdd8; }
.svc-row:hover .svc-arrow { color: #1e3a5f; }

/* stats counter */
.stats-counter-section { background: #f6f8fc; border-color: #e2e8f0; }
.stat-counter-item { border-right-color: #e2e8f0; }
.stat-counter-num { color: #0f1827; }
.stat-counter-label { color: #9aa5b4; }

/* testimonial carousel */
.testimonials-slider-section { border-top-color: #e8ecf2; }
.t-quote-bg { color: rgba(30,58,95,0.045); }
.t-slide blockquote { color: #0f1827; }
.t-credit::before { background: #dde3eb; }
.t-name-credit { color: #0f1827; }
.t-role-credit  { color: #9aa5b4; }
.t-arrow { border-color: #e2e8f0; color: #9aa5b4; }
.t-arrow:hover { border-color: #1e3a5f; color: #1e3a5f; }
.t-dot { background: #e2e8f0; }
.t-dot.active { background: #1e3a5f; }

/* FAQ accordion */
.faq-accordion { border-top-color: #e8ecf2; }
.faq-item { border-bottom-color: #e8ecf2; }
.faq-q-text { color: #6b7280; }
.faq-q:hover .faq-q-text,
.faq-item.open .faq-q-text { color: #0f1827; }
.faq-icon { color: #c4cdd8; }
.faq-item.open .faq-icon { color: #1e3a5f; }
.faq-a p { color: #9aa5b4; }

/* service cards grid (used on services.html overview) */
.services-grid { background: #e8ecf2; border-color: #e8ecf2; }
.service-card { background: #ffffff; }
.service-card:hover { background: #f6f8fc; }
.service-card::before { background: #1e3a5f; }
.service-icon { background: #eef2f8; border-color: #dde6f0; color: #1e3a5f; }
.service-card h3 { color: #0f1827; }
.service-card > p { color: #6b7280; }
.learn-more { color: #9aa5b4; }
.service-card:hover .learn-more { color: #1e3a5f; }

/* stats band (legacy, used on services page) */
.stats-band { background: #1e3a5f; border-color: #2d5691; }
.stat-item { border-right-color: rgba(255,255,255,0.1); }
.stat-item .stat-number { color: #ffffff; }
.stat-item .stat-label  { color: rgba(255,255,255,0.5); }

/* why section */
.why-icon { background: #eef2f8; border-color: #dde6f0; color: #1e3a5f; }
.why-item h4 { color: #0f1827; }
.why-visual { background: #f6f8fc; border-color: #e2e8f0; }
.why-visual h3 { color: #0f1827; }
.why-visual p  { color: #6b7280; }

/* testimonials (old grid, keep consistent) */
.testimonials-section { background: #f6f8fc; border-color: #e2e8f0; }
.testimonials-grid { background: #e8ecf2; }
.testimonial-card { background: #ffffff; }
.testimonial-card:hover { background: #f6f8fc; }
.testimonial-stars { color: #1e3a5f; opacity: 1; font-size: 0.8rem; }
.testimonial-text { color: #6b7280; }
.t-name  { color: #0f1827; }
.t-business { color: #9aa5b4; }
.testimonial-av { background: #eef2f8; border-color: #dde6f0; color: #1e3a5f; }

/* process steps */
.process-steps { border-color: #e8ecf2; }
.process-steps::before { background: #e2e8f0; }
.process-step { background: #ffffff; border-right-color: #e8ecf2; }
.process-step:nth-child(3) { border-top-color: #e8ecf2; }
.process-step:nth-child(4) { border-top-color: #e8ecf2; }
.step-num { border-color: #e2e8f0; color: #9aa5b4; }
.process-step:hover .step-num { background: #1e3a5f; color: #ffffff; border-color: #1e3a5f; }
.process-step h4 { color: #0f1827; }

/* service detail (services page) */
.service-detail { border-bottom-color: #e8ecf2; }
.service-detail-label { color: #1e3a5f; }
.service-visual { background: #f6f8fc; border-color: #e2e8f0; }
.service-visual h3 { color: #0f1827; }
.service-visual p  { color: #6b7280; }
.feature-check { background: #1e3a5f; }
.feature-check svg { color: #ffffff; }
.feature-item p { color: #6b7280; }
.feature-item p strong { color: #0f1827; }

/* pricing cards */
.pricing-cards { background: #e8ecf2; }
.pricing-card { background: #ffffff; }
.pricing-card:hover { background: #f6f8fc; }
.pricing-card.featured { background: #f6f8fc; }
.pricing-card .pop-badge { background: #1e3a5f; color: #ffffff; }
.pricing-card .price { color: #0f1827; }
.pricing-card .price span { color: #9aa5b4; }
.pricing-card .price-note { color: #9aa5b4; }
.pricing-card .price-feature { color: #6b7280; }
.pricing-card .price-feature::before { color: #1e3a5f; }

/* portfolio */
.portfolio-grid { background: #e8ecf2; border-color: #e8ecf2; }
.portfolio-card { background: #ffffff; }
.portfolio-card:hover { background: #f6f8fc; }
.portfolio-thumb { border-bottom-color: #e8ecf2; }
.portfolio-badge { background: #1e3a5f; color: #ffffff; }
.portfolio-info h3 { color: #0f1827; }
.tag { background: #eef2f8; color: #6b7280; border-color: #dde6f0; }

/* about page */
.about-visual { background: #f6f8fc; border-color: #e2e8f0; }
.about-visual h3 { color: #0f1827; }
.about-visual > p { color: #6b7280; }
.about-badge { background: transparent; border-color: rgba(30,58,95,0.2); color: #6b7280; }
.achievement { background: rgba(30,58,95,0.03); border-color: #e2e8f0; }
.achievement h5 { color: #0f1827; }
.achievement p  { color: #9aa5b4; }

/* team */
.team-grid { background: #e8ecf2; }
.team-card { background: #ffffff; }
.team-card:hover { background: #f6f8fc; }
.team-avatar { background: #eef2f8; border-color: #dde6f0; color: #6b7280; }
.team-role { color: #1e3a5f; }
.team-card h3 { color: #0f1827; }

/* values */
.values-grid { background: #e8ecf2; }
.value-card { background: #ffffff; }
.value-card:hover { background: #f6f8fc; }
.value-card h4 { color: #0f1827; }

/* contact */
.contact-detail-icon { background: #eef2f8; border-color: #dde6f0; color: #1e3a5f; }
.contact-detail h5 { color: #0f1827; }
.contact-detail p, .contact-detail a { color: #6b7280; }
.contact-form { background: #f6f8fc; border-color: #e2e8f0; }
.form-group label { color: #6b7280; }
.form-group input,
.form-group textarea,
.form-group select {
  background: #ffffff; border-color: #dde3eb; color: #0f1827;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c4cdd8; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #1e3a5f; }
.success-icon { background: #1e3a5f; }
.success-icon svg { color: #ffffff; }

/* footer — keep dark navy */
.footer { background: #0f1827; }
.footer-nav-title { color: rgba(255,255,255,0.35); }
.footer-nav-links a { color: rgba(255,255,255,0.45); }
.footer-nav-links a:hover { color: #ffffff; }
.footer-brand p { color: rgba(255,255,255,0.38); }
.footer-contact-item { color: rgba(255,255,255,0.45); }
.footer-contact-item svg { color: rgba(255,255,255,0.35); }
.footer-divider { border-top-color: rgba(255,255,255,0.07); }
.footer-bottom p { color: rgba(255,255,255,0.25); }

/* footer logo overrides */
.footer .nav-logo-badge { background: #ffffff; color: #1e3a5f; }
.footer .nav-logo-text  { color: #ffffff; }
.footer .nav-logo-text span { color: rgba(255,255,255,0.35); }

/* contact page "still on the fence" strip */
section[style*="background:var(--navy)"] h2,
section[style*="background:var(--navy)"] p { color: rgba(255,255,255,0.8); }

/* ================================================================ */

/* --- Responsive --- */
@media (max-width: 1024px) {
  .stats-counter-grid { grid-template-columns: repeat(2,1fr); }
  .stat-counter-item  { padding: 24px 32px; border-right: none; border-bottom: 1px solid #1a1a1a; }
  .stat-counter-item:last-child { border-bottom: none; }
  .svc-row { grid-template-columns: 52px 1fr 24px; gap: 20px; }
  .services-grid,
  .testimonials-grid  { grid-template-columns: repeat(2,1fr); }
  .stats-grid         { grid-template-columns: repeat(2,1fr); }
  .stat-item          { border-right: none; border-bottom: 1px solid #1a1a1a; padding: 24px 0; }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .process-steps      { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-top: 1px solid #1a1a1a; }
  .process-step:nth-child(4) { border-right: none; border-top: 1px solid #1a1a1a; }
  .portfolio-grid     { grid-template-columns: repeat(2,1fr); }
  .pricing-cards      { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .values-grid        { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }
  .hero-content { padding-left: 20px; padding-right: 20px; padding-bottom: 80px; }
  .hero h1 { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-stats-inner { padding: 18px 20px; }
  .hero-stat-pill { padding-right: 24px; }
  .hero-stat-pill + .hero-stat-pill { padding-left: 24px; }
  .scroll-indicator { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-counter-item  { padding: 20px 0; border-right: none; border-bottom: 1px solid #1a1a1a; }
  .stat-counter-item:nth-child(2n) { padding-left: 24px; border-left: 1px solid #1a1a1a; }
  .svc-row { grid-template-columns: 44px 1fr 20px; gap: 16px; padding: 28px 0; }
  .svc-row:hover { padding-left: 0; }
  .t-quote-bg { font-size: 14rem; top: -40px; left: -8px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid, .about-split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail      { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse { direction: ltr; }
  .testimonials-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .team-grid   { grid-template-columns: 1fr; max-width: 320px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 20px; }
  .form-grid   { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid #1a1a1a; }
  .process-step:last-child { border-bottom: none; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
