/* ============================================================
   PACIFIC POINT — Site Stylesheet
   Brand: Navy #1B3667 | Blue #5D9BC2 | White #FFFFFF
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:        #1B3667;
  --navy-dark:   #132852;
  --navy-light:  #234080;
  --blue:        #5D9BC2;
  --blue-light:  #7CB5D5;
  --blue-pale:   #EAF3F9;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-100:    #F3F5F8;
  --gray-200:    #E8ECF2;
  --gray-400:    #9AAEC4;
  --gray-600:    #5A6E8A;
  --gray-800:    #2C3A4E;
  --text:        #2C3A4E;
  --text-muted:  #5A6E8A;

  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:       80px;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 8px rgba(27,54,103,0.08);
  --shadow-md:   0 6px 24px rgba(27,54,103,0.12);
  --shadow-lg:   0 16px 48px rgba(27,54,103,0.16);

  --transition:  0.25s ease;
  --max-w:       1200px;
  --section-v:   100px;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.75;
}

.serif { font-family: var(--font-serif); }
.text-navy  { color: var(--navy); }
.text-blue  { color: var(--blue); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: var(--section-v) 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-800);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

/* ---------- Hero (Default) ---------- */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235D9BC2' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(93,155,194,0.4);
  border-radius: 100px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero .lead { color: rgba(255,255,255,0.78); max-width: 640px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-divider {
  width: 60px; height: 3px;
  background: var(--blue);
  margin: 24px 0;
  border-radius: 2px;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .lead { color: rgba(255,255,255,0.75); }

/* ---------- Section Header ---------- */
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 600px; }
.section-header.centered p { margin: 0 auto; }
.section-rule {
  width: 48px; height: 3px;
  background: var(--blue);
  margin-bottom: 20px;
  border-radius: 2px;
}
.section-header.centered .section-rule { margin: 0 auto 20px; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 36px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--blue); }
.card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Stats Row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
/* For text-based trust markers (no fake numbers) */
.stat-word {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  display: block;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- Dark Section ---------- */
.section-dark {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark .lead { color: rgba(255,255,255,0.75); }

/* ---------- Light Section ---------- */
.section-light { background: var(--off-white); }
.section-pale  { background: var(--blue-pale); }

/* ---------- Process Steps ---------- */
.process-steps { counter-reset: step; }
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.process-step:last-child { border-bottom: none; }
.step-number {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 4px;
}
.step-content h4 { margin-bottom: 8px; font-size: 1.1rem; }
.step-content p  { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ---------- Insights / Blog Cards ---------- */
.insight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.insight-card-body { padding: 28px; flex: 1; }
.insight-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.insight-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.35;
}
.insight-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}
.insight-card-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.insight-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.insight-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.insight-read-more:hover { gap: 8px; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(93,155,194,0.12) 0%, transparent 70%);
}
.cta-section-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-section h2 { color: var(--white); margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.05rem; }
.cta-section .btn-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(93,155,194,0.15);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---------- Contact Info ---------- */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.contact-info-text h5 { font-family: var(--font-sans); font-weight: 600; margin-bottom: 4px; font-size: 0.9rem; color: var(--navy); }
.contact-info-text p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---------- VIFC Guide ---------- */
.guide-toc {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.guide-toc h4 { font-size: 1rem; margin-bottom: 12px; color: var(--navy); }
.guide-toc ol { padding-left: 20px; }
.guide-toc ol li { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 6px; }
.guide-toc ol li a { color: var(--blue); transition: color var(--transition); }
.guide-toc ol li a:hover { color: var(--navy); }

.guide-section { margin-bottom: 56px; }
.guide-section h2 { font-size: 1.9rem; margin-bottom: 20px; padding-top: 16px; border-top: 2px solid var(--gray-200); }
.guide-section h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--navy); }
.guide-section p { color: var(--text-muted); line-height: 1.8; }
.guide-section ul { padding-left: 24px; margin-bottom: 16px; }
.guide-section ul li { color: var(--text-muted); margin-bottom: 8px; line-height: 1.7; }
.guide-section ul li::marker { color: var(--blue); }

.guide-callout {
  background: var(--blue-pale);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 24px 0;
}
.guide-callout p { color: var(--navy); font-weight: 500; margin: 0; }

