/* ============================================================
   BOOKKEEPING AT DOORSTEP — Premium Design System
   ============================================================ */

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

/* ─── Design Tokens ───────────────────────────────────────── */
:root {
  --navy:        #0C1B35;
  --navy-mid:    #162D54;
  --navy-light:  #1E3E72;
  --gold:        #C8943A;
  --gold-light:  #E0A84E;
  --gold-pale:   #F5E8D0;
  --cream:       #F7F4EE;
  --cream-dark:  #EAE5DC;
  --white:       #FFFFFF;
  --gray-900:    #111827;
  --gray-700:    #374151;
  --gray-500:    #6B7280;
  --gray-300:    #D1D5DB;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8: 2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;
  --sp-32: 8rem;

  --max-w: 1200px;
  --pad:   clamp(1.25rem, 5vw, 3rem);

  --r-sm:   6px;   --r-md: 12px;
  --r-lg:   20px;  --r-xl: 32px;
  --r-full: 9999px;

  --sh-sm:  0 1px 4px rgba(12,27,53,0.07), 0 1px 2px rgba(12,27,53,0.05);
  --sh-md:  0 4px 24px rgba(12,27,53,0.10), 0 2px 8px rgba(12,27,53,0.07);
  --sh-lg:  0 12px 48px rgba(12,27,53,0.14), 0 4px 16px rgba(12,27,53,0.08);
  --sh-xl:  0 24px 72px rgba(12,27,53,0.18);
  --sh-gold:0 4px 28px rgba(200,148,58,0.28);

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:     cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:    180ms;
  --dur-base:    320ms;
  --dur-slow:    560ms;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Layout ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section    { padding: var(--sp-24) 0; }
.section--sm{ padding: var(--sp-16) 0; }
.section--lg{ padding: var(--sp-32) 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); }
.section--white { background: var(--white); }

/* ─── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.18;
  color: var(--navy);
  font-weight: 700;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.body-lg { font-size: var(--text-lg); line-height: 1.8; color: var(--gray-500); }

/* ─── Section Header ──────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--sp-16);
}
.section-header .eyebrow { margin-bottom: var(--sp-4); }
.section-header h2 { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); letter-spacing: -0.02em; margin-bottom: var(--sp-4); }
.section-header p { font-size: var(--text-lg); color: var(--gray-500); }
.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,0.6); }
.section-header--light .eyebrow { color: var(--gold-light); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-full);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap; cursor: pointer;
}
.btn--gold   { background: var(--gold); color: var(--white); box-shadow: var(--sh-gold); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(200,148,58,0.38); }
.btn--navy   { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn--outline{ background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); transform: translateY(-2px); }
.btn--outline-navy { background: transparent; color: var(--navy); border: 1.5px solid rgba(12,27,53,0.3); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn--lg { padding: var(--sp-5) var(--sp-10); font-size: var(--text-base); }
.btn .arrow { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ─── Header ──────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: var(--sp-4) 0;
  transition: all var(--dur-base) var(--ease-out);
}
.header.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--sh-sm);
  padding: var(--sp-3) 0;
}
.header.transparent { background: transparent; }

.nav-container { display: flex; align-items: center; justify-content: space-between; }

.logo img { height: 80px; width: auto; object-fit: contain; transition: height var(--dur-base) var(--ease-out); }
.header.solid .logo img { height: 64px; }

.desktop-nav { display: flex; align-items: center; gap: var(--sp-1); }

.nav-link {
  font-size: var(--text-sm); font-weight: 500;
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-full);
  color: var(--navy);
  transition: all var(--dur-fast) var(--ease-out);
  position: relative;
}
.header.transparent .nav-link { color: rgba(255,255,255,0.85); }
.nav-link:hover { color: var(--gold); background: var(--gold-pale); }
.header.transparent .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.nav-link.active { color: var(--gold); }
.header.transparent .nav-link.active { color: var(--gold-light); }

.nav-cta-btn {
  background: var(--gold); color: var(--white) !important;
  padding: var(--sp-2) var(--sp-6) !important;
  box-shadow: var(--sh-gold);
}
.nav-cta-btn:hover { background: var(--gold-light) !important; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(200,148,58,0.4) !important; }

/* ─── Hamburger ───────────────────────────────────────────── */
.menu-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  padding: var(--sp-2); border-radius: var(--r-sm);
  z-index: 1001; position: relative; cursor: pointer;
  background: transparent; border: none; width: 44px; height: 44px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
  transform-origin: center;
}
.header.transparent .menu-toggle span { background: var(--white); }
.header.solid       .menu-toggle span { background: var(--navy); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease-out), visibility var(--dur-slow);
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); margin-bottom: var(--sp-10); }
.mobile-nav a {
  font-family: var(--font-display); font-size: clamp(var(--text-3xl), 8vw, var(--text-5xl));
  color: var(--white); font-weight: 700; letter-spacing: -0.02em;
  padding: var(--sp-2) var(--sp-8);
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), color var(--dur-fast);
}
.mobile-menu.open .mobile-nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-nav a:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.open .mobile-nav a:nth-child(2) { transition-delay: 130ms; }
.mobile-menu.open .mobile-nav a:nth-child(3) { transition-delay: 180ms; }
.mobile-menu.open .mobile-nav a:nth-child(4) { transition-delay: 230ms; }
.mobile-menu.open .mobile-nav a:nth-child(5) { transition-delay: 280ms; }
.mobile-nav a:hover { color: var(--gold-light); }

