/* Shield Point Capital — Main Page Styles */

:root {
  --green: #006c49;
  --white: #ffffff;
  --navy: #0b1c30;
  --tan: #875e2c;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --text-light: #f5f5f5;
  --border-light: #e0e0e0;
  --stat-bg: #e8f4f0;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius: 0px;
  --radius-sm: 0px;
  --max-width: 1200px;
  --header-height: 80px;
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-heading: "Montserrat", "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.main-nav a,
.btn,
.logo-text,
.hero-tag,
.section-title,
.section-label,
.leader-tag,
.stat-number,
.leader-info h3,
.footer-col h4 {
  font-family: var(--font-heading);
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section-label {
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--green);
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem 1.5rem;
  border-radius: 0px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: normal;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  height: var(--header-height);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--header-height);
  gap: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

.header-actions .btn,
.header-inner > .btn-green:not(.nav-dropdown-toggle) {
  font-size: 0.75rem;
  padding: 0.4rem 0.875rem;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .header-service-dropdown {
    margin-left: auto;
    margin-right: 54px;
    flex-shrink: 0;
  }

  .page-home .header-actions {
    transform: translateX(18px);
  }
}

.header-inner > .btn-green:not(.nav-dropdown-toggle) {
  margin-left: auto;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  margin-right: 2.5rem;
}

.logo img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.logo-text {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-family: montserrat;
  color: #006c49;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--green);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
  color: var(--green);
}

.nav-dropdown-chevron {
  transition: transform 0.2s;
}

.nav-dropdown.open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  min-width: 190px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
  z-index: 1001;
  padding: 0.5rem 0;
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(0, 108, 73, 0.08);
  color: var(--green);
}

/* Header CTA — Need a Service dropdown */
.header-service-dropdown {
  position: relative;
  flex-shrink: 0;
}

.header-service-dropdown .nav-dropdown-toggle {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  gap: 0.45rem;
}

.header-service-dropdown .nav-dropdown-toggle:hover,
.header-service-dropdown.open .nav-dropdown-toggle {
  color: var(--white);
  opacity: 0.92;
}

.header-service-dropdown .nav-dropdown-menu {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(0.5rem);
  min-width: 400px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 32px rgba(11, 28, 48, 0.14);
  padding: 0.65rem 0;
}

.header-service-dropdown .nav-dropdown-menu a {
  white-space: normal;
  line-height: 1.5;
  padding: 1.125rem 1.75rem;
  font-size: 1.0625rem;
  color: var(--navy);
}

.header-service-dropdown .nav-dropdown-menu a:hover {
  background: #f3f6f4;
  color: var(--green);
}

.header-service-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) translateY(0);
}

@media (min-width: 769px) {
  .header-service-dropdown:hover .nav-dropdown-menu,
  .header-service-dropdown:focus-within .nav-dropdown-menu {
    transform: translateX(0) translateY(0);
  }

  .nav-dropdown:hover .nav-dropdown-chevron,
  .nav-dropdown:focus-within .nav-dropdown-chevron {
    transform: rotate(180deg);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-nav-header,
.mobile-nav-backdrop {
  display: none;
}

body.mobile-nav-open {
  overflow: hidden;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO — Premium Fintech Layout
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.48) 20%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0.12) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
}

/* ---- Left Column ---- */
.hero-left {
  width: 55%;
  flex-shrink: 0;
  padding-top: var(--header-height);
  padding-right: 2rem;
}

.hero-badge {
  display: inline-block;
  background: #006c49;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 0;
  margin-bottom: 24px;
}

.hero-heading {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.5px;
  max-width: 650px;
  margin-bottom: 12px;
}

.hero-subtext {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  max-width: 565px;
  margin-bottom: 42px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: #006c49;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-hero-primary:hover {
  transform: scale(1.03);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  border: 1px solid #006c49;
  color: #ffffff;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
  opacity: 0.92;
}

.btn-hero-secondary:hover {
  opacity: 1;
  letter-spacing: 0.02em;
}

/* ---- Right Column ---- */
.hero-right {
  width: 45%;
  position: relative;
  height: 100%;
  flex-shrink: 0;
}

/* Foreground woman PNG cutout */
.hero-woman {
  position: absolute;
  right: 55px;
  bottom: -80px;
  height: 115vh;
  max-height: 1150px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  z-index: 5;
  pointer-events: none;
  user-select: none;
}

