/* ============================================================
   C & G Solutions — Corporate Design System
   Inspired by clearairinc.com clean B2B aesthetic
   ============================================================ */

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

/* ---- TOKENS ---- */
:root {
  --navy:        #0B1F3A;
  --navy-deep:   #060f1e;
  --navy-mid:    #122545;
  --blue-accent: #1453A0;
  --gold:        #C9A84C;
  --gold-hover:  #B8962E;
  --gold-tint:   rgba(201,168,76,0.10);
  --white:       #ffffff;
  --gray-50:     #F5F7FA;
  --gray-100:    #EAECF2;
  --gray-300:    #C8CFDB;
  --gray-500:    #7A8699;
  --gray-700:    #3D4A5E;
  --text:        #0B1F3A;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   12px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.05);
  --shadow:      0 2px 8px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.07);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.13);

  --transition:  0.22s ease;
  --max-w:       1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
input, button { font-family: inherit; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section        { padding: 5.5rem 0; }
.section--gray  { background: var(--gray-50); }
.section--navy  { background: var(--navy); }
.section--deep  { background: var(--navy-deep); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.section-title--white { color: var(--white); }

.section-lead {
  font-size: 1.02rem;
  color: var(--gray-500);
  line-height: 1.82;
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.section-lead--white { color: rgba(255,255,255,0.68); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.65rem;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-gold  { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }

.btn-navy  { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--gray-50); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* -- Logo -- */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-mark svg { display: block; width: 40px; height: 40px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 0.56rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* -- Links -- */
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.15rem;
  flex: 1;
}
.nav-links a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--gold); }

.nav-cta { flex-shrink: 0; margin-left: auto; }

/* ============================================================
   HERO — LANDING
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 9rem 1.75rem 5rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--gold);
  display: block;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 730px;
  margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 10rem 1.75rem 5.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.22);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,31,58,0.97) 35%, rgba(11,31,58,0.60) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  max-width: 680px;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.page-hero-divider {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.4rem 0;
}
.page-hero-lead {
  font-size: 1.04rem;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  line-height: 1.82;
}

/* ============================================================
   SERVICE CARDS — LANDING
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }

.card-icon-wrap {
  width: 52px; height: 52px;
  background: var(--gold-tint);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon-wrap svg {
  width: 24px; height: 24px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}

.card-tag  { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.45rem; }
.card-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.7rem; line-height: 1.3; }
.card-text  { font-size: 0.88rem; color: var(--gray-500); line-height: 1.78; }
.card-link  {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.5rem; font-size: 0.78rem; font-weight: 700;
  color: var(--navy); letter-spacing: 0.03em;
  transition: all var(--transition);
}
.card-link:hover { color: var(--gold); gap: 0.65rem; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--navy); padding: 4rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.03em; margin-bottom: 0.4rem; }
.stat-label  { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.14em; }

/* ============================================================
   TRUST / CREDIBILITY BAR
   ============================================================ */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 2.75rem 1.75rem;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray-500); white-space: nowrap;
}
.trust-badges { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
.trust-badge  { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.trust-badge-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.trust-badge-icon svg { width: 32px; height: 32px; stroke: var(--gray-700); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.trust-badge span { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); text-align: center; max-width: 64px; line-height: 1.3; }

/* ============================================================
   ICON FEATURE COLUMNS (Why C&G / 3-up)
   ============================================================ */
.icon-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.icon-feature {
  padding: 2.25rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.icon-feature:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.icon-feature-icon {
  width: 48px; height: 48px;
  background: var(--gold-tint);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.icon-feature-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.icon-feature h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 0.55rem; }
.icon-feature p  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.73; }

/* ============================================================
   FEATURE ROW (2-col image + text)
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-top: 1px solid var(--gray-100);
}
.feature-row:first-of-type { border-top: none; padding-top: 0; }
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }

.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }

.feature-num   { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.feature-title { font-size: 1.45rem; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 1rem; letter-spacing: -0.015em; }
.feature-text  { font-size: 0.92rem; color: var(--gray-700); line-height: 1.82; margin-bottom: 0.85rem; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.875rem; color: var(--gray-700); line-height: 1.6;
}
.feature-list li::before {
  content: '';
  display: block; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0; margin-top: 0.5rem;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: var(--gray-100);
}
.process-step { padding: 0 1rem; position: relative; z-index: 1; }
.step-num-wrap {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.step-num { font-size: 0.75rem; font-weight: 800; color: var(--gold); letter-spacing: 0.06em; }
.step-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.3; }
.step-text  { font-size: 0.82rem; color: var(--gray-500); line-height: 1.72; }

/* ============================================================
   CAPABILITY LIST / DARK PANEL
   ============================================================ */
.cap-panel {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.cap-panel h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--white);
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cap-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.cap-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6;
}
.cap-list li::before { content: '→'; color: var(--gold); font-size: 0.78rem; flex-shrink: 0; margin-top: 0.12rem; }

/* Light version */
.cap-list--light li { color: var(--gray-700); }
.cap-list--light li::before { color: var(--gold); }

/* ============================================================
   FOCUS AREA CARDS (3x2 grid)
   ============================================================ */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.focus-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 3px solid var(--gold);
  transition: all var(--transition);
}
.focus-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.focus-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 0.55rem; }
.focus-card p  { font-size: 0.84rem; color: var(--gray-500); line-height: 1.72; }