.mobile-contact {
  text-align: center; color: rgba(255,255,255,0.4); font-size: var(--text-sm);
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--dur-base) var(--ease-out) 330ms, transform var(--dur-base) var(--ease-out) 330ms;
}
.mobile-menu.open .mobile-contact { opacity: 1; transform: translateY(0); }
.mobile-contact a { color: var(--gold-light); font-weight: 600; }

/* ─── Scroll Reveal ───────────────────────────────────────── */
.reveal        { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal-left   { opacity: 0; transform: translateX(-28px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal-right  { opacity: 0; transform: translateX(28px);  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.in, .reveal-left.in, .reveal-right.in { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }
.delay-5 { transition-delay: 400ms; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(12,27,53,0.93) 0%, rgba(12,27,53,0.80) 55%, rgba(12,27,53,0.45) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding-top: 120px; padding-bottom: var(--sp-24);
  max-width: 780px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(200,148,58,0.14); border: 1px solid rgba(200,148,58,0.32);
  color: var(--gold-light); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: var(--sp-2) var(--sp-5); border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}
.hero h1 {
  color: var(--white); font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  line-height: 1.06; letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
  animation: fadeUp 0.8s var(--ease-out) 0.38s both;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: var(--text-lg); color: rgba(255,255,255,0.72);
  max-width: 540px; line-height: 1.78;
  margin-bottom: var(--sp-10);
  animation: fadeUp 0.8s var(--ease-out) 0.52s both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  margin-bottom: var(--sp-16);
  animation: fadeUp 0.8s var(--ease-out) 0.64s both;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--sp-6);
  animation: fadeUp 0.8s var(--ease-out) 0.78s both;
}
.trust-badge {
  display: flex; align-items: center; gap: var(--sp-2);
  color: rgba(255,255,255,0.6); font-size: var(--text-sm); font-weight: 500;
}
.trust-badge svg { color: var(--gold); flex-shrink: 0; }

.hero-scroll {
  position: absolute; bottom: var(--sp-8); left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  color: rgba(255,255,255,0.35); font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase;
  animation: fadeIn 1s var(--ease-out) 1.4s both;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s var(--ease-io) infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes fadeUp  { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes float   { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }

/* ─── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(100px + var(--sp-16)) 0 var(--sp-20);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle at top right, rgba(200,148,58,0.12) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero .eyebrow { color: var(--gold-light); margin-bottom: var(--sp-4); }
.page-hero h1 {
  color: var(--white); font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  letter-spacing: -0.03em; margin-bottom: var(--sp-5);
}
.page-hero p { font-size: var(--text-lg); color: rgba(255,255,255,0.65); max-width: 520px; }

/* ─── Service Cards (homepage preview) ───────────────────── */
.service-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6);
}
.service-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--sp-10) var(--sp-8);
  border: 1px solid var(--cream-dark); box-shadow: var(--sh-sm);
  transition: all var(--dur-base) var(--ease-out);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px; background: var(--gold-pale); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: var(--sp-6);
  transition: all var(--dur-base) var(--ease-out);
}
.service-card:hover .svc-icon { background: var(--gold); color: var(--white); }
.service-card h3 { font-size: var(--text-xl); margin-bottom: var(--sp-3); }
.service-card p  { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.72; margin-bottom: var(--sp-6); }
.svc-link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); font-weight: 600; color: var(--gold);
  transition: gap var(--dur-fast) var(--ease-out);
}
.service-card:hover .svc-link { gap: var(--sp-3); }

