/* RESET & BASE -------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f5f7fc;
  color: #182030;
}

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

h1,
h2,
h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  margin: 0 0 10px;
}

p {
  margin: 0 0 10px;
  line-height: 1.6;
  font-size: 15px;
  color: #3e4a60;
}

ul {
  margin: 0;
  padding-left: 18px;
}

/* LAYOUT -------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 64px 0;
}

.section-soft {
  background-color: #f0f4ff;
}

.section-cta {
  background: linear-gradient(180deg, #edf3ff 0%, #ffffff 100%);
  padding: 64px 0 72px;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #053268;
  margin-bottom: 12px;
}

.center {
  text-align: center;
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 16px;
  color: #4f6078;
}

/* GRID ---------------------------------------------------------- */
.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Responsive grid */
@media (max-width: 960px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* HEADER -------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #dde5f4;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.brand-logo {
  height: 46px;
}

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #33425a;
}

.nav a:hover {
  color: #0050a8;
}

.nav-cta {
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  background-color: #0050a8;
  color: #ffffff;
  cursor: pointer;
}

/* Mobile nav */
.mobile-menu-icon {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 16px 16px;
  background-color: #ffffff;
  border-bottom: 1px solid #dde5f4;
}

.mobile-nav a {
  padding: 6px 0;
  text-decoration: none;
  font-size: 15px;
  color: #33425a;
}

.mobile-cta {
  margin-top: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background-color: #0050a8;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav.active {
  display: flex;
}

/* Show mobile menu icon, hide nav on small screens */
@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .mobile-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* HERO ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center top;
  filter: brightness(0.7);
  z-index: -1;
}

.hero-inner {
  padding: 72px 16px 64px;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-subtitle {
  max-width: 620px;
  font-size: 17px;
  color: #e6ebf8;
  margin-bottom: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: rgba(6, 36, 86, 0.4);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: #0070ff;
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: #053268;
}

/* Hero mobile tweaks */
@media (max-width: 700px) {
  .hero {
    min-height: 560px;
    align-items: flex-end;
  }

  .hero-inner {
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 15px;
  }
}

/* CARDS / BLOCKS ------------------------------------------------- */
.info-card,
.visual-card,
.op-card,
.image-card,
.text-card,
.financial-card,
.leader-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 16px;
  border: 1px solid #dce5f4;
  box-shadow: 0 10px 26px rgba(12, 24, 70, 0.06);
}

.visual-card img,
.op-card img,
.image-card img {
  border-radius: 12px;
  margin-bottom: 10px;
}

/* About grid re-order on mobile: image first, text below */
.about-grid {
  align-items: center;
  gap: 24px;
}

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

/* Leadership ----------------------------------------------------- */
.leadership-grid {
  align-items: stretch;
}

.leader-card {
  text-align: center;
  padding-top: 22px;
}

.leader-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8d9ff, #f5f8ff);
  margin: 0 auto 10px;
}

.leader-role {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #0050a8;
}

/* Tag style for practice areas ---------------------------------- */
.practice-grid {
  justify-items: center;
}

.tag-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 10px 14px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid #dce5f4;
  font-size: 14px;
  font-weight: 500;
  color: #053268;
}

/* Operations ----------------------------------------------------- */
.op-card h3 {
  margin-top: 6px;
  margin-bottom: 6px;
}

/* Financials ----------------------------------------------------- */
.financial-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.year-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #053268;
}

.year-value {
  color: #0050a8;
}

/* Investment bullets --------------------------------------------- */
.bullet-list li {
  margin-bottom: 6px;
  font-size: 15px;
}

/* CTA ------------------------------------------------------------ */
.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 24px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px 22px 22px;
  border: 1px solid #d6e1f6;
  box-shadow: 0 14px 32px rgba(10, 35, 88, 0.18);
}

.cta-text h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #053268;
}

.cta-text p {
  font-size: 15px;
}

/* CTA form */
.cta-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.form-row-full {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
  color: #053268;
  font-size: 13px;
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid #b9c7e2;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 14px;
  background-color: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  margin-top: 4px;
}

/* CTA responsive */
@media (max-width: 900px) {
  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-form {
    grid-template-columns: 1fr;
  }

  .form-row-full {
    grid-column: auto;
  }
}

/* FOOTER --------------------------------------------------------- */
.footer {
  padding: 20px 0 28px;
  text-align: center;
  font-size: 13px;
  color: #5a6780;
}
