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

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #f4f7fc;
  color: #0d1b2a;
  font-family: 'Nunito Sans', Arial, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.siteHeader {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid #ccdaec;
  box-shadow: 0 2px 24px rgba(0,51,102,0.07);
}

.siteHeaderInner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 28px; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}

.siteHeaderBrand { display: inline-flex; align-items: center; text-decoration: none; overflow: visible; }
.siteHeaderBrandLogo { height: 36px; width: auto; display: block; }
.siteHeaderBrandMark { width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; background: #003366; color: #ffffff; }
.siteHeaderBrand { display: inline-flex; align-items: center; text-decoration: none; overflow: visible; flex-shrink: 0; min-width: 160px; }


.siteHeaderToggle { display: none; border: 1.5px solid #003366; border-radius: 8px; background: #ffffff; color: #003366; padding: 9px 12px; font-family: inherit; cursor: pointer; }

.siteHeaderPanel { display: flex; align-items: center; gap: 24px; }
.siteHeaderNav { display: flex; gap: 4px; flex-wrap: nowrap; }

.siteHeaderNav a { text-decoration: none; color: #4a5d70; font-size: 13.5px; font-weight: 600; padding: 6px 8px; border-radius: 6px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.siteHeaderNav a:hover { color: #003366; background: #e8f0fb; }

.siteHeaderLanguages { display: flex; gap: 4px; }
.siteHeaderLanguageButton {
  border: 1.5px solid #ccdaec; border-radius: 999px;
  background: transparent; color: #4a5d70;
  padding: 5px 13px; font-size: 12px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: all 0.2s;
}
.siteHeaderLanguageButton:hover { border-color: #003366; color: #003366; background: #e8f0fb; }
.siteHeaderLanguageButton.isActive { border-color: #66cc33; background: #66cc33; color: #ffffff; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.heroSection {
  padding: 90px 28px 80px;
  background:
    linear-gradient(135deg, #001f3f 0%, #003366 45%, #0a4f8a 100%);
  position: relative; overflow: hidden;
}

/* animated background blobs */
.heroSection::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(102,204,51,0.18), transparent 70%);
  animation: heroFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.heroSection::after {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.15), transparent 70%);
  animation: heroFloat 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.heroSectionInner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 52px; align-items: center; position: relative; z-index: 1;
}

.heroSectionEyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #66cc33; font-weight: 800; margin-bottom: 20px;
}
.heroSectionEyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: #66cc33; border-radius: 2px;
}

.heroSectionTitle {
  margin: 0 0 24px; font-size: 56px; line-height: 1.06;
  font-weight: 800; letter-spacing: -0.03em; color: #ffffff;
}

.heroSectionTitle em { font-style: normal; color: #66cc33; }

.heroSectionText {
  margin: 0 0 36px; font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,0.72); max-width: 560px;
}

span.preponaHeroSectionText { font-weight: 800; color: #66cc33 !important; }

.heroSectionActions { display: flex; gap: 14px; flex-wrap: wrap; }

.heroSectionPrimaryButton {
  background: #66cc33; color: #ffffff;
  text-decoration: none; padding: 15px 32px;
  border: 2px solid #66cc33; border-radius: 8px;
  font-family: inherit; font-size: 15px; font-weight: 800;
  box-shadow: 0 8px 28px rgba(102,204,51,0.35);
  transition: all 0.25s; letter-spacing: 0.02em;
}
.heroSectionPrimaryButton:hover {
  background: #4fa326; border-color: #4fa326;
  transform: translateY(-3px); box-shadow: 0 14px 36px rgba(102,204,51,0.45);
}

.heroSectionSecondaryButton {
  background: rgba(255,255,255,0.10); color: #ffffff;
  text-decoration: none; padding: 15px 32px;
  border: 2px solid rgba(255,255,255,0.35); border-radius: 8px;
  font-family: inherit; font-size: 15px; font-weight: 700;
  transition: all 0.25s; backdrop-filter: blur(4px);
}
.heroSectionSecondaryButton:hover {
  background: rgba(255,255,255,0.20); border-color: rgba(255,255,255,0.60);
  transform: translateY(-3px);
}

/* Hero Panel */
.heroSectionPanel { position: relative; display: flex; align-items: center; justify-content: center; }

.heroSectionPanelGlow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(102,204,51,0.20), rgba(0,180,216,0.12), transparent 70%);
  filter: blur(16px); animation: heroFloat 7s ease-in-out infinite;
}