/* ─── Stats Bar ───────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: var(--sp-16) 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  divide-x: 1px solid rgba(255,255,255,0.08);
}
.stat-item {
  text-align: center; padding: var(--sp-8) var(--sp-4);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(var(--text-4xl), 4vw, var(--text-6xl));
  font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: var(--sp-2);
  display: block;
}
.stat-lbl { font-size: var(--text-sm); color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

/* ─── Why Section ─────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-20); align-items: center;
}
.why-img-col { position: relative; }
.why-img-wrap {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-xl);
}
.why-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; }
.why-float-card {
  position: absolute; bottom: var(--sp-8); right: calc(-1 * var(--sp-8));
  background: var(--white); border-radius: var(--r-lg); padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--sh-xl); display: flex; align-items: center; gap: var(--sp-4);
}
.why-float-icon {
  width: 48px; height: 48px; background: var(--gold-pale); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.why-float-card strong { display: block; font-size: var(--text-xl); font-weight: 700; color: var(--navy); line-height:1; }
.why-float-card span  { font-size: var(--text-xs); color: var(--gray-500); letter-spacing:0.05em; }

.why-content .eyebrow { margin-bottom: var(--sp-4); }
.why-content h2 { font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl)); letter-spacing:-0.02em; margin-bottom: var(--sp-5); }
.why-content .body-lg { margin-bottom: var(--sp-8); }
.feature-list { display: flex; flex-direction: column; gap: var(--sp-5); margin-bottom: var(--sp-10); }
.feature-item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.feat-check {
  width: 22px; height: 22px; background: var(--gold-pale); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0; margin-top: 2px;
}
.feat-text strong { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.feat-text span   { font-size: var(--text-sm); color: var(--gray-500); }

/* ─── Testimonials ────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }
.testi-card {
  background: var(--white); border-radius: var(--r-lg); padding: var(--sp-8);
  border: 1px solid var(--cream-dark); box-shadow: var(--sh-sm);
  transition: all var(--dur-base) var(--ease-out);
  display: flex; flex-direction: column;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.testi-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: var(--sp-5); }
.testi-quote {
  font-family: var(--font-display); font-size: var(--text-lg);
  color: var(--navy); line-height: 1.65; font-style: italic;
  margin-bottom: var(--sp-6); flex: 1;
}
.testi-author {
  display: flex; align-items: center; gap: var(--sp-3);
  padding-top: var(--sp-5); border-top: 1px solid var(--cream-dark);
}
.testi-avatar {
  width: 42px; height: 42px; border-radius: var(--r-full);
  background: var(--gold-pale); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg);
  flex-shrink: 0;
}
.testi-name { font-size: var(--text-sm); font-weight: 600; color: var(--navy); }
.testi-role { font-size: var(--text-xs); color: var(--gray-500); }

/* ─── Industries Preview ──────────────────────────────────── */
.ind-preview-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-4); }
.ind-card {
  background: var(--cream); border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6); text-align: center;
  border: 1px solid transparent;
  transition: all var(--dur-base) var(--ease-out);
}
.ind-card:hover { background: var(--navy); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.ind-icon { width: 52px; height: 52px; margin: 0 auto var(--sp-4); color: var(--gold); transition: color var(--dur-fast); }
.ind-card:hover .ind-icon { color: var(--gold-light); }
.ind-card h4 { font-size: var(--text-sm); font-weight: 600; color: var(--navy); transition: color var(--dur-fast); }
.ind-card:hover h4 { color: var(--white); }

/* ─── CTA Banner ──────────────────────────────────────────── */
.cta-banner { background: var(--navy); padding: var(--sp-24) 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,148,58,0.14) 0%, transparent 70%);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -160px; left: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(200,148,58,0.07) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 740px; margin: 0 auto; }
.cta-inner h2 {
  color: var(--white); margin-bottom: var(--sp-4);
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl)); letter-spacing: -0.02em;
}
.cta-inner p { color: rgba(255,255,255,0.6); font-size: var(--text-lg); margin-bottom: var(--sp-10); }
.cta-actions { display: flex; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; }

