/* ============================================
   Asia-Pacific Link Consulting Ltd.
   Connecting Asia-Pacific · Empowering the Future
   Shared Stylesheet
   ============================================ */

:root {
  --navy: #0a1628;
  --navy-light: #111d35;
  --navy-lighter: #18273f;
  --navy-800: #142a44;
  --gold: #c9a96e;
  --gold-light: #d4b87a;
  --gold-dark: #b8944a;
  --white: #ffffff;
  --off-white: #f5f4f0;
  --gray-50: #f8f9fb;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ec;
  --gray-300: #c8cdd6;
  --gray-400: #9aa1ad;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dark: #1a2a3a;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 8px 32px rgba(0,0,0,0.28);
  --shadow-gold: 0 8px 32px rgba(201,169,110,0.18);
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1240px;
  --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.serif { font-family: 'Georgia', 'Times New Roman', serif; }

/* ============ Typography ============ */
h1, h2, h3, h4, h5 { font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.section-subtitle.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}
.section-divider.center { margin: 0 auto 28px; }
.section-header.center { text-align: center; }
.section-header.center .section-divider { margin-left: auto; margin-right: auto; }

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); color: var(--gold); }
.btn-arrow::after { content: '\2192'; font-size: 1.1rem; transition: transform var(--transition); }
.btn-arrow:hover::after { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}
.link-arrow::after { content: '\2192'; transition: transform var(--transition); }
.link-arrow:hover { color: var(--gold-light); }
.link-arrow:hover::after { transform: translateX(6px); }

/* ============ Header / Nav ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  transition: var(--transition);
}
.header.scrolled { background: rgba(10,22,40,0.97); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-weight: 900; font-size: 1.05rem;
  font-family: Georgia, serif;
  letter-spacing: -0.5px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text .brand { color: var(--white); font-size: 0.98rem; font-weight: 700; letter-spacing: 0.5px; }
.logo-text .tag { color: var(--gold); font-size: 0.66rem; letter-spacing: 2.2px; text-transform: uppercase; margin-top: 3px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.4px;
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.has-arrow::after { content: ' \25BE'; font-size: 0.7rem; opacity: 0.7; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--navy-light);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.86rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
}
.dropdown a:hover { background: rgba(201,169,110,0.1); color: var(--gold); padding-left: 20px; }
.dropdown a .desc { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.2px; }

.nav-cta { margin-left: 14px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.83rem; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  color: var(--white);
  font-size: 1.5rem;
}

/* ============ Hero ============ */
.hero {
  min-height: 92vh;
  padding: calc(var(--header-h) + 40px) 0 60px;
  display: flex; align-items: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 60% at 15% 20%, rgba(201,169,110,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(44,95,138,0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  font-weight: 600;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 960px;
  font-weight: 700;
}
.hero-title .accent { color: var(--white); font-style: italic; font-family: Georgia, serif; font-weight: 400; }
.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,169,110,0.18);
}
.hero-stat .num { font-family: Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--gold); font-weight: 700; line-height: 1; }
.hero-stat .label { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }

/* ============ Cards ============ */
.card-grid { display: grid; gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--navy-light);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
}
.card:hover { transform: translateY(-6px); border-color: rgba(201,169,110,0.35); box-shadow: var(--shadow); }
.card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--gold);
  transition: height var(--transition);
}
.card:hover::before { height: 100%; }
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201,169,110,0.18), rgba(201,169,110,0.06));
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 24px;
  font-family: Georgia, serif;
  font-weight: 700;
}
.card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.card .link-arrow { font-size: 0.76rem; }

/* Insight card */
.insight-card {
  background: var(--navy-light);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.insight-card:hover { transform: translateY(-4px); border-color: rgba(201,169,110,0.3); box-shadow: var(--shadow); }
.insight-image {
  height: 200px;
  position: relative;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-lighter));
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,169,110,0.4);
  font-size: 3.4rem;
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: -2px;
  overflow: hidden;
}
.insight-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--navy-light) 100%);
  opacity: 0.55;
}
.insight-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.insight-category {
  font-size: 0.7rem; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px; font-weight: 700;
}
.insight-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 12px; line-height: 1.4; }
.insight-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.insight-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; color: var(--gray-400); letter-spacing: 0.5px; }

