:root {
  --navy: #1E2D4A;
  --blue: #2451C7;
  --anthracite: #2A2E33;
  --grey-light: #F4F5F6;
  --grey-mid: #9AA2AC;
  --grey-border: #E2E5E8;
  --white: #FFFFFF;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--anthracite);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}

.brand span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--anthracite);
  transition: color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--blue);
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}

.nav-cta:hover {
  background: var(--blue);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--anthracite);
}

/* ---------- Hero ---------- */

.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8FA8DC;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 720px;
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  color: #C7D2E8;
  max-width: 600px;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.15s ease;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: #1d3fa3;
}

.btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Page hero (smaller, for sub-pages) ---------- */

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
}

.page-hero .hero-eyebrow {
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  max-width: 760px;
}

.page-hero p {
  color: #C7D2E8;
  font-size: 17px;
  max-width: 680px;
  margin-top: 14px;
}

/* ---------- Section basics ---------- */

section {
  padding: 80px 0;
}

.section-light {
  background: var(--grey-light);
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.section-head p {
  margin-top: 14px;
  color: #5A6470;
  font-size: 16px;
}

/* ---------- Cards / grid ---------- */

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  padding: 32px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: #EBF0FC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon i {
  font-size: 24px;
  color: var(--blue);
}

.card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.card p {
  color: #5A6470;
  font-size: 15px;
}

.card ul {
  list-style: none;
  margin-top: 14px;
  color: #5A6470;
  font-size: 14px;
}

.card ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  border-top: 1px solid var(--grey-border);
}

.card ul li:first-child {
  border-top: none;
}

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 2px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
}

/* ---------- Stats band ---------- */

.stats-band {
  background: var(--navy);
  color: var(--white);
}

.stats-band .grid-4 {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 14px;
  color: #B7C4E0;
  margin-top: 8px;
}

/* ---------- Two-column layout ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.split p {
  color: #5A6470;
  margin-bottom: 16px;
}

.value-list {
  list-style: none;
  margin-top: 24px;
}

.value-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--grey-border);
}

.value-list li:first-child {
  border-top: none;
}

.value-list .v-mark {
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font-display);
}

.value-list strong {
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}

.value-list span.desc {
  color: #5A6470;
  font-size: 14px;
}

.diagram-box {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  padding: 40px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Team ---------- */

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

.team-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.team-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 4px;
}

.team-role {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-card p {
  color: #5A6470;
  font-size: 14px;
}

/* ---------- Sectors ---------- */

.sector-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sector-pill {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sector-pill .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.sector-pill strong {
  color: var(--navy);
  font-size: 15px;
}

.sector-pill span {
  display: block;
  color: #5A6470;
  font-size: 13px;
  margin-top: 2px;
}

/* ---------- Quote / testimonial ---------- */

.quote-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-left: 4px solid var(--blue);
  border-radius: 0 6px 6px 0;
  padding: 32px;
}

.quote-card p {
  font-style: italic;
  color: var(--anthracite);
  font-size: 15px;
  margin-bottom: 18px;
}

.quote-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.quote-role {
  color: #9AA2AC;
  font-size: 13px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: 30px;
  margin-bottom: 14px;
}

.cta-band p {
  color: #DCE6FB;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--blue);
}

.cta-band .btn-primary:hover {
  background: var(--grey-light);
}

.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.5);
}

/* ---------- Footer ---------- */

footer {
  background: var(--anthracite);
  color: #C9CDD2;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}

.footer-grid p {
  font-size: 14px;
  color: #9AA0A8;
  max-width: 320px;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid ul a {
  font-size: 14px;
  color: #C9CDD2;
}

.footer-grid ul a:hover {
  color: var(--white);
}

.footer-grid address {
  font-size: 14px;
  color: #9AA0A8;
  font-style: normal;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid #3D4248;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #80868D;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: #9AA0A8;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--anthracite);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-card {
  background: var(--grey-light);
  border-radius: 6px;
  padding: 36px;
}

.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info-row:last-child {
  margin-bottom: 0;
}

.contact-info-row strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-info-row span,
.contact-info-row a {
  color: #5A6470;
  font-size: 14px;
}

.contact-info-row a:hover {
  color: var(--blue);
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  font-size: 13px;
  color: #8FA8DC;
  margin-top: -4px;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #8FA8DC;
}

.breadcrumb a:hover {
  color: var(--white);
}

/* ---------- WhatsApp floating button ---------- */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 200;
  transition: transform 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float i {
  font-size: 30px;
  color: var(--white);
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float i {
    font-size: 26px;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .grid-3,
  .grid-4,
  .grid-2,
  .split,
  .team-grid,
  .contact-grid,
  .sector-pill-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .split {
    gap: 32px;
  }

  .split .diagram-box {
    order: -1;
  }

  nav.main-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 16px;
    display: none;
  }

  nav.main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    align-self: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 64px 0 80px;
  }
}