/* ─── Footer ──────────────────────────────────────────────── */
.footer { background: #070E1C; color: rgba(255,255,255,0.55); padding: var(--sp-20) 0 var(--sp-8); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-16); margin-bottom: var(--sp-16);
  padding-bottom: var(--sp-16); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img { height: 56px; margin-bottom: var(--sp-5); filter: brightness(0) invert(1) opacity(0.85); }
.footer-brand p { font-size: var(--text-sm); line-height: 1.8; max-width: 270px; margin-bottom: var(--sp-6); }
.footer-logo { display: inline-block; margin-bottom: var(--sp-5); }
.footer-logo img { height: 72px; width: auto; display: block; filter: none; }
.footer-badges { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.footer-badge { display: inline-flex; align-items: center; font-size: var(--text-xs); font-weight: 600; color: var(--gold); background: rgba(200,148,58,0.12); border: 1px solid rgba(200,148,58,0.2); padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full); }
.footer-socials { display: flex; gap: var(--sp-2); }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--dur-fast) var(--ease-out);
}
.social-btn:hover { background: var(--gold); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--white);
  margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-links a { font-size: var(--text-sm); color: rgba(255,255,255,0.45); transition: color var(--dur-fast); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-row { display: flex; align-items: flex-start; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.footer-contact-row svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a, .footer-contact-row span { font-size: var(--text-sm); color: rgba(255,255,255,0.45); transition: color var(--dur-fast); }
.footer-contact-row a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-4);
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: var(--sp-6); }
.footer-bottom-links a { font-size: var(--text-xs); color: rgba(255,255,255,0.25); transition: color var(--dur-fast); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ─── About Page ──────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: var(--sp-20); align-items: start; }
.about-img-col { position: relative; }
.about-img-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); }
.about-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.about-img-secondary { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); margin-top: var(--sp-4); }
.about-img-secondary img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.cred-badges { position: absolute; bottom: var(--sp-6); right: calc(-1 * var(--sp-4)); display: flex; flex-direction: column; gap: var(--sp-3); }
.cred-badge {
  background: var(--white); border-radius: var(--r-md); padding: var(--sp-3) var(--sp-5);
  display: flex; align-items: center; gap: var(--sp-3);
  box-shadow: var(--sh-lg); white-space: nowrap;
}
.cred-badge svg { color: var(--gold); flex-shrink: 0; }
.cred-badge span { font-size: var(--text-sm); font-weight: 600; color: var(--navy); }
.about-content .eyebrow { margin-bottom: var(--sp-3); }
.about-content h2 { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); letter-spacing: -0.02em; margin-bottom: var(--sp-6); }
.about-content p { font-size: var(--text-base); color: var(--gray-500); line-height: 1.85; margin-bottom: var(--sp-5); }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4);
  margin: var(--sp-8) 0 var(--sp-10);
}
.about-stat { background: var(--cream); border-radius: var(--r-md); padding: var(--sp-5) var(--sp-6); border: 1px solid var(--cream-dark); }
.about-stat .stat-num { font-size: var(--text-4xl); color: var(--gold); margin-bottom: var(--sp-1); }
.about-stat .stat-lbl { font-size: var(--text-xs); color: var(--gray-500); }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }
.value-card {
  background: var(--white); border-radius: var(--r-lg); padding: var(--sp-8) var(--sp-7);
  border: 1px solid var(--cream-dark); transition: all var(--dur-base) var(--ease-out);
}
.value-card:hover { border-color: var(--gold-pale); box-shadow: var(--sh-md); transform: translateY(-4px); }
.val-icon {
  width: 52px; height: 52px; background: var(--gold-pale); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: var(--sp-5);
}
.value-card h3 { font-size: var(--text-xl); margin-bottom: var(--sp-3); }
.value-card p  { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.75; }