/* ---- Float Animation ---- */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Card 6: Loan Offers — left of woman, mid-height */
.fcard--6 {
  top: 440px;
  right: 415px;
  width: 215px;
  animation-delay: 3.2s;
}

/* ---- Card Component Parts ---- */
.fcard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.fcard-icon-shield {
  width: 34px;
  height: 34px;
  background: rgba(0, 108, 73, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fcard-label {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.fcard-label--sm {
  font-size: 11px;
}

.fcard-green-sub {
  font-size: 11px;
  font-weight: 600;
  color: #006c49;
  margin-top: 2px;
}

/* Credit score graph */
.score-graph {
  width: 100%;
  height: 44px;
  display: block;
  margin: 6px 0 8px;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score-num {
  font-size: 30px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.score-badge-label {
  font-size: 11px;
  font-weight: 700;
  background: rgba(0, 108, 73, 0.12);
  color: #006c49;
  padding: 3px 12px;
  border-radius: 20px;
}

/* Card 2 — Funding Successful */
.fcard-check-circle {
  width: 30px;
  height: 30px;
  background: #006c49;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.fcard-amount {
  font-size: 22px;
  font-weight: 800;
  color: #006c49;
  margin: 5px 0 4px;
  font-family: "Montserrat", sans-serif;
}

.fcard-desc {
  font-size: 11px;
  color: #666;
  line-height: 1.55;
  margin-top: 3px;
}

/* Card 3 — Loan Approved */
.fcard-emoji-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.fcard-emoji-icon {
  font-size: 18px;
  line-height: 1;
}

/* Card 4 — Application Submitted */
.fcard-row-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.fcard-check-sm {
  width: 22px;
  height: 22px;
  background: #006c49;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Card 5 — Personalized Solutions */
.fcard-person-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.fcard-person-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 108, 73, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Card link button */
.fcard-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #006c49;
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(0, 108, 73, 0.3);
  transition:
    color 0.2s,
    border-color 0.2s;
  font-family: "Montserrat", sans-serif;
}

.fcard-link:hover {
  color: #004d34;
  border-color: #004d34;
}

/* Card 6 — Loan Offers */
.loan-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.loan-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.loan-item:last-child {
  border-bottom: none;
}

.bank-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bank-dot--a {
  background: #006c49;
}
.bank-dot--b {
  background: #2a9d6f;
}
.bank-dot--c {
  background: #52b788;
}

.bank-name {
  font-size: 11px;
  color: #333;
  font-weight: 500;
  flex: 1;
}

.bank-val {
  font-size: 11px;
  font-weight: 700;
  color: #006c49;
}

/* Info sections */
.info-section {
  padding: 3rem 0;
  background: #eff4ff;
}

.info-section--white {
  background: #ffffff;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.info-grid.reverse .info-image {
  order: 2;
}

.info-grid.reverse .info-text {
  order: 1;
}

.info-image {
  position: relative;
  min-height: 280px;
}

.info-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.info-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.info-text h2 {
  color: var(--green);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.info-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.info-text p:last-child {
  margin-bottom: 0;
}

/* Core Values */
.core-values {
  padding: 5rem 0;
  background: #fafafa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  color: var(--white);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.value-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.value-card.green {
  background: var(--green);
}

.value-card.navy {
  background: var(--navy);
}

.value-card.tan {
  background: var(--tan);
}

.value-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  align-self: center;
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0b1c30;
  text-align: center;
}

.value-card p {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.92;
  line-height: 1.6;
  text-align: center;
}

/* Partners (kept for other pages) */
.partners {
  background: var(--green);
  padding: 3.5rem 0;
  text-align: center;
}

.partners .section-title {
  color: var(--white);
  margin-bottom: 2rem;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.partner-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.partner-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Products Section */
.products-section {
  padding: 5rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.products-grid--single {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 0 0 2rem;
  text-align: center;
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.product-card-image {
  margin-bottom: 1.5rem;
}

.product-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.product-card h4,
.product-card p {
  padding-inline: 2rem;
}

.product-status {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  margin-bottom: 1rem;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--stat-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

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

.product-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Targeted Market */
.targeted-market {
  background: var(--green);
  padding: 5rem 0;
  text-align: center;
}

.targeted-market .section-title {
  color: var(--white);
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.target-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}

.target-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 160px;
}

.target-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.target-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.target-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.target-item span {
  font-size: 18px;
  font-weight: 600;
  color: #0b1c30;
  line-height: 1.4;
  text-align: center;
}

/* Company Overview */
.statistics {
  padding: 5rem 0;
  background: #f4f8fb;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.overview-card {
  background: var(--white);
  border: 2.5px solid var(--green);
  border-radius: 0;
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.2s;
}

.overview-card:hover {
  box-shadow: 0 6px 24px rgba(0, 100, 60, 0.1);
}

.overview-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 0.25rem;
}

.overview-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}

.overview-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.overview-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: underline;
  margin-top: 0.25rem;
  align-self: flex-start;
}

.milestones-section {
  padding: 5rem 0;
}

.milestones-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.milestone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.milestone-number {
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  width: 70px;
  height: 60px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    inset 0 0 0 8px #ffffff,
    0 0px 4px rgba(0, 0, 0, 0.25);
}

.milestone-text {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
  text-align: center;
  width: 100%;
  box-shadow:
    inset 0 0 0 1px #c6c6cd,
    0 4px 4px rgba(0, 0, 0, 0.25);
}

/* Leadership */
.leadership {
  padding: 5rem 0;
  background: #fafafa;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.leader-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.leader-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  flex-shrink: 0;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-photo img.leader-img-president {
  transform: scale(2) translateY(20%);
  object-position: center top;
}

.leader-photo img.leader-img-coo {
  transform: scale(1.5) translateY(-7%);
  object-position: center top;
}

.leader-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.625rem;
  border-radius: 0;
}

.leader-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.5rem 1.5rem;
}

.leader-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.leader-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.leader-read-more {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.leader-read-more:hover {
  color: var(--navy);
}

.management-strengths {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 720px;
  margin-inline: auto;
}

.management-strengths h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.management-strengths > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.management-strengths ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 1.5rem;
}

.management-strengths li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.management-strengths li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.leader-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.leader-modal.leader-modal--visible {
  opacity: 1;
}

.leader-modal[hidden] {
  display: none;
}

.leader-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 48, 0.62);
  backdrop-filter: blur(4px);
}

.leader-modal-panel {
  position: relative;
  width: min(100%, 540px);
  max-height: min(88vh, 680px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 2px;
  box-shadow:
    0 24px 64px rgba(11, 28, 48, 0.22),
    0 0 0 1px rgba(0, 108, 73, 0.08);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.leader-modal.leader-modal--visible .leader-modal-panel {
  transform: translateY(0) scale(1);
}

.leader-modal-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, #0a9a6a 100%);
  flex-shrink: 0;
}

.leader-modal-hero {
  position: relative;
  height: 140px;
  overflow: hidden;
  flex-shrink: 0;
}

.leader-modal-hero[hidden] {
  display: none;
}

.leader-modal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leader-modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 28, 48, 0.05) 0%,
    rgba(11, 28, 48, 0.45) 100%
  );
}