.heroSectionPanelCard {
  position: relative; width: 100%; max-width: 440px;
  padding: 28px; border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}

.heroSectionPanelLabel {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #66cc33; font-weight: 800; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.heroSectionPanelLabel::before { content: ''; width: 18px; height: 2px; background: #66cc33; border-radius: 2px; }

.heroSectionPanelFeatureGrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }

.heroSectionPanelFeatureCard {
  padding: 14px 12px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
}
.heroSectionPanelFeatureCard:hover { background: rgba(102,204,51,0.12); }

.heroSectionPanelFeatureTitle { font-size: 13px; color: #ffffff; font-weight: 800; margin-bottom: 4px; }
.heroSectionPanelFeatureText { font-size: 11px; line-height: 1.5; color: rgba(255,255,255,0.60); }

.heroSectionPanelSupportList { display: grid; gap: 8px; }

.heroSectionPanelSupportItem {
  padding: 10px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; gap: 10px;
  transition: background 0.2s;
}
.heroSectionPanelSupportItem::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: #66cc33; color: #ffffff;
  font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.heroSectionPanelSupportItem:hover { background: rgba(102,204,51,0.10); }

/* ══════════════════════════════════════════
   VALUE BAR
══════════════════════════════════════════ */
.valueBarSection { padding: 0 28px; }

.valueBarInner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  background: #ffffff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 32px rgba(0,51,102,0.10);
  overflow: hidden;
  border-bottom: 3px solid #66cc33;
}