/* ─── Services Page ───────────────────────────────────────── */
.svc-detail-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-16); align-items: center;
  padding: var(--sp-20) 0; border-bottom: 1px solid var(--cream-dark);
}
.svc-detail-item:last-child { border-bottom: none; }
.svc-detail-item.flip { direction: rtl; }
.svc-detail-item.flip > * { direction: ltr; }

.svc-detail-visual {
  background: var(--cream); border-radius: var(--r-xl);
  min-height: 360px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.svc-detail-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream) 100%);
}
.svc-big-icon {
  position: relative; z-index: 1;
  width: 100px; height: 100px; background: var(--gold); border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: var(--sh-gold);
  animation: float 4s ease-in-out infinite;
}
.svc-detail-content .eyebrow { margin-bottom: var(--sp-3); }
.svc-detail-content h2 { font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl)); letter-spacing: -0.02em; margin-bottom: var(--sp-5); }
.svc-detail-content p  { font-size: var(--text-base); color: var(--gray-500); line-height: 1.85; margin-bottom: var(--sp-6); }
.svc-feat-list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-8); }
.svc-feat-list li {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--text-sm); color: var(--gray-700);
}
.svc-feat-list li::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
}

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-8); position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 1px;
  background: var(--cream-dark); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 54px; height: 54px; background: var(--gold); border-radius: var(--r-full);
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-6); box-shadow: var(--sh-gold);
}
.process-step h4 { font-size: var(--text-lg); color: var(--navy); margin-bottom: var(--sp-3); }
.process-step p  { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.7; }

/* ─── Service Detail Extensions ──────────────────────────── */
.svc-detail-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); }
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 380px; }
.svc-lead { font-size: var(--text-xl) !important; font-weight: 600; color: var(--navy) !important; font-family: var(--font-display); font-style: italic; line-height: 1.5 !important; margin-bottom: var(--sp-5) !important; }
.svc-note { font-size: var(--text-sm) !important; color: var(--gray-400) !important; font-style: italic; margin-bottom: var(--sp-6) !important; }
.svc-feature-list { list-style: none; padding: 0; margin: 0 0 var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-3); }
.svc-feature-list li { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--text-sm); color: var(--gray-600); line-height: 1.6; }
.svc-feature-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.svc-feature-list--light li { color: rgba(255,255,255,0.75); }
.svc-feature-list--light li svg { color: var(--gold-light); }
.svc-detail-content--light h2 { color: var(--white); }
.svc-detail-content--light .svc-lead { color: rgba(255,255,255,0.9) !important; }
.svc-detail-content--light p { color: rgba(255,255,255,0.65) !important; }
.section--navy .svc-detail-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.section-tag--gold { background: rgba(200,148,58,0.15) !important; color: var(--gold) !important; }

/* ─── Industries Page ─────────────────────────────────────── */
.ind-full-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-6); }

/* Large industry cards (industries.html) */
.ind-card {
  background: var(--white); border-radius: var(--r-lg); padding: var(--sp-8) var(--sp-7);
  border: 1px solid var(--cream-dark); transition: all var(--dur-base) var(--ease-out);
  display: flex; flex-direction: column; gap: var(--sp-4);
}
.ind-card:hover { border-color: var(--gold); box-shadow: var(--sh-md); transform: translateY(-5px); }
.ind-card-icon {
  width: 64px; height: 64px; background: var(--cream); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  transition: all var(--dur-base) var(--ease-out); flex-shrink: 0;
}
.ind-card:hover .ind-card-icon { background: var(--gold); color: var(--white); box-shadow: var(--sh-gold); }
.ind-card h3 { font-size: var(--text-xl); margin: 0; transition: color var(--dur-fast); }
.ind-card:hover h3 { color: var(--gold); }
.ind-card > p { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.78; margin: 0; }
.ind-card-list { list-style: none; padding: 0; margin: var(--sp-2) 0 0; display: flex; flex-direction: column; gap: var(--sp-2); border-top: 1px solid var(--cream-dark); padding-top: var(--sp-4); }
.ind-card-list li { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); color: var(--navy); font-weight: 500; }
.ind-card-list li svg { color: var(--gold); flex-shrink: 0; }