.leader-modal-content {
  overflow-y: auto;
  padding: 1.75rem 1.75rem 1.5rem;
}

.leader-modal-close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.375rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, color 0.2s ease;
}

.leader-modal-close:hover {
  background: var(--white);
  color: var(--green);
}

.leader-modal-header h3 {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  padding-right: 2.25rem;
  color: var(--navy);
}

.leader-modal-role {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.leader-education {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #f0faf6 0%, #e8f4f0 100%);
  border-left: 3px solid var(--green);
  box-shadow: inset 0 0 0 1px rgba(0, 108, 73, 0.1);
}

.leader-education-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 108, 73, 0.12);
}

.leader-education-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-education-content {
  flex: 1;
  min-width: 0;
}

.leader-education-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.35rem;
}

.leader-education-degree {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.leader-education-school {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.leader-education-badge {
  flex-shrink: 0;
  align-self: flex-start;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 0.3rem 0.55rem;
  white-space: nowrap;
}

.leader-modal-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.leader-modal-body h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.leader-modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.leader-modal-body li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.35rem;
}

.leader-modal-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Featured CTA */
.featured-cta {
  background: var(--green);
  padding: 0;
}

.featured-cta-image-wrap {
  position: relative;
}

.featured-cta-image-wrap > img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-cta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 4rem;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
}

.featured-cta-overlay h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.featured-cta-content {
  color: var(--white);
  padding: 1rem 0 3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.featured-cta-content p {
  color: #0b1c30;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Why Choose Us */
.why-choose {
  padding: 5rem 0;
}

.why-choose .section-title {
  text-align: left;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  width: 70px;
  height: 80px;
  background: rgba(0, 108, 73, 0.08);
  border: 2px solid var(--green);
  padding: 0.5rem;
}

.why-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: #0b1c30;
}

.why-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Secondary CTA */
.secondary-cta {
  padding: 3rem 0 5rem;
}

.secondary-cta-card {
  background: var(--green);
  border-radius: 0;
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--white);
}