.valueBarItem {
  padding: 22px 20px;
  font-size: 13.5px; font-weight: 700; color: #003366;
  border-right: 1px solid #ccdaec;
  position: relative; cursor: default;
  transition: background 0.2s;
  display: flex; align-items: center; gap: 10px;
}
.valueBarItem::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #66cc33; flex-shrink: 0;
}
.valueBarItem:last-child { border-right: none; }
.valueBarItem:hover { background: #e8f0fb; }

/* ══════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════ */
.aboutSection,
.capabilitiesSection,
.solutionsSection,
.ourClientsSection,
.insightSection,
.corporateGovernanceSection,
.contactSection { padding: 88px 28px; }

/* Alternating bg */
.capabilitiesSection,
.ourClientsSection,
.corporateGovernanceSection { background: #eef3fa; }

/* Eyebrows */
.solutionsSectionEyebrow, .capabilitiesSectionEyebrow, .ourClientsSectionEyebrow,
.corporateGovernanceSectionEyebrow, .aboutSectionEyebrow, .ourJourneySectionEyebrow,
.insightSectionEyebrow, .contactSectionEyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #4fa326; font-weight: 800; margin-bottom: 14px;
}
.solutionsSectionEyebrow::before, .capabilitiesSectionEyebrow::before,
.ourClientsSectionEyebrow::before, .corporateGovernanceSectionEyebrow::before,
.aboutSectionEyebrow::before, .ourJourneySectionEyebrow::before,
.insightSectionEyebrow::before, .contactSectionEyebrow::before {
  content: ''; display: inline-block; width: 20px; height: 2px;
  background: #66cc33; border-radius: 2px;
}

/* Titles */
.solutionsSectionTitle, .capabilitiesSectionTitle, .ourClientsSectionTitle,
.corporateGovernanceSectionTitle, .aboutSectionTitle, .ourJourneySectionTitle,
.insightSectionTitle, .contactSectionTitle {
  margin: 0 0 16px; font-size: 38px; line-height: 1.12;
  font-weight: 800; letter-spacing: -0.02em; color: #003366;
}

/* Body text */
.solutionsSectionText, .capabilitiesSectionText, .ourClientsSectionText,
.corporateGovernanceSectionText, .aboutSectionText, .ourJourneySectionText,
.insightSectionText, .contactSectionText {
  margin: 0; font-size: 16.5px; line-height: 1.75; color: #4a5d70;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.aboutSectionInner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}

.aboutSectionContent { border-top: 3px solid #003366; padding-top: 28px; }

.ourJourneySectionContent { border-top: 3px solid #66cc33; padding-top: 28px; }

.ourJourneySectionEyebrow { color: #4fa326; }

.ourJourneySectionTitle {
  margin: 0 0 16px; font-size: 32px; line-height: 1.15;
  font-weight: 800; letter-spacing: -0.02em; color: #003366;
}

.ourJourneySectionText { font-size: 16px; line-height: 1.75; color: #4a5d70; }

.aboutSectionFooter, .capabilitiesSectionFooter, .solutionsSectionFooter {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: #003366; font-weight: 800;
  font-size: 14px; margin-top: 20px; padding-bottom: 20px;
  transition: color 0.2s, gap 0.2s;
}
.aboutSectionFooter::after, .capabilitiesSectionFooter::after, .solutionsSectionFooter::after {
  content: '→'; transition: transform 0.2s;
}
.aboutSectionFooter:hover, .capabilitiesSectionFooter:hover, .solutionsSectionFooter:hover {
  color: #4fa326; gap: 14px;
}
.aboutSectionFooter:visited, .capabilitiesSectionFooter:visited, .solutionsSectionFooter:visited { color: #003366; text-decoration: none; }

/* ══════════════════════════════════════════
   CAPABILITIES
══════════════════════════════════════════ */
.capabilitiesSectionInner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}

.capabilitiesSectionColumn:first-child { border-top: 3px solid #003366; padding-top: 28px; position: sticky; top: 90px; }

.capabilitiesSectionColumn:last-child { border-top: 3px solid #66cc33; padding-top: 28px; }

.capabilitiesSectionItem {
  padding: 20px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #ccdaec;
  background: #ffffff;
  transition: all 0.25s;
  cursor: default;
}
.capabilitiesSectionItem:hover {
  border-color: #66cc33;
  box-shadow: 0 6px 24px rgba(102,204,51,0.12);
  transform: translateX(6px);
}

.capabilitiesSectionItemTitle {
  margin: 0 0 6px; font-size: 17px; font-weight: 800; color: #003366;
  display: flex; align-items: center; gap: 10px;
}
.capabilitiesSectionItemTitle::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #66cc33; flex-shrink: 0;
}
.capabilitiesSectionItemText { margin: 0; color: #4a5d70; font-size: 14.5px; line-height: 1.65; }

/* ══════════════════════════════════════════
   SOLUTIONS
══════════════════════════════════════════ */
.solutionsSectionInner { max-width: 1140px; margin: 0 auto; }
.solutionsSectionHeader { max-width: 720px; margin-bottom: 40px; border-top: 3px solid #003366; padding-top: 28px; }

.solutionsGrid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }

.solutionsGridCard {
  padding: 30px 28px; border-radius: 14px;
  background: #ffffff;
  border: 1px solid #ccdaec;
  box-shadow: 0 8px 32px rgba(0,51,102,0.10);
  transition: all 0.28s;
  position: relative; overflow: hidden;
}
.solutionsGridCard::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #003366, #66cc33);
}
.solutionsGridCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,51,102,0.14);
  border-color: transparent;
}

.solutionsGridCardIndex {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #4fa326; margin-bottom: 14px;
  background: #edfae3; padding: 4px 10px; border-radius: 999px;
}

.solutionsGridCardTitle { margin: 0 0 12px; font-size: 20px; font-weight: 800; color: #003366; line-height: 1.25; }
.solutionsGridCardText { margin: 0; font-size: 14.5px; line-height: 1.7; color: #4a5d70; }

/* ══════════════════════════════════════════
   OUR CLIENTS
══════════════════════════════════════════ */
.ourClientsSectionInner { max-width: 1140px; margin: 0 auto; }
.ourClientsSectionHeader { max-width: 720px; margin-bottom: 40px; border-top: 3px solid #66cc33; padding-top: 28px; }

.ourClientsGrid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }

.ourClientsGridCard {
  padding: 28px; border-radius: 14px;
  background: #ffffff;
  border: 1px solid #ccdaec;
  box-shadow: 0 8px 32px rgba(0,51,102,0.10);
  transition: all 0.28s;
  position: relative;
}
.ourClientsGridCard::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #66cc33, #00b4d8);
  border-radius: 0 0 14px 14px;
  transform: scaleX(0); transition: transform 0.3s;
  transform-origin: left;
}
.ourClientsGridCard:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,51,102,0.12); }
.ourClientsGridCard:hover::after { transform: scaleX(1); }

.ourClientsGridCardIndex {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: #e8f0fb; color: #003366;
  font-size: 13px; font-weight: 800; margin-bottom: 16px;
}

.ourClientsGridCardTitle { margin: 0 0 10px; font-size: 19px; font-weight: 800; color: #003366; }
.ourClientsGridCardText { margin: 0; font-size: 14.5px; line-height: 1.7; color: #4a5d70; }

/* ══════════════════════════════════════════
   INSIGHTS
══════════════════════════════════════════ */
.insightSectionInner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start;
}

.insightSectionContent { border-top: 3px solid #003366; padding-top: 28px; }

.insightSectionList {
  border-top: 1px solid #ccdaec; margin-top: 8px;
  border-top: 3px solid #66cc33; padding-top: 28px;
}

.insightSectionListItem {
  padding: 18px 16px; font-size: 15px; line-height: 1.6;
  color: #003366; font-weight: 700;
  border-bottom: 1px solid #ccdaec;
  display: flex; align-items: center; gap: 12px;
  transition: all 0.2s; cursor: default; border-radius: 8px;
}
.insightSectionListItem::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #66cc33; flex-shrink: 0;
}
.insightSectionListItem:hover { background: #e8f0fb; padding-left: 22px; }

.insightSectionLink {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; color: #003366; text-decoration: none;
  font-weight: 800; font-size: 14px; transition: all 0.2s;
}
.insightSectionLink::after { content: '→'; transition: transform 0.2s; }
.insightSectionLink:hover { color: #4fa326; }
.insightSectionLink:hover::after { transform: translateX(4px); }

/* ══════════════════════════════════════════
   CORPORATE GOVERNANCE
══════════════════════════════════════════ */
.corporateGovernanceSectionInner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}

.corporateGovernanceSectionColumn:first-child { border-top: 3px solid #003366; padding-top: 28px; }
.corporateGovernanceSectionColumn:last-child { border-top: 3px solid #66cc33; padding-top: 28px; }

.corporateGovernanceSectionItem {
  padding: 22px; margin-bottom: 14px;
  border-radius: 12px; background: #ffffff;
  border: 1px solid #ccdaec;
  transition: all 0.25s;
}
.corporateGovernanceSectionItem:hover {
  border-color: #003366;
  box-shadow: 0 8px 28px rgba(0,51,102,0.10);
  transform: translateY(-3px);
}
.corporateGovernanceSectionItemTitle { margin: 0 0 8px; font-size: 19px; font-weight: 800; color: #003366; }
.corporateGovernanceSectionItemText { margin: 0; color: #4a5d70; font-size: 14.5px; line-height: 1.65; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contactSection { background: linear-gradient(135deg, #001f3f 0%, #003366 100%); }

.contactSectionInner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  border-top: 3px solid #66cc33; padding-top: 28px;
}

.contactSectionEyebrow { color: #66cc33 !important; }
.contactSectionEyebrow::before { background: #66cc33 !important; }

.contactSectionTitle { color: #ffffff !important; }
.contactSectionText { color: rgba(255,255,255,0.68) !important; }

.contactSectionForm { display: flex; flex-direction: column; gap: 14px; }

.contactSectionFormName, .contactSectionFormEmail, .contactSectionFormMessage {
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px; font-size: 15px;
  font-family: inherit; color: #ffffff;
  background: rgba(255,255,255,0.08);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.contactSectionFormName::placeholder, .contactSectionFormEmail::placeholder,
.contactSectionFormMessage::placeholder { color: rgba(255,255,255,0.40); }
.contactSectionFormName:focus, .contactSectionFormEmail:focus, .contactSectionFormMessage:focus {
  border-color: #66cc33; box-shadow: 0 0 0 3px rgba(102,204,51,0.18);
}
.contactSectionFormMessage { min-height: 140px; resize: vertical; }

.contactSectionFormButton {
  padding: 15px 32px; border: none; border-radius: 10px;
  background: #66cc33; color: #ffffff;
  font-size: 15px; font-weight: 800; font-family: inherit;
  letter-spacing: 0.04em; cursor: pointer;
  box-shadow: 0 8px 24px rgba(102,204,51,0.35);
  transition: all 0.25s;
}
.contactSectionFormButton:hover {
  background: #4fa326;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(102,204,51,0.45);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.siteFooter {
  background: #001128;
  padding: 36px 28px;
  border-top: 3px solid #66cc33;
}
.siteFooterInner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.siteFooterBrand { font-size: 18px; font-weight: 800; letter-spacing: 0.10em; color: #66cc33; }
.siteFooterText { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.revealBlock { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.revealBlock.isVisible { opacity: 1; transform: translateY(0); }

@keyframes heroFloat {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-18px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .siteHeaderToggle { display: inline-block; }
  .siteHeaderPanel { display: none; position: absolute; top: 74px; left: 14px; right: 14px; background: #ffffff; border: 1.5px solid #ccdaec; border-top: 3px solid #003366; border-radius: 14px; padding: 22px; flex-direction: column; align-items: flex-start; box-shadow: 0 18px 48px rgba(0,51,102,0.14); }
  .siteHeaderPanel.isOpen { display: flex; }
  .siteHeaderNav { flex-direction: column; gap: 4px; width: 100%; }
  .siteHeaderNav a { padding: 10px 14px; }
  .siteHeaderLanguages { margin-top: 16px; }
}

@media (max-width: 960px) {
  .heroSectionInner { grid-template-columns: 1fr; }
  .heroSectionTitle { font-size: 44px; }
  .aboutSectionInner { grid-template-columns: 1fr; }
  .capabilitiesSectionInner { grid-template-columns: 1fr; }
  .capabilitiesSectionColumn:first-child { position: static; }
  .solutionsGrid { grid-template-columns: 1fr; }
  .ourClientsGrid { grid-template-columns: 1fr; }
  .insightSectionInner { grid-template-columns: 1fr; }
  .corporateGovernanceSectionInner { grid-template-columns: 1fr; }
  .contactSectionInner { grid-template-columns: 1fr; }
  .valueBarInner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .heroSectionTitle { font-size: 34px; }
  .heroSectionActions { flex-direction: column; }
  .heroSectionPanelFeatureGrid { grid-template-columns: 1fr; }
  .valueBarInner { grid-template-columns: 1fr; }
  .solutionsSectionTitle, .capabilitiesSectionTitle, .ourClientsSectionTitle,
  .corporateGovernanceSectionTitle, .aboutSectionTitle, .insightSectionTitle, .contactSectionTitle { font-size: 30px; }
}