/* Industry photo split section */
.ind-photo-section { background: var(--cream); }
.ind-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-20); align-items: center; }
.ind-photo-content { }
.ind-photo-content h2 { font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl)); margin-bottom: var(--sp-5); }
.ind-photo-content p { font-size: var(--text-base); color: var(--gray-500); line-height: 1.85; margin-bottom: var(--sp-5); }
.ind-photo-content p:last-of-type { margin-bottom: var(--sp-8); }
.ind-photo-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); }
.ind-photo-img img { width: 100%; height: 100%; object-fit: cover; display: block; max-height: 520px; }

/* Not Listed section */
.not-listed-section { background: var(--navy); }
.not-listed-inner {
  text-align: center; max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-5);
}
.not-listed-icon {
  width: 72px; height: 72px; background: rgba(200,148,58,0.15); border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.not-listed-inner h3 { font-size: var(--text-3xl); color: var(--white); margin: 0; }
.not-listed-inner p { font-size: var(--text-base); color: rgba(255,255,255,0.65); line-height: 1.85; margin: 0; }

/* Small preview cards (homepage) */
.ind-preview-card { background: var(--white); border-radius: var(--r-md); padding: var(--sp-5); border: 1px solid var(--cream-dark); display: flex; align-items: center; gap: var(--sp-3); font-size: var(--text-sm); font-weight: 500; color: var(--navy); transition: all var(--dur-fast) var(--ease-out); }
.ind-preview-card:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.ind-preview-card .ind-icon { color: var(--gold); flex-shrink: 0; }

/* ─── Contact Page ────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--sp-16); align-items: start; }

/* Info column */
.contact-info-block { margin-bottom: var(--sp-8); }
.contact-info-block h3 { font-size: var(--text-3xl); margin-bottom: var(--sp-4); }
.contact-info-block p { font-size: var(--text-base); color: var(--gray-500); line-height: 1.85; margin: 0; }
.contact-methods { display: flex; flex-direction: column; gap: var(--sp-4); margin-bottom: var(--sp-8); }
.contact-method {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5); background: var(--cream);
  border-radius: var(--r-md); border: 1px solid transparent;
  text-decoration: none; color: inherit;
  transition: all var(--dur-fast) var(--ease-out);
}
.contact-method:hover { border-color: var(--gold); background: var(--white); box-shadow: var(--sh-sm); }
.contact-method-icon {
  width: 46px; height: 46px; background: var(--white); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
  box-shadow: var(--sh-sm);
}
.contact-method-text { display: flex; flex-direction: column; gap: 2px; }
.contact-method-label { font-size: var(--text-xs); font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.07em; }
.contact-method-value { font-size: var(--text-sm); font-weight: 600; color: var(--navy); }

/* Trust panel */
.contact-trust-panel {
  background: var(--navy); border-radius: var(--r-lg); padding: var(--sp-7) var(--sp-7);
}
.contact-trust-panel h4 { font-size: var(--text-lg); color: var(--white); margin-bottom: var(--sp-5); }
.contact-expect-list { list-style: none; padding: 0; margin: 0 0 var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-expect-list li { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--text-sm); color: rgba(255,255,255,0.75); line-height: 1.6; }
.contact-expect-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-creds { display: flex; flex-wrap: wrap; gap: var(--sp-3); border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--sp-5); }
.contact-creds span { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-xs); font-weight: 600; color: var(--gold); background: rgba(200,148,58,0.12); padding: var(--sp-2) var(--sp-3); border-radius: var(--r-full); }

/* Form column */
.contact-form-wrap {
  background: var(--cream); border-radius: var(--r-xl); padding: var(--sp-10) var(--sp-10);
  border: 1px solid var(--cream-dark);
}
.contact-form-header { margin-bottom: var(--sp-8); }
.contact-form-header h3 { font-size: var(--text-2xl); margin-bottom: var(--sp-2); }
.contact-form-header p { font-size: var(--text-sm); color: var(--gray-500); margin: 0; }
.form-row { display: grid; gap: var(--sp-4); }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.form-group label { font-size: var(--text-sm); font-weight: 600; color: var(--navy); }
.req { color: var(--gold); }
.form-group input, .form-group textarea, .form-group select {
  padding: var(--sp-4) var(--sp-5); border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--r-md); font-family: var(--font-body); font-size: var(--text-sm);
  color: var(--navy); background: var(--white);
  transition: border-color var(--dur-fast) var(--ease-out);
  width: 100%; appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,148,58,0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-300); }