.secondary-cta-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.secondary-cta-card p {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-inline: auto;
}

.secondary-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Contact */
.contact {
  padding: 5rem 0;
  background: #eff4ff;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  text-align: center;
}

.contact-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.contact-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: inline-block;
  flex-shrink: 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: box-shadow 0.2s;
}

.contact-info-item:hover {
  box-shadow: 0 4px 16px rgba(0, 76, 0, 0.1);
}

.contact-info-item img,
.contact-info-item .contact-icon {
  flex-shrink: 0;
}

.contact-info-item > img,
.contact-info-item .contact-icon img {
  filter: invert(27%) sepia(89%) saturate(500%) hue-rotate(115deg)
    brightness(85%) contrast(90%);
}

.contact-info-item h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.15rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.form-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

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

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 0;
  font-family: inherit;
  font-size: 0.9375rem;
  background: #f7f9fc;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

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

.form-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.form-buttons .btn {
  flex: 1;
  text-align: center;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.875rem;
  min-height: 1.25rem;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #c0392b;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col a {
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.5;
}

.footer-contact-list img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  filter: invert(27%) sepia(89%) saturate(500%) hue-rotate(115deg)
    brightness(85%) contrast(90%);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-contact-info {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-contact-info p {
  font-size: 0.8125rem;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 16px;
  opacity: 0.7;
}

/* Contact icons (inline SVG replacements) */
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: rgba(0, 108, 73, 0.18);
  border: 1px solid rgba(0, 108, 73, 0.35);
  font-size: 1.1rem;
}

