/* ============================================
   RKLCMA — McKinsey-Inspired Design System
   ============================================ */

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

/* ---- Variables ---- */
:root {
  --navy:    #0C1E3C;
  --blue:    #1255A1;
  --mid:     #2D6BB0;
  --light-blue: #E8F2FB;
  --gold:    #B8973A;
  --dark:    #111111;
  --body:    #3A3A3A;
  --muted:   #6B6B6B;
  --border:  #D9D9D9;
  --bg-alt:  #F6F6F4;
  --white:   #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --max-w: 1240px;
  --section-y: 90px;
  --transition: 0.25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* makes dark logos white */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item {
  position: relative;
}
.nav-item > a {
  display: block;
  padding: 0 20px;
  height: 72px;
  line-height: 72px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item > a.active { color: var(--blue); }
.nav-item > a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--blue);
}

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 100;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 13.5px;
  color: var(--body);
  border-bottom: 1px solid var(--bg-alt);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover {
  background: var(--light-blue);
  color: var(--blue);
}
.nav-cta {
  margin-left: 24px;
  padding: 10px 24px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition) !important;
  height: auto !important;
  line-height: 1 !important;
}
.nav-cta:hover { background: var(--blue) !important; color: var(--white) !important; }

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: var(--white);
  overflow-y: auto;
  z-index: 999;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 40px;
  font-size: 15px;
  color: var(--dark);
  border-bottom: 1px solid var(--bg-alt);
}
.mobile-menu a:hover { color: var(--blue); background: var(--light-blue); }
.mobile-menu .mobile-sub { padding-left: 60px; font-size: 14px; color: var(--muted); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18,85,161,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(18,85,161,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 780px;
  margin-bottom: 28px;
  position: relative;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 580px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: #0e4a8a; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--blue); }

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section { padding: var(--section-y) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); color: var(--white); }
.section-blue { background: var(--blue); color: var(--white); }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-dark .section-label,
.section-blue .section-label { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-dark .section-title,
.section-blue .section-title { color: var(--white); }

.section-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 52px;
}
.section-dark .section-intro,
.section-blue .section-intro { color: rgba(255,255,255,0.72); }

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-intro { margin-left: auto; margin-right: auto; }

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

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--white);
  padding: 44px 40px;
  position: relative;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover { background: var(--light-blue); }
.service-card-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
  transition: color var(--transition);
}
.service-card:hover .service-card-num { color: rgba(18,85,161,0.15); }
.service-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  flex-grow: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 8px;
}
.service-card-link svg { transition: transform var(--transition); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ============================================
   PROCESS STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.step {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--light-blue);
  line-height: 1;
  margin-bottom: 16px;
}
.section-dark .step-num { color: rgba(255,255,255,0.08); }
.section-dark .step { border-color: rgba(255,255,255,0.12); }
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-dark .step-title { color: var(--white); }
.step p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.section-dark .step p { color: rgba(255,255,255,0.58); }

/* ============================================
   INSIGHTS / BLOG CARDS
   ============================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.insight-card {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}
.insight-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.insight-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.insight-card:hover h3 { color: var(--blue); }
.insight-card p { font-size: 14px; color: var(--muted); line-height: 1.7; flex-grow: 1; }
.insight-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}
.insight-meta::before {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  display: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-block {
  position: relative;
}
.about-image-bg {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.about-image-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 28px 32px;
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--body);
}
.credential-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.team-card { display: flex; flex-direction: column; gap: 12px; }
.team-photo {
  aspect-ratio: 3/4;
  background: var(--light-blue);
  overflow: hidden;
  position: relative;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c8ddf0, #e8f2fb);
}
.team-photo-placeholder svg { opacity: 0.4; }
.team-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}
.team-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.team-bio { font-size: 14px; color: var(--muted); line-height: 1.7; }
.team-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.cred-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  background: var(--light-blue);
  color: var(--blue);
  letter-spacing: 0.06em;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-sidebar {
  position: sticky;
  top: 88px;
}
.sidebar-nav { border: 1px solid var(--border); }
.sidebar-nav-title {
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
}
.sidebar-nav a {
  display: block;
  padding: 13px 20px;
  font-size: 14px;
  color: var(--body);
  border-bottom: 1px solid var(--bg-alt);
  transition: all var(--transition);
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--blue);
  background: var(--light-blue);
  padding-left: 28px;
}
.sidebar-cta {
  margin-top: 24px;
  padding: 28px;
  background: var(--navy);
  color: var(--white);
}
.sidebar-cta h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.sidebar-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-detail-text span {
  font-size: 14px;
  color: var(--muted);
}

/* Contact Form */
.contact-form { }
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  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 7L11 1' stroke='%236B6B6B' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 15px 32px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.form-submit:hover { background: var(--blue); }
.form-msg {
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 12px;
  display: none;
}
.form-msg.success { background: #e6f4ea; color: #1e7e34; display: block; }
.form-msg.error { background: #fdecea; color: #b00020; display: block; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--navy);
  padding: 64px 0;
  display: flex;
  align-items: center;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
}
.cta-band p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #09182F;
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  gap: 20px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-question svg { flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 20px; }

/* ============================================
   INSIGHTS / BLOG LISTING
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.blog-card { display: flex; flex-direction: column; gap: 12px; }
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--light-blue);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--blue); }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.7; flex-grow: 1; }
.blog-card-date { font-size: 12px; color: var(--muted); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }

/* Featured post */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy);
  color: var(--white);
  margin-bottom: 60px;
}
.blog-featured-img {
  aspect-ratio: unset;
  background: var(--mid);
  overflow: hidden;
}
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.blog-featured-content { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-content .blog-card-tag { color: var(--gold); margin-bottom: 12px; }
.blog-featured-content h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}
.blog-featured-content p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 24px; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-40 { margin-bottom: 40px; }

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-y: 64px; }
  .container { padding: 0 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:nth-child(2n) { border-right: none; }
  .insights-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 52px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 72px 0 64px; }
  .hero-stats { gap: 32px; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; }
  .steps-grid { grid-template-columns: 1fr; }
  .insights-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .hero-stats { padding-top: 32px; margin-top: 40px; }
}