.form-group textarea { min-height: 140px; resize: vertical; }
.btn--full { width: 100%; justify-content: center; }
.form-note {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-size: var(--text-xs); color: var(--gray-400); margin-top: var(--sp-4); text-align: center;
}
.form-note svg { color: var(--gray-300); flex-shrink: 0; }
.form-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: var(--sp-4); padding: var(--sp-16) var(--sp-8);
}
.form-success-icon {
  width: 72px; height: 72px; background: rgba(200,148,58,0.1); border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.form-success h4 { font-size: var(--text-2xl); color: var(--navy); margin: 0; }
.form-success p { font-size: var(--text-base); color: var(--gray-500); margin: 0; }

/* ─── FAQ Strip ───────────────────────────────────────────── */
.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.faq-item {
  background: var(--white); border-radius: var(--r-lg); padding: var(--sp-8);
  border: 1px solid var(--cream-dark); transition: box-shadow var(--dur-fast) var(--ease-out);
}
.faq-item:hover { box-shadow: var(--sh-md); }
.faq-item h4 { font-size: var(--text-base); font-weight: 700; color: var(--navy); margin-bottom: var(--sp-3); line-height: 1.5; }
.faq-item p { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.8; margin: 0; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .ind-preview-grid { grid-template-columns: repeat(4,1fr); }
  .why-grid { gap: var(--sp-12); }
  .svc-detail-item { gap: var(--sp-10); }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }

  /* Typography */
  .hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 3rem); }
  .section { padding: var(--sp-16) 0; }

  /* Grids */
  .service-cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(2), .stat-item:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-float-card { right: var(--sp-6); }
  .testi-grid { grid-template-columns: 1fr; }
  .ind-preview-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .cred-badges { position: static; flex-direction: row; flex-wrap: wrap; margin-top: var(--sp-5); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .svc-detail-item { grid-template-columns: 1fr; direction: ltr !important; padding: var(--sp-10) 0; }
  .svc-detail-item.flip > * { direction: ltr; }
  .svc-detail-img img { min-height: 260px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .ind-full-grid { grid-template-columns: repeat(2,1fr); }
  .ind-photo-grid { grid-template-columns: 1fr; }
  .ind-photo-img { max-height: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }

  /* CTA banner */
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-btns { justify-content: center; }
}

@media (max-width: 640px) {
  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding-top: var(--sp-12); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; width: 100%; }
  .hero-trust { flex-direction: column; gap: var(--sp-2); align-items: flex-start; }
  .hero-scroll { display: none; }

  /* Page hero */
  .page-hero { padding: calc(var(--header-h) + var(--sp-10)) 0 var(--sp-10); }
  .page-hero p { font-size: var(--text-base); }

  /* Sections */
  .section { padding: var(--sp-12) 0; }
  .section-header { margin-bottom: var(--sp-10); }
  .section-header p { font-size: var(--text-base); }

  /* Grids */
  .testi-grid { grid-template-columns: 1fr; }
  .ind-preview-grid { grid-template-columns: repeat(2,1fr); }
  .ind-full-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }

  /* Why section */
  .why-float-card { position: static; margin-top: var(--sp-4); }

  /* Services */
  .svc-detail-item { padding: var(--sp-8) 0; }
  .svc-detail-img img { min-height: 220px; }

  /* Stats */
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3) { border-bottom: none; }

  /* Contact */
  .form-row--2 { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: var(--sp-7) var(--sp-5); }
  .contact-trust-panel { padding: var(--sp-6); }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .cta-banner-btns { flex-direction: column; width: 100%; }
  .cta-banner-btns .btn { justify-content: center; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; text-align: center; gap: var(--sp-3); }
  .footer-bottom-links { justify-content: center; }

  /* Not listed */
  .not-listed-inner { padding: 0 var(--sp-4); }
}