/* ============================================================
   REGION TAGS
   ============================================================ */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.tag {
  display: inline-block;
  padding: 0.38rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}
.tag:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ============================================================
   CLIENT TYPE CARDS (2x2)
   ============================================================ */
.client-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.client-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; align-items: flex-start; gap: 1.25rem;
  transition: all var(--transition);
}
.client-card:hover { box-shadow: var(--shadow); border-color: rgba(201,168,76,0.35); }
.client-card-icon {
  width: 42px; height: 42px;
  background: var(--gray-50); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.client-card-icon svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.client-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.client-card p  { font-size: 0.84rem; color: var(--gray-500); line-height: 1.68; }

/* ============================================================
   QUOTE BLOCK
   ============================================================ */
.quote-block {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 3rem;
}
.quote-block blockquote {
  font-size: 1.08rem; line-height: 1.82;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}
.quote-source {
  display: block;
  margin-top: 1rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  padding-left: 1.5rem;
}

/* ============================================================
   DOMAIN CARDS (Canal Brief 3x2)
   ============================================================ */
.domain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.domain-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.domain-card:hover { box-shadow: var(--shadow); border-color: rgba(201,168,76,0.35); }
.domain-icon {
  width: 42px; height: 42px;
  background: var(--gold-tint); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.domain-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.domain-tag   { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.domain-title { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.35; }
.domain-text  { font-size: 0.84rem; color: var(--gray-500); line-height: 1.72; }

/* ============================================================
   ISSUE CARDS (Canal Brief recent issues)
   ============================================================ */
.issue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.issue-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.25s ease;
}
.issue-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(201,168,76,0.4); }
.issue-date    { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.55rem; }
.issue-title   { font-size: 0.97rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 0.55rem; }
.issue-excerpt { font-size: 0.84rem; color: var(--gray-500); line-height: 1.72; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--gold);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-text   { font-size: 0.9rem; color: var(--gray-700); line-height: 1.8; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-source { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   SUBSCRIBE FORM
   ============================================================ */
.subscribe-wrap { max-width: 500px; margin: 0 auto; }
.subscribe-form {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--gold);
}
.subscribe-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  font-size: 0.88rem;
  border: none; outline: none;
  background: var(--white);
  color: var(--navy);
}
.subscribe-form .btn { border-radius: 0; border: none; }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section { background: var(--navy); padding: 5.5rem 0; }
.cta-section--left { text-align: left; }
.cta-section .container { text-align: center; }
.cta-section--left .container { text-align: left; }

/* ============================================================
   SPLIT CTA (text left, list right)
   ============================================================ */
.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); padding: 5.5rem 0 2.5rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.75rem; }

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

.footer-brand-name {
  font-size: 0.9rem; font-weight: 800; color: var(--white);
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.65rem;
}
.footer-brand p {
  font-size: 0.84rem; color: rgba(255,255,255,0.42);
  line-height: 1.78; max-width: 290px; margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.84rem; color: rgba(255,255,255,0.42); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.footer-contact p   { font-size: 0.84rem; color: rgba(255,255,255,0.42); line-height: 1.8; }
.footer-contact a   { color: var(--gold); }
.footer-contact a:hover { opacity: 0.8; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.28); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .icon-features    { grid-template-columns: repeat(2, 1fr); }
  .domain-grid      { grid-template-columns: repeat(2, 1fr); }
  .focus-grid       { grid-template-columns: repeat(2, 1fr); }
  .issue-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .process-steps    { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .footer-top       { grid-template-columns: 1fr 1fr; }
  .footer-brand     { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row--reverse { direction: ltr; }
  .services-grid { grid-template-columns: 1fr; }
  .client-grid   { grid-template-columns: 1fr; }
  .icon-features { grid-template-columns: 1fr; }
  .domain-grid   { grid-template-columns: 1fr; }
  .focus-grid    { grid-template-columns: 1fr; }
  .issue-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .split-cta     { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top    { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links     { display: none; }
  .nav-cta       { margin-left: auto; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input { border-bottom: 1px solid var(--gray-100); }
  .subscribe-form .btn  { border-radius: 0; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
}
