:root {
  --navy: #071827;
  --navy-2: #102b44;
  --navy-3: #17395a;
  --gold: #b98532;
  --gold-dark: #8c6426;
  --cream: #fbf7ef;
  --paper: #ffffff;
  --sand: #efe6d7;
  --stone: #d8d2c8;
  --ink: #111923;
  --muted: #5f6f7f;
  --line: rgba(7, 24, 39, 0.14);
  --shadow: 0 24px 70px rgba(7, 24, 39, 0.16);
  --shadow-soft: 0 14px 40px rgba(7, 24, 39, 0.10);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  left: 10px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 239, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 16px;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--gold-dark);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.94rem;
}

.primary-nav a {
  position: relative;
  padding-block: 8px;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #c89543;
}

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

.btn-outline.dark {
  border-color: var(--line);
  color: var(--navy);
  background: var(--paper);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: var(--navy);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(185, 133, 50, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(7, 24, 39, 0.97) 0%, rgba(7, 24, 39, 0.88) 44%, rgba(7, 24, 39, 0.38) 100%);
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, black 0%, transparent 85%);
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 45%;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  min-height: calc(100vh - 124px);
  padding: 110px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 630px) minmax(320px, 1fr);
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.eyebrow::before {
  content: '';
  width: 42px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.02;
  color: inherit;
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  letter-spacing: -0.055em;
  max-width: 780px;
}

.hero h1 span {
  color: var(--gold);
  font-style: italic;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  justify-self: end;
  width: min(360px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 24, 39, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  border-radius: 24px;
  margin-bottom: 22px;
  background: var(--paper);
}

.hero-card h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.hero-card dl {
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.hero-card .detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
}

.hero-card dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
}

.hero-card dd {
  margin: 0;
  font-weight: 800;
  color: var(--paper);
  text-align: right;
}

.section {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 38px;
  max-width: 780px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
  justify-items: center;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.stats {
  margin-top: -38px;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.stat {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat-value {
  display: block;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: -22px;
  bottom: -22px;
  max-width: 245px;
  padding: 20px;
  border-radius: 22px;
  color: var(--paper);
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}

.about-badge strong {
  display: block;
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
}

.about-badge span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.copy-block p {
  color: var(--muted);
  margin: 0 0 18px;
}

.check-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--navy);
  font-weight: 700;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 5px var(--cream);
  outline: 1px solid var(--gold);
}

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

.band .section-heading h2,
.band .section-heading p {
  color: inherit;
}

.band .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 26px;
}

.vision-card,
.mission-card,
.service-card,
.partner-card,
.contact-card,
.info-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.band .vision-card,
.band .mission-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.vision-card,
.mission-card {
  padding: 28px;
}

.vision-card h3,
.mission-card h3,
.service-card h3,
.partner-card h3,
.info-card h3,
.form-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.2rem;
}

.band .vision-card h3,
.band .mission-card h3 {
  color: var(--gold);
}

.vision-card p,
.mission-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.mission-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
}

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

.service-card {
  padding: 24px;
  min-height: 240px;
}

.service-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 22px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.portfolio {
  background: var(--paper);
}

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

.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  text-align: left;
  color: var(--paper);
  border-radius: var(--radius-sm);
  background: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.project-card img {
  width: 100%;
  height: 315px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 240ms ease, opacity 240ms ease;
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 24, 39, 0.08) 0%, rgba(7, 24, 39, 0.78) 100%);
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.05);
  opacity: 0.88;
}

.project-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
}

.project-meta strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.2;
}

.project-meta span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.project-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.structure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.org-chart {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  color: var(--paper);
  box-shadow: var(--shadow);
}

.org-node {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.org-node strong {
  display: block;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.org-node span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.org-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.info-card {
  padding: 28px;
}

.info-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.88rem;
}

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

.partner-card {
  padding: 22px;
}

.partner-card small {
  display: block;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  padding: 48px 0;
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2 {
  margin: 0 0 8px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.03em;
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.contact-section {
  background:
    radial-gradient(circle at top left, rgba(185, 133, 50, 0.16), transparent 28%),
    var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.contact-card,
.form-card {
  padding: 28px;
}

.contact-methods {
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.contact-method {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.contact-method span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method strong,
.contact-method a {
  color: var(--navy);
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-weight: 900;
  font-size: 0.92rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 133, 50, 0.14);
}

.form-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
}

.footer-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--paper);
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--paper);
  margin: 0 0 12px;
}

.footer-grid p,
.footer-grid ul {
  margin: 0;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(7, 24, 39, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-panel {
  position: relative;
  width: min(1040px, 100%);
  color: var(--paper);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.lightbox-caption {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.lightbox-caption strong {
  font-size: 1.1rem;
}

.lightbox-caption span {
  color: rgba(255, 255, 255, 0.72);
}

.lightbox-close {
  position: absolute;
  right: -12px;
  top: -48px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  cursor: pointer;
  font-size: 1.4rem;
}

@media (max-width: 1050px) {
  .hero-inner,
  .about-grid,
  .mission-grid,
  .structure-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    inset: 0;
    opacity: 0.38;
  }

  .hero-card {
    justify-self: start;
  }

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

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

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

@media (max-width: 840px) {
  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px 4px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .hero-inner {
    min-height: auto;
    padding: 78px 0 72px;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .about-badge {
    position: static;
    margin-top: -34px;
    margin-left: 20px;
  }

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

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .section {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 17vw, 4rem);
  }

  .hero-card {
    padding: 22px;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .stats-grid,
  .services-grid,
  .partners-grid,
  .portfolio-grid,
  .org-branches,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .project-card img {
    height: 260px;
  }

  .lightbox-caption {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Updated positioning, proof points, and credibility badges */
.hero-proof {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  font-size: 0.9rem;
}

.credibility-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(185, 133, 50, 0.16), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, var(--cream) 100%);
}

.credibility-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(7, 24, 39, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.credibility-section .container {
  position: relative;
  z-index: 1;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.badge-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.badge-card img {
  width: min(100%, 250px);
  margin-inline: auto;
  border-radius: 22px;
  filter: drop-shadow(0 18px 28px rgba(7, 24, 39, 0.16));
}

.badge-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.badge-card p {
  margin: 0;
  color: var(--muted);
}

.credibility-copy {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 360px);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(185, 133, 50, 0.28);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}

.credibility-copy h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.75rem;
}

.credibility-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.credibility-copy img {
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  background: #fffdf8;
}

.about-section .check-list li,
.services-grid .service-card h3,
.partners-section .partner-card h3 {
  text-wrap: balance;
}

@media (max-width: 1050px) {
  .badge-grid,
  .credibility-copy {
    grid-template-columns: 1fr;
  }

  .badge-card {
    grid-template-columns: minmax(160px, 240px) 1fr;
  }
}

@media (max-width: 620px) {
  .hero-proof span {
    width: 100%;
    justify-content: center;
  }

  .badge-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px;
  }

  .badge-card img {
    width: min(100%, 280px);
  }

  .credibility-copy {
    padding: 22px;
  }
}