/* ============ Page Hero ============ */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 90px;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(201,169,110,0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  position: relative;
}
.page-hero .breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 24px; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb .sep { color: var(--gold); }
.page-hero .breadcrumb .current { color: var(--gold); }
.page-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 940px;
  line-height: 1.12;
}
.page-hero .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 740px;
  line-height: 1.8;
}

/* ============ Sections ============ */
section.alt { background: var(--navy-light); }
section.dark { background: #060e1c; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col.narrow { gap: 80px; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-box {
  background: var(--navy-light);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-box:hover { border-color: rgba(201,169,110,0.35); transform: translateY(-4px); }
.stat-box .num {
  font-family: Georgia, serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 10px;
}
.stat-box .label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

/* Feature list */
.feature-list { display: grid; gap: 20px; }
.feature-item {
  display: flex; gap: 20px;
  padding: 24px;
  background: var(--navy-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,169,110,0.08);
  transition: var(--transition);
}
.feature-item:hover { border-color: rgba(201,169,110,0.3); }
.feature-item .icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-weight: 700; font-size: 1.05rem;
}
.feature-item h4 { color: var(--white); margin-bottom: 6px; font-size: 1.05rem; }
.feature-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* Tables */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid rgba(201,169,110,0.15); }
table.data-table {
  width: 100%; border-collapse: collapse; background: var(--navy-light);
  font-size: 0.9rem;
}
table.data-table th {
  background: var(--navy-lighter);
  color: var(--gold);
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(201,169,110,0.25);
  font-size: 0.78rem;
  text-transform: uppercase;
}
table.data-table td {
  padding: 16px 20px;
  color: var(--text);
  border-bottom: 1px solid rgba(201,169,110,0.08);
}
table.data-table tr:hover td { background: rgba(201,169,110,0.04); }
table.data-table tr:last-child td { border-bottom: none; }

/* ============ CTA Banner ============ */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(201,169,110,0.10) 0%, rgba(44,95,138,0.10) 100%),
    var(--navy-light);
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  padding: 90px 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 18px; }
.cta-banner p { color: var(--text-muted); max-width: 600px; margin: 0 auto 32px; font-size: 1rem; line-height: 1.75; }
.cta-banner .btn-group { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ============ Footer ============ */
.footer {
  background: #050b18;
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; max-width: 320px; margin-top: 18px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  font-family: Georgia, serif;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.86rem; color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li.plain { color: var(--text-muted); font-size: 0.86rem; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(201,169,110,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  flex-wrap: wrap;
  gap: 16px;
  letter-spacing: 0.5px;
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a:hover { color: var(--gold); }

/* ============ Utilities ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0 !important; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

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

/* Prose */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 1.7rem; color: var(--white); margin: 40px 0 16px; }
.prose h3 { font-size: 1.25rem; color: var(--gold); margin: 32px 0 12px; }
.prose p { font-size: 1rem; color: var(--text); line-height: 1.9; margin-bottom: 18px; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
  color: var(--gold-light);
  font-style: italic;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.7;
}
.prose ul, .prose ol { margin: 16px 0 24px 22px; }
.prose ul li, .prose ol li { color: var(--text); margin-bottom: 10px; line-height: 1.8; }
.prose img { border-radius: var(--radius-md); margin: 24px 0; }
.prose .lead { font-size: 1.15rem; color: var(--gold-light); margin-bottom: 32px; line-height: 1.75; font-family: Georgia, serif; }

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Form styles */
.form-group { margin-bottom: 16px; }
.form-label { display: block; color: var(--text); font-size: 0.8rem; margin-bottom: 8px; letter-spacing: 0.8px; text-transform: uppercase; font-weight: 600; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  background: var(--navy);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color .3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .nav-link { padding: 10px 10px; font-size: 0.82rem; }
}
@media (max-width: 1024px) {
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--navy-light); flex-direction: column; padding: 20px; gap: 0; border-bottom: 1px solid rgba(201,169,110,0.15); box-shadow: var(--shadow); }
  .nav-menu.open { display: flex; }
  .nav-menu .nav-item { width: 100%; }
  .nav-menu .nav-link { display: block; padding: 14px 12px; border-bottom: 1px solid rgba(201,169,110,0.08); }
  .nav-menu .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; padding: 8px 0 8px 20px; min-width: 0; }
  .nav-cta { width: 100%; margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .two-col.narrow { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .section-padding { padding: 70px 0; }
  .page-hero { padding-top: calc(var(--header-h) + 50px); padding-bottom: 60px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
