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

:root {
  --primary: #253650;
  --primary-dark: #10243E;
  --accent: #4a7fd4;
  --accent2: #609EF0;
  --accent3: #7D60F0;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #f0f4f8;
  --mid-gray: #e2e8f0;
  --text-dark: #1a1a2e;
  --text-body: #4a5568;
  --text-light: #718096;
  --footer-bg: #1e2d4a;

  --shadow-service:
    0 0 4px 0 rgba(125,96,240,1),
    5px 78px 22px 0 rgba(0,0,0,0),
    3px 50px 20px 0 rgba(0,0,0,0.01),
    2px 28px 17px 0 rgba(0,0,0,0.05);
  --shadow-value:
    0 0 4px 0 rgba(0,0,0,0.25),
    90px 90px 22px 0 rgba(0,0,0,0),
    40px 50px 20px 0 rgba(0,0,0,0.01),
    2px 28px 17px 0 rgba(0,0,0,0.05);
  --shadow-vm:
    0 0 4px 0 rgba(0,0,0,0.25),
    2px 28px 17px 0 rgba(0,0,0,0.05),
    40px 50px 20px 0 rgba(0,0,0,0.01),
    90px 90px 22px 0 rgba(0,0,0,0);
  --shadow-tab-selected:
    0 0 4px 0 rgba(125,96,240,1),
    5px 78px 22px 0 rgba(0,0,0,0),
    3px 50px 20px 0 rgba(0,0,0,0.01),
    2px 28px 17px 0 rgba(0,0,0,0.05);
  --shadow-tab-unselected:
    0 0 4px 0 rgba(0,0,0,0.25),
    5px 78px 22px 0 rgba(0,0,0,0),
    3px 50px 20px 0 rgba(0,0,0,0.01),
    2px 28px 17px 0 rgba(0,0,0,0.05);
  --shadow-card-selected:
    0 0 4px 0 rgba(125,96,240,1),
    5px 78px 22px 0 rgba(0,0,0,0),
    3px 50px 20px 0 rgba(0,0,0,0.01),
    2px 28px 17px 0 rgba(0,0,0,0.05);
  --shadow-card-unselected:
    0 0 4px 0 rgba(0,0,0,0.5),
    5px 78px 22px 0 rgba(0,0,0,0),
    3px 50px 20px 0 rgba(0,0,0,0.01),
    2px 28px 17px 0 rgba(0,0,0,0.05);
  --shadow-detail:
    0 0 4px 0 rgba(0,0,0,0.25),
    90px 90px 22px 0 rgba(0,0,0,0),
    40px 50px 20px 0 rgba(0,0,0,0.01),
    2px 28px 17px 0 rgba(0,0,0,0.05);
  --radius: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text-body); background: var(--white); line-height: 1.6; font-size: 15px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--primary);
  height: 72px; display: flex; align-items: center;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 40px;
}
.navbar-logo { display: flex; align-items: center; }
.navbar-logo img { height: 38px; width: auto; display: block; }
.navbar-menu { display: flex; align-items: center; gap: 4px; }
.navbar-menu a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85);
  padding: 8px 16px; border-radius: 6px; transition: all 0.2s;
}
.navbar-menu a:hover { color: white; background: rgba(255,255,255,0.12); }
.navbar-menu a.active {
  background: white; color: var(--primary-dark); font-weight: 600;
}
.navbar-menu .btn-contact { color: rgba(255,255,255,0.85); }
.navbar-menu .btn-contact:hover { color: white; background: rgba(255,255,255,0.12); }
.navbar-menu .btn-contact.active { background: white; color: var(--primary-dark); font-weight: 600; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; }