.guide-gate {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--white);
  margin-top: 48px;
}
.guide-gate h3 { color: var(--white); margin-bottom: 12px; }
.guide-gate p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.guide-gate .form-input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  text-align: center;
}
.guide-gate .form-input::placeholder { color: rgba(255,255,255,0.5); }
.guide-gate .form-input:focus {
  border-color: var(--blue-light);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 3px rgba(93,155,194,0.25);
}

/* ---------- About Page ---------- */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-card-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-avatar span {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.team-card-body { padding: 24px; }
.team-card-body h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card-body .role {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.team-card-body p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-item { display: flex; gap: 18px; }
.value-icon {
  width: 48px; height: 48px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 22px; height: 22px; stroke: var(--blue); }
.value-text h4 { margin-bottom: 6px; font-size: 1rem; }
.value-text p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---------- Services Page ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-icon {
  width: 64px; height: 64px;
  background: var(--blue-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-block-icon svg { width: 30px; height: 30px; stroke: var(--blue); }
.service-block h3 { font-size: 1.9rem; margin-bottom: 16px; }
.service-block p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.service-block ul { padding-left: 20px; margin-bottom: 28px; }
.service-block ul li { color: var(--text-muted); margin-bottom: 8px; font-size: 0.95rem; }
.service-block ul li::marker { color: var(--blue); }
.service-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 0L0 20L20 40L40 20L20 0z'/%3E%3C/g%3E%3C/svg%3E");
}
.service-visual-label {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-light); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--blue-light); }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 40px; width: auto; }
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ---------- Utilities ---------- */
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 8px; }
.mb-2  { margin-bottom: 16px; }
.mb-3  { margin-bottom: 24px; }
.mb-4  { margin-bottom: 32px; }
.mb-5  { margin-bottom: 40px; }
.mb-6  { margin-bottom: 56px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 32px; }
.mt-5  { margin-top: 40px; }
.gap-4 { gap: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

.divider {
  width: 100%;
  height: 1px;
  background: var(--gray-200);
  margin: 48px 0;
}

/* ---------- Mobile Navigation Drawer ---------- */
@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--gray-200);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 32px;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 16px 32px 4px; }
  .nav-mobile-toggle { display: flex; }

  .container { padding: 0 24px; }
  :root { --section-v: 64px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-actions { flex-direction: column; }
  .cta-section .btn-actions { flex-direction: column; align-items: center; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}

/* ---------- Page Split Layouts (two-column sections) ---------- */
.page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.page-split-start {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .page-split,
  .page-split-start,
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Hide decorative visual blocks on mobile to keep pages clean */
  .service-visual { height: 200px; }
  /* Contact grid stacks cleanly */
  .contact-direct { margin-top: 0; }
  /* Stats word wrapping on small screens */
  .stat-word { font-size: 1.05rem; }
  /* Btn actions stack */
  .btn-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .btn-actions { align-items: center; }
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 56px; }
  .page-hero { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 36px; }
  .section { padding: 48px 0; }
  .container { padding: 0 18px; }
  /* Process steps compact on mobile */
  .process-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .step-number { width: 44px; height: 44px; font-size: 1.1rem; }
  /* Card padding reduced */
  .card { padding: 20px; }
  .insight-card-body { padding: 20px; }
  .insight-card-footer { padding: 14px 20px; }
  /* Hero heading size */
  h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  /* Section header spacing */
  .section-header { margin-bottom: 36px; }
  /* Reduce large stat numbers */
  .stat-number { font-size: 2.2rem; }
  .stat-word { font-size: 1rem; word-break: break-word; }
  /* Hide purely decorative gradient blocks on small screens */
  .featured-grid > div:last-child { display: none; }
  /* CTA section tighter */
  .cta-section-inner { padding: 48px 20px; }
  /* Footer grid tighter */
  .footer-grid { gap: 28px; }
  /* Team card avatar smaller */
  .team-card-avatar { width: 64px; height: 64px; font-size: 1.2rem; }
}

/* ---------- Form Name Row (responsive 2-col) ---------- */
.form-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .form-name-row { grid-template-columns: 1fr; }
}

/* ---------- Prevent horizontal scroll ---------- */
html, body { overflow-x: hidden; max-width: 100%; }
