/* ===================================
   Light3 Capital — Main Stylesheet
   =================================== */

/* --- Fonts --- */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Variables --- */
:root {
  --color-dark: #000a06;
  --color-light: #edfff7;
  --color-card: #2f3b36;
  --color-border: rgba(237, 255, 247, 0.1);
  --font-main: 'Satoshi', Arial, sans-serif;
  --container-max: 1360px;
  --radius: 5px;
}

/* --- Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  margin: 0;
  min-height: 100%;
  background-color: var(--color-dark);
  font-family: var(--font-main);
  color: var(--color-light);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
body.nav-open,
html.nav-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-main);
  color: var(--color-light);
  font-weight: 500;
  margin-top: 0;
  overflow-wrap: break-word;
}
h1 {
  font-size: 4rem;
  line-height: 110%;
  letter-spacing: -0.08rem;
  margin-bottom: 1rem;
}
h2 {
  font-size: 3rem;
  line-height: 110%;
  letter-spacing: -0.03rem;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.5rem;
  line-height: 130%;
  margin-bottom: 0.5rem;
}

p {
  color: var(--color-light);
  opacity: 0.9;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.7;
}

a { color: var(--color-light); }
ul { margin: 0 0 10px; padding-left: 40px; }
img { max-width: 100%; display: block; }

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
}
.section {
  padding: 9rem 0;
}
.section.tight-top { padding-top: 4rem; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background-color: rgba(0, 10, 6, 0);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.scrolled {
  background-color: rgba(0, 10, 6, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border);
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: block;
  width: 7.5rem;
  min-width: 7.5rem;
  height: auto;
  text-decoration: none;
}
.nav-logo .logo-img {
  width: 100%;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-link {
  color: var(--color-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.nav-link:hover { opacity: 0.7; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 10rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero.mini {
  min-height: 28rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.hero-text {
  grid-column: span 7;
}
.hero-text p {
  max-width: 90%;
}
.hero-stats {
  grid-column: 9 / span 4;
  display: flex;
  gap: 2rem;
  align-items: flex-end;
}
.stats-num {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.02rem;
  margin-bottom: 0.25rem;
}
.stats-label {
  opacity: 0.8;
  font-size: 0.9375rem;
}
.label-short { display: none; }
.label-full { display: inline; }

/* --- Logo Bar --- */
.section.logos {
  padding: 3.5rem 0;
}
.logos-label {
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.8;
}
.logos-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1.5rem;
}
.logos-row img {
  height: auto;
  max-height: 2rem;
  opacity: 0.7;
}

/* --- Section Headers --- */
.section-header {
  max-width: 46rem;
  margin-bottom: 4rem;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header p {
  margin-top: 0.75rem;
}

/* --- Service List (clean typography) --- */
.service-list {
  margin-top: 3rem;
}
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
  border-left: 2px solid transparent;
  text-decoration: none;
  transition: opacity 0.2s ease, border-color 0.25s ease, padding-left 0.25s ease;
}
.service-item:first-child {
  border-top: 1px solid var(--color-border);
}
.service-item:hover {
  opacity: 0.85;
  border-left-color: rgba(237, 255, 247, 0.4);
  padding-left: 1.25rem;
}
.service-item-text { flex: 1; }
.service-item-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.service-item-text p {
  max-width: none;
}
.service-item .arrow {
  font-size: 1.5rem;
  opacity: 0.4;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.service-item:hover .arrow {
  transform: translateX(4px);
  opacity: 0.8;
}

/* --- Deal Cards --- */
.deals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}
.deal-card {
  background-color: var(--color-card);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  width: 31%;
  max-width: 31%;
  height: 13rem;
  flex: 0 0 auto;
}
.deal-card .deal-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 0.75rem;
}
.deal-card .deal-type {
  font-size: 0.9375rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}