.contact-icon--location::before {
  content: "📍";
}
.contact-icon--phone::before {
  content: "📞";
}
.contact-icon--whatsapp::before {
  content: "💬";
}
.contact-icon--email::before {
  content: "✉️";
}
.contact-icon--clock::before {
  content: "🕐";
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- 1200px ---- */
@media (max-width: 1200px) {
  .hero-heading {
    font-size: 58px;
  }
  .hero-subtext {
    font-size: 15px;
    max-width: 460px;
  }
  .hero-woman {
    height: 92vh;
    right: 30px;
  }

  .fcard--1 {
    right: 310px;
    top: 145px;
  }
  .fcard--5 {
    right: 190px;
  }
  .fcard--6 {
    right: 325px;
    top: 420px;
  }
}

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 50px;
  }
  .hero-woman {
    height: 85vh;
    right: 10px;
  }

  .fcard--1 {
    right: 250px;
    top: 140px;
    width: 220px;
  }
  .fcard--2 {
    right: 8px;
    top: 195px;
    width: 175px;
  }
  .fcard--3 {
    right: 5px;
    top: 375px;
    width: 235px;
  }
  .fcard--4 {
    right: 8px;
    bottom: 140px;
    width: 215px;
  }
  .fcard--5 {
    right: 165px;
    bottom: 95px;
    width: 185px;
  }
  .fcard--6 {
    right: 265px;
    top: 415px;
    width: 195px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row,
  .features-row,
  .overview-grid,
  .milestones-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(11, 28, 48, 0.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
  }

  body.mobile-nav-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .mobile-nav-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(11, 28, 48, 0.42);
    font-family: var(--font-heading);
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + 0.75rem);
    left: 1rem;
    right: 1rem;
    bottom: auto;
    max-height: calc(100vh - var(--header-height) - 1.5rem);
    overflow-x: hidden;
    overflow-y: auto;
    background: #f3f6f4;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.75rem 1.75rem;
    gap: 0;
    border-radius: 0;
    font-family: var(--font-heading);
    box-shadow:
      0 24px 56px rgba(11, 28, 48, 0.16),
      inset 0 0 0 1px rgba(0, 108, 73, 0.08);
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease;
    z-index: 999;
  }

  .main-nav.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown > .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: clamp(1.375rem, 5.2vw, 1.75rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--navy);
    padding: 0.7rem 0;
    line-height: 1.15;
    text-align: left;
    transition: color 0.2s ease;
  }

  .main-nav > a::after,
  .main-nav > .nav-dropdown > .nav-dropdown-toggle::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: opacity 0.2s ease;
  }

  .main-nav > a.is-current,
  .main-nav > .nav-dropdown > .nav-dropdown-toggle.is-current {
    color: rgba(11, 28, 48, 0.42);
    text-decoration: none;
  }

  .main-nav > a.active {
    text-decoration: none;
  }

  .main-nav > a.is-current::after,
  .main-nav > .nav-dropdown > .nav-dropdown-toggle.is-current::after {
    opacity: 1;
    background: var(--green);
  }

  .main-nav > a:hover,
  .main-nav > .nav-dropdown > .nav-dropdown-toggle:hover {
    color: var(--green);
  }

  .main-nav > .nav-dropdown {
    width: 100%;
  }

  .main-nav > .nav-dropdown > .nav-dropdown-toggle {
    background: none;
    border: none;
    font-family: var(--font-heading);
    cursor: pointer;
  }

  .main-nav > .nav-dropdown > .nav-dropdown-toggle .nav-dropdown-chevron {
    width: 14px;
    height: 14px;
    margin-left: 0.75rem;
    opacity: 0.55;
    flex-shrink: 0;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    min-width: 0;
    transition:
      max-height 0.3s ease,
      visibility 0.3s ease,
      margin 0.3s ease;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    visibility: visible;
    pointer-events: auto;
    max-height: 220px;
    margin: 0.15rem 0 0.5rem;
    padding-left: 0.25rem;
  }

  .main-nav .nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 0 0.55rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    border-left: 2px solid rgba(0, 108, 73, 0.18);
    margin-bottom: 0.15rem;
  }

  .main-nav .nav-dropdown-menu a:hover,
  .main-nav .nav-dropdown-menu a.is-current {
    color: var(--green);
    border-left-color: var(--green);
  }

  .header-inner {
    gap: 0.5rem;
  }

  .logo {
    margin-right: 0;
  }

  .logo-text {
    display: none;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .header-actions .btn,
  .header-inner > .btn-green:not(.nav-dropdown-toggle) {
    font-size: 0.625rem;
    padding: 0.35rem 0.5rem;
    letter-spacing: 0;
  }

  .header-actions {
    display: flex;
    gap: 0.35rem;
    margin-left: auto;
  }

  .header-inner > .btn-green:not(.nav-dropdown-toggle) {
    margin-left: auto;
  }

  /* Home page — hide header CTAs on mobile until past hero */
  .page-home .header-actions {
    display: none;
  }

  /* Home page — show header CTAs on mobile after scrolling past hero */
  .page-home.header-past-hero .header-actions {
    display: flex;
    gap: 0.35rem;
    margin-left: auto;
  }

  /* Home page — show logo text on mobile while on hero */
  .page-home .logo .logo-text {
    display: block;
  }

  /* Home page — hide logo text once header CTAs appear */
  .page-home.header-past-hero .logo .logo-text {
    display: none;
  }

  .header-service-dropdown .nav-dropdown-menu {
    position: fixed;
    top: calc(var(--header-height) + 0.5rem);
    right: 1rem;
    left: auto;
    width: min(420px, calc(100vw - 1.5rem));
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(11, 28, 48, 0.16);
    border: 1px solid var(--border-light);
    padding: 0;
    margin: 0;
    z-index: 1002;
    transition:
      max-height 0.28s ease,
      opacity 0.22s ease,
      visibility 0.22s ease;
  }

  .header-service-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 480px;
    overflow: visible;
    padding: 0.65rem 0;
  }

  .header-service-dropdown .nav-dropdown-menu a {
    display: block;
    padding: 1.25rem 1.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.4;
    white-space: normal;
    border-bottom: 1px solid var(--border-light);
  }

  .header-service-dropdown .nav-dropdown-menu li:last-child a {
    border-bottom: none;
  }

  .header-service-dropdown .nav-dropdown-menu a:hover,
  .header-service-dropdown .nav-dropdown-menu a:active {
    background: #f3f6f4;
    color: var(--green);
  }

  .header-service-dropdown .nav-dropdown-toggle {
    font-size: 0.6875rem;
    padding: 0.35rem 0.75rem;
  }

  /* Hero — mobile (412px and up) */
  .hero {
    height: auto;
    min-height: 70vh;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
  }

  .hero-left {
    width: 100%;
    padding-top: calc(var(--header-height) + 2rem);
    padding-right: 0;
  }

  .hero-heading {
    font-size: 40px;
    max-width: none;
  }
  .hero-subtext {
    font-size: 15px;
    max-width: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Hide right panel (woman + cards) on mobile/tablet */
  .hero-right {
    display: none;
  }
  .hero-woman {
    display: none;
  }

  /* Rest of page */
  .info-section {
    padding: 1.75rem 0;
  }

  .info-grid,
  .info-grid.reverse {
    grid-template-columns: 1fr;
  }
  .info-grid.reverse .info-image,
  .info-grid.reverse .info-text {
    order: unset;
  }
  .info-image {
    position: static;
    min-height: auto;
  }
  .info-image img {
    position: static;
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stats-row,
  .features-row,
  .overview-grid,
  .milestones-row {
    grid-template-columns: 1fr;
  }
  .leaders-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .management-strengths {
    padding: 1.5rem 1.25rem;
  }

  .management-strengths ul {
    grid-template-columns: 1fr;
  }

  .leader-modal-panel {
    width: min(100%, 100%);
  }

  .leader-modal-content {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .leader-education {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .leader-education-badge {
    width: 100%;
    text-align: center;
  }
  .featured-cta-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .target-grid {
    gap: 1rem;
  }
  .target-item {
    min-width: 120px;
  }
  .target-icon {
    padding: 1.25rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  .hero-inner {
    padding: 0 20px;
  }
  .hero-heading {
    font-size: 34px;
  }
  .hero-subtext {
    font-size: 14px;
  }
  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 0;
  }
}

/* ---- 430px and below — featured CTA hero image ---- */
@media (max-width: 430px) {
  .featured-cta-image-wrap > img {
    width: 100%;
    height: 90%;
    display: block;
  }

  .featured-cta-overlay {
    padding: 1rem 0.875rem 1.25rem;
  }

  .featured-cta-overlay h2 {
    font-size: clamp(1.05rem, 4.2vw, 1.4rem);
    line-height: 1.35;
  }
}

/* ---- below 412px ---- */
@media (max-width: 411px) {
  .hero {
    height: auto;
    min-height: 100vh;
  }
}

/* Sitewide body text — 16px (hero excluded) */
section:not(.hero) p,
section:not(.hero) li,
.site-footer p,
.site-footer li,
.target-item span,
.leader-info p,
.contact-info-item p,
.contact-info-heading,
.contact-subtitle,
.touch-item p,
.services-contact-intro p,
.why-item p,
.info-text p,
.value-card p,
.overview-card p,
.secondary-cta-card p,
.featured-cta-content p,
.partners-hero-text p,
.why-invest-header p,
.form-privacy,
.form-status,
.service-card-body p,
.partner-benefit p,
.apply-intro p,
.investor-tier p,
.benefit-card p,
.opportunity-card p,
.request-intro p,
.why-choose-item p,
.touch-list p,
.footer-brand p,
.footer-col li,
.footer-col a,
.footer-contact-list li,
.footer-contact-list span,
.footer-bottom,
.footer-bottom p {
  font-size: 16px;
}

/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1100;
  padding: 1rem;
  pointer-events: none;
  transform: translateY(calc(100% + 1.5rem));
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.cookie-consent--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-panel {
  pointer-events: auto;
  width: min(100%, 1120px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 1.75rem;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #122a42 55%,
    #0f2438 100%
  );
  border-left: 4px solid var(--green);
  box-shadow:
    0 -12px 48px rgba(11, 28, 48, 0.45),
    0 0 0 1px rgba(0, 108, 73, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.cookie-consent-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle at center,
    rgba(0, 108, 73, 0.22) 0%,
    transparent 70%
  );
  pointer-events: none;
  transform: translate(30%, -35%);
}

.cookie-consent-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 108, 73, 0.18);
  border: 1px solid rgba(0, 108, 73, 0.45);
  color: #5ee4b0;
}

.cookie-consent-icon svg {
  width: 28px;
  height: 28px;
}

.cookie-consent-body {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.cookie-consent-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5ee4b0;
  margin-bottom: 0.5rem;
}

.cookie-consent-body p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

.cookie-consent-body p + p {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
}

.cookie-consent-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

.cookie-consent-actions .btn {
  min-width: 132px;
  padding: 0.55rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.cookie-consent-accept {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0, 108, 73, 0.45);
}

.cookie-consent-accept:hover {
  background: #00855a;
  opacity: 1;
}

.cookie-consent-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.cookie-consent-reject:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
  opacity: 1;
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 0.75rem;
  }

  .cookie-consent-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 1.25rem 1.25rem 1.35rem;
  }

  .cookie-consent-actions {
    flex-direction: row;
    width: 100%;
  }

  .cookie-consent-actions .btn {
    flex: 1;
    min-width: 0;
  }
}