/* ── HERO ── */
.hero { position: relative; overflow: visible; margin-top: 72px; }
.hero-image { width: 100%; height: 500px; object-fit: cover; object-position: center; display: block; }
.hero-card-wrap {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: center; align-items: flex-end;
  transform: translateY(50%);
  z-index: 10; padding: 0 40px;
}
.hero-box {
  background: linear-gradient(135deg, rgba(37,54,80,0.97) 0%, rgba(44,90,160,0.95) 100%);
  border-radius: var(--radius); padding: 36px 48px;
  width: 820px; max-width: 100%;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-box h1 { font-size: 30px; font-weight: 700; color: white; line-height: 1.3; margin-bottom: 12px; }
.hero-box p { font-size: 14px; color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 22px; }
.hero-spacer { height: 130px; }

/* ── PAGE HERO (all inner pages) ── */
.page-hero { position: relative; overflow: visible; margin-top: 72px; }
.page-hero-image { width: 100%; height: 420px; object-fit: cover; object-position: center; display: block; }
.page-hero-card-wrap {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: center; align-items: flex-end;
  transform: translateY(50%);
  z-index: 10; padding: 0 40px;
}
.page-hero-box {
  background: linear-gradient(135deg, rgba(37,54,80,0.97) 0%, rgba(44,90,160,0.95) 100%);
  border-radius: var(--radius); padding: 34px 44px;
  width: 820px; max-width: 100%;
  border: 1px solid rgba(255,255,255,0.15);
}
.page-hero-box h1 { font-size: 28px; font-weight: 700; color: white; margin-bottom: 12px; line-height: 1.3; }
.page-hero-box p { font-size: 14px; color: rgba(255,255,255,0.86); line-height: 1.7; }
.page-hero-spacer { height: 130px; }

/* ── PAGE HERO CARD OUTER (used in services/about/privacy/terms) ── */
.page-hero-card-outer {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: center;
  position: relative; z-index: 10;
  margin-top: -50%;
}


/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: white;
  padding: 12px 26px; border-radius: 8px;
  font-weight: 600; font-size: 14px; transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ── LAYOUT ── */
.section { padding: 80px 0; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: 30px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; line-height: 1.3; }
.section-header .underline { width: 60px; height: 3px; background: var(--accent); margin: 0 auto 18px; border-radius: 2px; }
.section-header p { max-width: 800px; margin: 0 auto; color: var(--text-body); font-size: 15px; line-height: 1.8; }
.bg-light { background: var(--off-white); }
.bg-white { background: white; }

/* ── HOME SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.services-grid .service-card-center { grid-column: 2; }
.service-card { background: white; border-radius: var(--radius); padding: 28px 24px; transition: transform 0.2s; box-shadow: var(--shadow-service); }
.service-card:hover { transform: translateY(-3px); }
.service-card .icon-wrap { width: 56px; height: 56px; margin-bottom: 16px; }
.service-card .icon-wrap img { width: 56px; height: 56px; object-fit: contain; display: block; background: transparent; }
.service-card h3 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; }
.service-card p { font-size: 13.5px; color: var(--text-body); line-height: 1.7; margin-bottom: 18px; }
.service-card .know-more { display: inline-flex; align-items: center; gap: 8px; background: #609EF0; color: white; padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; transition: all 0.2s; }
.service-card .know-more:hover { background: #4a8ad4; }

/* ── VISION MISSION ── */
.vision-mission { position: relative; overflow: hidden; min-height: 480px; }
.vm-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.vm-overlay { position: absolute; inset: 0; background: rgba(8, 18, 40, 0.55); }
.vm-inner { position: relative; z-index: 2; padding: 60px 0 72px; }
.vm-header-center { text-align: center; margin-bottom: 44px; }
.vm-header-center h2 { font-size: 34px; font-weight: 700; color: white; margin-bottom: 14px; }
.vm-underline { width: 70px; height: 3px; background: rgba(255,255,255,0.5); border-radius: 2px; margin: 0 auto; }
.vm-cards-centered { display: flex; flex-direction: row; gap: 28px; justify-content: center; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .vm-cards-centered { flex-direction: column; } }
.vm-card {
  background: #EEF5FF; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-vm); position: relative; flex: 1;
}
.vm-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  padding: 1.5px; background: linear-gradient(135deg, #609EF0, #7D60F0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.vm-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.vm-card-header .vm-icon { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vm-card-header .vm-icon svg { width: 28px; height: 28px; }
.vm-card-header h3 { font-size: 17px; font-weight: 700; color: #609EF0; }
.vm-card p { font-size: 13.5px; color: #253650; line-height: 1.75; }

/* ── VALUE PROPOSITION ── */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: white; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-value); transition: transform 0.2s; }
.value-card:hover { transform: translateY(-3px); }
.value-card .v-icon { width: 56px; height: 56px; margin-bottom: 16px; }
.value-card .v-icon img { width: 56px; height: 56px; object-fit: contain; display: block; background: transparent; }
.value-card h3 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--text-body); line-height: 1.65; }