.deal-card .deal-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.9;
}
.deals-cta {
  text-align: center;
  margin-top: 3rem;
}
.btn {
  display: inline-block;
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: 1rem 2rem;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.btn:hover { opacity: 0.9; }
.btn-outline {
  background: none;
  border: 1px solid rgba(237, 255, 247, 0.2);
  color: var(--color-light);
}
.btn-outline:hover {
  background-color: rgba(237, 255, 247, 0.05);
  border-color: rgba(237, 255, 247, 0.3);
}

/* --- Three Column Features (Why Light3, etc.) --- */
.three-col {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}
.three-col-item {
  flex: 1;
}
.three-col-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.three-col-item p {
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Stats Banner --- */
.stats-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1rem;
}
.stat-item { text-align: center; }
.stat-value {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 110%;
}
.stat-label {
  opacity: 0.75;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* --- Category Tabs --- */
.tabs {
  display: flex;
  gap: 0.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.tab-btn {
  background: none;
  border: 1px solid rgba(237, 255, 247, 0.15);
  color: var(--color-light);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}
.tab-btn:hover { opacity: 0.9; border-color: rgba(237, 255, 247, 0.3); }
.tab-btn.active {
  background-color: rgba(237, 255, 247, 0.12);
  border-color: rgba(237, 255, 247, 0.4);
  opacity: 1;
  font-weight: 500;
}
.deal-card.hidden { display: none; }

/* --- Team Cards --- */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background-color: var(--color-card);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  flex: 0 0 auto;
  width: 31%;
  max-width: 31%;
}
.team-card.senior { }
.team-card-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.team-img {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius);
  object-fit: cover;
}
.team-name {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.9375rem;
  opacity: 0.8;
}
.team-bio {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.team-bio p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --- Page CTA Banner --- */
.page-cta {
  padding: 5rem 0;
  border-top: 1px solid var(--color-border);
}
.page-cta h2 {
  margin-bottom: 1rem;
}
.page-cta p {
  opacity: 0.6;
  margin-bottom: 2rem;
  max-width: 32rem;
}

/* --- Contact --- */
.contact-top { padding-top: 12rem; }
.contact-subtitle {
  opacity: 0.5;
  font-size: 1rem;
  margin-top: 1rem;
}
.contact-email {
  display: inline-block;
  font-size: 1.25rem;
  color: var(--color-light);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  margin-top: 2rem;
  transition: opacity 0.2s ease;
}
.contact-email:hover { opacity: 0.7; }
.contact-location {
  display: block;
  opacity: 0.4;
  font-size: 0.9375rem;
  margin-top: 1.5rem;
}

/* --- Policy Pages --- */
.section.policy { padding-top: 12rem; }
.policy-text { opacity: 1; }
.policy-text p { opacity: 1; margin: 1rem 0; }
.policy-text h2 {
  color: var(--color-light);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 2.25rem;
}
.policy-text ul { font-size: 1rem; }
.policy-text li { margin: 0.25rem 0; }
.policy-text a { color: var(--color-light); }

/* --- 404 --- */
.page-404 {
  text-align: center;
  padding-top: 14rem;
  padding-bottom: 6rem;
}
.page-404 h1 { font-size: 6rem; margin-bottom: 0.5rem; }
.page-404 p { font-size: 1.25rem; margin-bottom: 2rem; }

/* --- Footer --- */
.footer {
  padding: 6rem 0 4rem;
  border-top: 1px solid var(--color-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr;
  gap: 2rem;
}
.footer-col-main,
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  display: block;
  width: 6rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.footer-logo .logo-img { width: 100%; height: auto; }
.footer-heading {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.footer .footer-link {
  color: var(--color-light);
  text-decoration: none;
  font-size: 0.9375rem;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.footer .footer-link:hover { opacity: 1; }
.footer-location {
  font-size: 0.9375rem;
  opacity: 0.8;
}
.footer-cr {
  font-size: 0.8125rem;
  opacity: 0.6;
  margin-top: 1rem;
}

/* --- Track Record Collapse --- */
.deal-card.overflow-hidden { display: none; }
.deal-card.overflow-visible {
  animation: fadeSlideIn 0.35s ease both;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.track-record-toggle {
  display: block;
  margin: 2.5rem auto 0;
  background: none;
  border: 1px solid rgba(237, 255, 247, 0.2);
  color: var(--color-light);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.track-record-toggle:hover {
  background-color: rgba(237, 255, 247, 0.05);
  border-color: rgba(237, 255, 247, 0.3);
}

/* --- Representative Disclosure --- */
.rep-disclosure {
  font-size: 0.8125rem;
  color: var(--color-light);
  opacity: 0.5;
  line-height: 1.5;
  margin-top: 0.75rem;
}

/* --- Focus Styles (keyboard accessibility) --- */
:focus-visible {
  outline: 2px solid rgba(237, 255, 247, 0.6);
  outline-offset: 2px;
}
.nav-link:focus-visible,
.footer .footer-link:focus-visible {
  border-radius: 2px;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .fade-in.visible {
    transform: none;
  }
  .deal-card.overflow-visible {
    animation: none;
  }
}

/* ============================================
   Responsive: Tablet (max-width: 991px)
   ============================================ */
@media screen and (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-text { grid-column: auto; }
  .hero-text p { max-width: 100%; }
  .hero-stats {
    grid-column: auto;
    margin-top: 2rem;
    align-items: flex-start;
  }
  .section { padding: 6rem 0; }
  .section.logos { padding: 2.5rem 0; }
  .navbar {
    padding: 1rem 0;
    background-color: rgba(0, 10, 6, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .nav-toggle {
    display: flex;
    min-height: 2.75rem;
    min-width: 2.75rem;
    align-items: center;
    justify-content: center;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 2.5rem;
    gap: 1.5rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { font-size: 1.5rem; padding: 0.5rem 0; }
  .logos-row {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
  }
  .logos-row img { max-height: 1.5rem; }
  .deal-card {
    width: 48%;
    max-width: 48%;
  }
  .three-col { flex-wrap: wrap; gap: 2rem; }
  .three-col-item { flex: 1 1 45%; }
  .team-card { width: 48%; max-width: 48%; }
  .service-item { gap: 2rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stats-banner { flex-wrap: wrap; gap: 2rem; justify-content: center; }
  .contact-top { padding-top: 8rem; }
}

/* ============================================
   Responsive: Mobile (max-width: 767px)
   ============================================ */
@media screen and (max-width: 767px) {
  /* --- Typography: consistent 1rem body, 0.875rem secondary --- */
  body { font-size: 1rem; }
  h1 { font-size: 2.5rem; text-wrap: balance; }
  h2 { font-size: 1.8rem; text-wrap: balance; }
  h3 { font-size: 1.25rem; }
  p { font-size: 1rem; }
  .hero-text p { font-size: 1rem; }
  .team-bio p { font-size: 1rem; line-height: 1.65; }
  .deal-card .deal-desc { font-size: 1rem; line-height: 1.6; }
  .deal-card .deal-type { font-size: 0.875rem; }
  .three-col-item p { font-size: 1rem; }
  .service-item-text p { font-size: 1rem; }
  .team-name { font-size: 1.15rem; }
  .team-role { font-size: 0.875rem; }

  /* --- Stats: harmonize hero + transactions banner --- */
  .stats-num { font-size: 2.2rem; }
  .stats-label { font-size: 0.875rem; }
  .stat-value { font-size: 2.2rem; }
  .stat-label { font-size: 0.875rem; }

  /* --- Layout --- */
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .section.tight-top { padding-top: 2.5rem; }
  .section.logos { padding: 1.5rem 0; }
  .section.policy { padding-top: 8rem; }
  .section-header { max-width: 100%; margin-bottom: 2.5rem; }

  /* --- Hero --- */
  .hero { padding-top: 7rem; padding-bottom: 2.5rem; }
  .hero.mini { min-height: auto; padding-top: 7rem; padding-bottom: 2.5rem; }
  .hero-stats { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
  .home .hero-content { gap: 0; }
  .home .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: left;
    border-top: 1px solid rgba(237, 255, 247, 0.15);
    padding-top: 1.25rem;
    margin-top: 1.5rem;
  }
  .home .hero-stats .stats-num { font-size: 1.75rem; }
  .home .hero-stats .stats-label { font-size: 0.75rem; }
  .label-full { display: none; }
  .label-short { display: inline; }

  /* --- Logo bar --- */
  .logos-label { font-size: 0.875rem; text-align: center; }
  .logos-row {
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
  }
  .logos-row img:nth-child(1),
  .logos-row img:nth-child(2) { max-height: 1.45rem; }
  .logos-row img:nth-child(3) { max-height: 1.75rem; }
  .logos-row img:nth-child(4),
  .logos-row img:nth-child(5) { max-height: 1rem; }

  /* --- Cards & grids --- */
  .deal-card { width: 100%; max-width: 100%; height: auto; }
  .deal-card .deal-title { font-size: 1.125rem; }
  .deals-grid { gap: 1rem; margin-top: 2rem; }
  .deals-cta { margin-top: 2rem; }
  .three-col { flex-direction: column; gap: 2.5rem; margin-top: 2rem; }
  .three-col-item { flex: 1 1 100%; }
  .team-grid { gap: 1rem; margin-top: 2rem; }
  .team-card { width: 100%; max-width: 100%; }
  .team-card-header { flex-direction: row; gap: 0.75rem; margin-bottom: 1rem; }
  .team-img { width: 5rem; height: 5rem; }

  /* --- Collapsible team bios --- */
  .team-bio.collapsed {
    max-height: 4.5em;
    overflow: hidden;
    position: relative;
  }
  .team-bio.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2em;
    background: linear-gradient(transparent, var(--color-card));
    pointer-events: none;
  }
  .bio-toggle {
    background: none;
    border: none;
    color: var(--color-light);
    font-family: var(--font-main);
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.6;
    padding: 0.5rem 0 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
  .bio-toggle:hover { opacity: 1; }

  /* --- Service list --- */
  .service-list { margin-top: 1.5rem; }
  .service-item { flex-direction: column; gap: 0.75rem; align-items: flex-start; padding: 1.75rem 0; }
  .service-item .arrow { display: none; }

  /* --- Stats banner (transactions page) --- */
  .stats-banner { gap: 3rem; padding: 2rem 0; }

  /* --- Tabs --- */
  .tabs { flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; margin-bottom: 2rem; }
  .tab-btn { font-size: 0.875rem; padding: 0.625rem 1.25rem; min-height: 2.75rem; }

  /* --- Nav, footer, misc --- */
  .contact-top { padding-top: 7rem; }
  .page-404 { padding-top: 10rem; }
  .page-404 h1 { font-size: 4rem; }
  .nav-links { padding: 2rem 1.25rem; }
  .nav-links .nav-link { font-size: 1.25rem; padding: 0.5rem 0; }
  .btn-outline {
    border-color: rgba(237, 255, 247, 0.3);
    background-color: rgba(237, 255, 247, 0.04);
  }
  .track-record-toggle { margin-top: 1.5rem; padding: 0.875rem 2rem; }
  .footer { padding: 3.5rem 0 2.5rem; }
  .footer-grid { gap: 2rem; }
  .footer .footer-link { font-size: 0.875rem; padding: 0.25rem 0; }
  .footer-location { font-size: 0.875rem; }
  .footer-heading { font-size: 0.9375rem; }
  .footer-cr { font-size: 0.75rem; }

}

/* ============================================
   Responsive: Small Mobile (max-width: 479px)
   ============================================ */
@media screen and (max-width: 479px) {
  /* --- Typography --- */
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.125rem; }
  .stats-num { font-size: 1.9rem; }
  .stat-value { font-size: 1.9rem; }

  /* --- Layout --- */
  .container { padding: 0 1.125rem; }
  .navbar { padding: 0.5rem 0; }
  .nav-logo { width: 5.5rem; min-width: 5.5rem; }
  .section { padding: 3rem 0; }
  .section.tight-top { padding-top: 2.5rem; }
  .section.logos { padding: 1.75rem 0; }
  .section.policy { padding-top: 6rem; }
  .section-header { margin-bottom: 1.75rem; }

  /* --- Hero --- */
  .hero { padding-top: 5.5rem; padding-bottom: 2.5rem; }
  .hero.mini { padding-top: 5.5rem; padding-bottom: 2rem; }
  .hero-stats { gap: 1.25rem; }

  /* --- Logo bar --- */
  .logos-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    place-items: center;
    gap: 1rem 1.5rem;
  }
  .logos-row img { grid-column: span 2; }
  .logos-row img:nth-child(1),
  .logos-row img:nth-child(2) { max-height: 1.35rem; }
  .logos-row img:nth-child(3) { max-height: 1.6rem; }
  .logos-row img:nth-child(4) { max-height: 0.95rem; grid-column: 2 / span 2; }
  .logos-row img:nth-child(5) { max-height: 0.95rem; grid-column: 4 / span 2; }

  /* --- Cards & grids --- */
  .deal-card { padding: 1.5rem 1.25rem; }
  .deal-card .deal-title { font-size: 1.05rem; }
  .deals-grid { gap: 0.875rem; margin-top: 1.5rem; }
  .deals-cta { margin-top: 1.75rem; }
  .team-card { padding: 1.5rem 1.25rem; }
  .team-grid { gap: 0.875rem; margin-top: 1.5rem; }

  /* --- Service list --- */
  .service-list { margin-top: 1rem; }
  .service-item { padding: 1.5rem 0; }

  /* --- Three-col --- */
  .three-col { gap: 2rem; margin-top: 1.5rem; }

  /* --- Stats banner (transactions page) --- */
  .stats-banner { flex-direction: column; padding: 1.5rem 0; gap: 1rem; }

  /* --- Tabs --- */
  .tabs { margin-top: 1.5rem; margin-bottom: 1.5rem; }

  /* --- Footer --- */
  .footer { padding: 2.5rem 0 1.5rem; }

  /* --- Nav, misc --- */
  .contact-top { padding-top: 5.5rem; }
  .page-404 { padding-top: 6rem; }
  .page-404 h1 { font-size: 3rem; }
  .page-404 p { font-size: 1rem; }
  .btn { padding: 0.875rem 1.5rem; font-size: 0.9375rem; }
  .track-record-toggle { margin-top: 1.25rem; }
  .nav-links { padding: 1.5rem 1rem 2rem; }
}