/* ── SERVICES PAGE TABS ── */
.services-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; justify-content: center; }
.service-tab {
  display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 8px;
  cursor: pointer; font-size: 13px; font-weight: 500; color: var(--text-body);
  background: white; border: 1.5px solid transparent; box-shadow: var(--shadow-tab-unselected); transition: all 0.2s;
  text-align: left;
}
.service-tab img.tab-icon { width: 24px; height: 24px; object-fit: contain; display: block; background: transparent; }
.service-tab.active { color: var(--primary-dark); font-weight: 600; background: white; box-shadow: var(--shadow-tab-selected); position: relative; }
.service-tab.active::before {
  content: ''; position: absolute; inset: 0; border-radius: 8px; padding: 1.5px;
  background: linear-gradient(135deg, #609EF0, #7D60F0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

.service-detail { display: none; }
.service-detail.active { display: block; background: white; border-radius: var(--radius); padding: 32px 36px; max-width: 900px; margin: 0 auto; box-shadow: 0 2px 16px 0 rgba(37,54,80,0.10); border: 1px solid rgba(37,54,80,0.08); }
.service-detail-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.service-detail-header svg { width: 72px; height: 72px; flex-shrink: 0; }
.service-detail-header img.svc-thumb { width: 84px; height: 84px; border-radius: 10px; object-fit: cover; flex-shrink: 0; border: 2px solid #253650; box-shadow: none; }
.service-detail-header h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.service-detail-header p { font-size: 13px; color: var(--text-body); line-height: 1.7; }
.service-detail h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.service-detail ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.service-detail ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-body); line-height: 1.65; }
.service-detail ul li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; border-radius: 50%;
  background-color: #253650;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.service-detail .detail-note { font-size: 13px; color: var(--text-body); line-height: 1.75; padding-top: 16px; border-top: 1px solid var(--mid-gray); }

/* ── ABOUT LEADERSHIP ── */
.leadership-layout { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; }
.team-list { display: flex; flex-direction: column; gap: 12px; }
.team-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-radius: var(--radius-sm); cursor: pointer;
  background: white; box-shadow: var(--shadow-card-unselected);
  border: 1.5px solid transparent; position: relative; transition: all 0.2s;
}
.team-card.active { box-shadow: var(--shadow-card-selected); }
.team-card.active::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-sm); padding: 1.5px;
  background: linear-gradient(135deg, #609EF0, #7D60F0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.team-card-info { display: flex; align-items: center; gap: 12px; }
.team-card-info img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: top; background: #fff; }
.team-card-info h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.team-card-info span { color: #609EF0; font-size: 13px; }
.linkedin-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.linkedin-btn svg { width: 32px; height: 32px; display: block; }

.team-detail-panel { display: none; }
.team-detail-panel.active { display: block; background: white; border-radius: var(--radius); padding: 36px; position: relative; box-shadow: var(--shadow-detail); }
.team-detail-panel::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(to bottom, var(--primary), var(--accent)); border-radius: 4px 0 0 4px; }
.team-detail-panel h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-detail-panel .role { font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 18px; display: block; }
.team-detail-panel p { font-size: 14.5px; color: var(--text-body); line-height: 1.85; margin-bottom: 14px; }
.team-detail-panel p:last-child { margin-bottom: 0; }

/* ── CONTACT ── */
.contact-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.contact-info .address { font-size: 13.5px; color: var(--text-body); line-height: 1.85; margin-bottom: 20px; }
.contact-detail { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 13.5px; color: var(--text-body); }
.contact-detail .ci-icon { width: 20px; text-align: center; font-size: 15px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.contact-detail a { color: var(--text-body); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--mid-gray); height: 340px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }
.contact-form-wrap { background: white; border-radius: var(--radius); padding: 36px; position: relative; }
.contact-form-wrap::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius); padding: 1.5px;
  background: linear-gradient(135deg, #6071F0 0%, #ffffff 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.contact-form-wrap h3 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.contact-form-wrap .sub { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group input, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--mid-gray); border-radius: 7px; font-family: 'Poppins', sans-serif; font-size: 13.5px; color: var(--text-dark); background: var(--off-white); outline: none; transition: all 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); background: white; }
.form-group textarea { height: 110px; resize: vertical; }
.btn-submit { width: 100%; padding: 12px; background: var(--primary); color: white; border: none; border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.btn-submit:hover { background: var(--primary-dark); }

/* ── LEGAL ── */
.legal-wrap { max-width: 900px; margin: 0 auto; }
.legal-block { border-left: 3px solid var(--accent); padding-left: 20px; margin-bottom: 30px; }
.legal-block h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.legal-block p { font-size: 13.5px; color: var(--text-body); line-height: 1.85; margin-bottom: 8px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { list-style: disc; padding-left: 20px; margin-top: 6px; }
.legal-block ul li { font-size: 13.5px; color: var(--text-body); line-height: 1.85; margin-bottom: 4px; }
.legal-disclaimer { font-size: 13px; color: var(--text-light); font-style: italic; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--mid-gray); }
.contact-row { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-body); margin-bottom: 8px; }
.contact-row a { color: var(--text-body); }

/* ── FOOTER ── */
footer { background: var(--footer-bg); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col p { font-size: 12.5px; line-height: 1.8; margin-bottom: 5px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 12.5px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 9px; font-size: 12.5px; color: rgba(255,255,255,0.75); }
.fci-icon { width: 18px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.social-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.social-links a { display: flex; align-items: center; justify-content: center; transition: opacity 0.2s; }
.social-links a:hover { opacity: 0.85; }
.social-links a svg { display: block; border-radius: 6px; }
.footer-qr { text-align: center; }
.footer-qr h4 { white-space: nowrap; font-size: 12px; letter-spacing: 0; text-transform: none; font-weight: 600; }
.footer-qr-box { width: 138px; height: 138px; border-radius: 8px; margin: 12px auto 14px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.footer-qr-box img { width: 110px; height: 110px; object-fit: contain; display: block; }
.footer-app-row { display: flex; gap: 8px; justify-content: center; align-items: center; flex-wrap: nowrap; }
.footer-app-row a { display: flex; flex-shrink: 0; }
.footer-app-row a img { height: 36px; width: auto; object-fit: contain; display: block; border-radius: 6px; }
.store-badge-btn { border-radius: 6px; overflow: hidden; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--primary); z-index: 999; padding: 16px 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); flex-direction: column; gap: 4px; }
.mobile-nav a { display: block; padding: 12px 16px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85); border-radius: 8px; }
.mobile-nav a:hover { background: rgba(255,255,255,0.1); color: white; }
.mobile-nav .m-contact { border: 1px solid rgba(255,255,255,0.3); text-align: center; margin-top: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card-center { grid-column: auto; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .vm-layout { grid-template-columns: 1fr; gap: 30px; }
  .footer-qr h4 { white-space: normal; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .navbar .container { padding: 0 20px; }
  .navbar-menu { display: none; }
  .hamburger { display: flex; }
  .hero-image { height: 260px; }
  .hero-card-wrap { padding: 0 16px; }
  .hero-box { padding: 22px 20px; }
  .hero-box h1 { font-size: 20px; }
  .hero-spacer { height: 110px; }
  .page-hero-image { height: 260px; }
  .page-hero-card-wrap { padding: 0 16px; }
  .page-hero-box { padding: 22px 20px; }
  .page-hero-box h1 { font-size: 20px; }
  .page-hero-spacer { height: 110px; }
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  @media (max-width: 600px) { .services-tabs { flex-direction: column; } }
  .leadership-layout { grid-template-columns: 1fr; }
  .contact-two-col { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* About page gap reduction */
.about-page .section.hero-gap { padding-bottom: 40px; }
.about-page .section.bg-light:first-of-type { padding-top: 40px; }

/* Home page clients section gap reduction */
.clients-section { padding-bottom: 40px; }
.services-section { padding-top: 40px; }
