/* =====================================================
   JVI Systems — style-new.css
   Inter · Dark minimalism · Apple-inspired tokens

   TABLE OF CONTENTS
   ─────────────────────────────────────────────────
   1. GLOBAL — Reset
   2. GLOBAL — Design Tokens (:root)
   3. GLOBAL — Base (html, body, img, a)
   4. GLOBAL — Typography scale
   5. GLOBAL — Layout utilities
   6. GLOBAL — Nav
   7. GLOBAL — Footer
   8. GLOBAL — Scroll Reveal
   ─────────────────────────────────────────────────
   9.  PAGE  — Hero
   10. PAGE  — About
   11. PAGE  — Team
   12. PAGE  — Solutions
   13. PAGE  — Clients & Partners
   14. PAGE  — Contact
   ─────────────────────────────────────────────────
   15. RESPONSIVE — Tablet  (≤ 1068px)
   16. RESPONSIVE — Mobile  (≤ 760px)
   17. RESPONSIVE — Small   (≤ 430px)
   ===================================================== */


/* ─────────────────────────────────────────────────────
   1. GLOBAL — Reset
   ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}


/* ─────────────────────────────────────────────────────
   2. GLOBAL — Design Tokens
   ───────────────────────────────────────────────────── */
:root {
  --black: #000000;
  --off-white: #f5f5f7;
  --gray-100: #e8e8ed;
  --gray-200: #d2d2d7;
  --gray-400: #86868b;
  --gray-500: #6e6e73;
  --gray-600: #424245;
  --gray-800: #1d1d1f;
  --surface: #141414;
  --surface-alt: #0a0a0a;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --nav-h: 52px;
  --pad-x: max(22px, env(safe-area-inset-left));
  --max-w: 980px;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t: 0.28s;
}


/* ─────────────────────────────────────────────────────
   3. GLOBAL — Base
   ───────────────────────────────────────────────────── */
html {
  height: 100%;
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.47059;
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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


/* ─────────────────────────────────────────────────────
   4. GLOBAL — Typography scale
   ───────────────────────────────────────────────────── */

/* Eyebrow label — used across all sections */
.page-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--gray-400);
  margin-bottom: 12px;
}

/* Primary section headline */
.section-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.04em;
  color: var(--off-white);
  margin-bottom: 20px;
}

/* Section intro paragraph */
.section-intro {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: -0.022em;
  color: var(--gray-400);
  max-width: 600px;
}

/* Body copy item (repeated paragraphs) */
.body-copy-item {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.57;
  letter-spacing: -0.015em;
  color: var(--gray-400);
}

.body-copy-item+.body-copy-item {
  margin-top: 18px;
}

/* SEO-only hidden heading */
.visuallyhidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
}


/* ─────────────────────────────────────────────────────
   5. GLOBAL — Layout utilities
   ───────────────────────────────────────────────────── */
.content-wrapper {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section-content {
  margin: 0 auto;
}

.intro-block {
  margin-bottom: 72px;
}


/* ─────────────────────────────────────────────────────
   6. GLOBAL — Nav
   ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.nav-logo {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--off-white);
  flex-shrink: 0;
}

.nav-logo img {
  width: 120px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  margin: 0 0 0 auto;
}

.nav-links a {
  display: block;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--gray-400);
  position: relative;
  transition: color var(--t) var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--off-white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t) var(--ease-out);
}

.nav-links a:hover {
  color: var(--off-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--off-white);
}

.nav-cta {
  margin-left: auto;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--gray-400);
  padding-left: 14px;
  position: relative;
  transition: color var(--t) var(--ease);
}

.nav-cta::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 0;
  height: 1px;
  background: var(--off-white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t) var(--ease-out);
}

.nav-cta:hover {
  color: var(--off-white);
}

.nav-cta:hover::after {
  transform: scaleX(1);
}


/* ─────────────────────────────────────────────────────
   7. GLOBAL — Footer
   ───────────────────────────────────────────────────── */
footer {
  padding: 32px var(--pad-x);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--off-white);
}

.footer-copy {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--gray-600);
}


/* ─────────────────────────────────────────────────────
   8. GLOBAL — Scroll Reveal
   ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}




/* ═════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES
   ═════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────
   9. PAGE — Hero
   ───────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--black);
  /* push below nav */
  padding-top: var(--nav-h);
}

/* Full-bleed background image */
.hero-image-container {
  position: relative;
  width: 100%;
  height: 1060px;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  left: 50%;
  margin-left: calc(-100% / 2);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Dark gradient overlay so text is always readable */
.hero-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 0.33) 55%,
      rgba(0, 0, 0, 1.0) 100%);
}

/* Text block sits over the image via absolute positioning */
.hero-content-overlay {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: 180px;
  margin-top: -195px;
}

.hero-copyblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-wrapper {
  margin-bottom: 40px;
}

#hero-logo {
  display: block;
  width: 220px;
  height: auto;
  margin: 0 auto;
}

.hero-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.045em;
  color: var(--off-white);
  margin-bottom: 24px;
  max-width: 760px;
}

.hero-copy {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 300;
  line-height: 1.47;
  letter-spacing: -0.022em;
  color: var(--gray-200);
  max-width: 620px;
}


/* ─────────────────────────────────────────────────────
   10. PAGE — About
   ───────────────────────────────────────────────────── */
.about-article {
  position: relative;
  background: var(--black);
}

/* Full-bleed background image rendered below the content */
.about-image-container {
  position: relative;
  width: 100%;
  height: 1480px;
  overflow: hidden;
  background-color: #91908c;
}

.about-image-wrapper {
  position: absolute;
  inset: 0;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  margin-top: 100px;


  /* dims to keep dark feel */
}

/* Dark gradient so stats/copy remain legible */
.about-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.0) 45%,
      rgba(0, 0, 0, 0.70) 70%,
      rgba(0, 0, 0, 1.0) 100%);
}

/* Text content overlaps the bottom of the image */
.about-section {
  position: relative;
  margin-top: -320px;
  padding-bottom: 120px;
  z-index: 1;
}

/* Flex row: copy left, stats right */
.about-stats-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.about-copyblock {
  flex: 1 1 55%;
  min-width: 0;
}

.about-body-copy {
  margin-top: 24px;
}

/* Stats column */
.stats-container {
  flex: 1 1 35%;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.stat {
  margin: 0;
  padding: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 20px 0 24px;
}

.stat-divider {
  border-bottom: 1px solid var(--border-light);
}

.stat-number {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--off-white);
}

.stat-caption {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--gray-400);
  text-align: right;
}

/* Globe icon stat */
.stat-icon {
  display: flex;
  justify-content: flex-end;
}

.stat-icon-globe {
  display: block;
  width: 56px;
  height: auto;
}

.stat-icon-globe img {
  width: 100%;
}


/* ─────────────────────────────────────────────────────
   11. PAGE — Team
   ───────────────────────────────────────────────────── */
.team-article {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.team-section {
  position: relative;
  padding: 120px 0 0;
}

/* Text block sits above the portrait */
.portrait-copy-container {
  position: relative;
  z-index: 1;
  margin-bottom: -420px;
  /* pulls portrait up under the text */
}

.team-copyblock .section-headline {
  max-width: 560px;
}

.team-body-copy {
  margin-top: 24px;
  max-width: 560px;
}

/* Portrait image fills below */
.team-image-container {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.team-image-wrapper {
  display: block;
  width: 1200px;
  height: 1200px;
  position: relative;
  top: 0;
  left: 50%;
  margin-left: calc(-1200px / 2);
  margin-top: -178px;
}

.team-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

/* Gradient fade at top of portrait so text transitions smoothly */
.team-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240px;
  /*background: linear-gradient(to bottom, var(--surface) 0%, transparent 100%);*/
  z-index: 1;
  pointer-events: none;
}


/* ─────────────────────────────────────────────────────
   12. PAGE — Solutions
   ───────────────────────────────────────────────────── */
.solutions-article {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.solutions-section {
  padding: 100px 0 120px;
}

/* List of individual solution rows */
.solution-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

/* Each solution row */
.solutions-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  align-items: start;
  padding: 40px 48px;
  border-bottom: 1px solid var(--border);
  transition: background var(--t) var(--ease);
}

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

.solutions-item:hover {
  background: rgba(255, 255, 255, 0.025);
}

/* Icon */
.solutions-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 4px;
}

.solutions-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 0.75;
}

/* Text block */
.solutions-item-copyblock {
  padding: 0;
}

.solutions-subhead {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-bottom: 12px;
}

.item-body-copy {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: -0.015em;
  color: var(--gray-400);
  max-width: 640px;
}

/* ─────────────────────────────────────────────────────
   WORK LIST V1 — Landscape split layout
   (photo left · description right)
   ───────────────────────────────────────────────────── */

.work-list {
  /* Stacks all project rows vertically */
}

/* Each project row */
.work-item {
  padding: 72px var(--pad-x);
  border-bottom: 1px solid var(--border);
}

.work-item:nth-child(even) {
  background: var(--surface);
}

.work-item-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Left: project image/placeholder */
.work-visual {
  width: 100%;
  /*aspect-ratio: 16/10;*/
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  flex-shrink: 0;
}

.work-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}

.work-img-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-600);
  padding: 6px 14px;
  border: 1px dashed var(--gray-600);
  border-radius: 4px;
  text-align: center;
}

/* Right: project description */
.work-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.work-index {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.work-name {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--off-white);
}

.work-type {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--gray-400);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.work-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.015em;
  color: var(--gray-400);
  max-width: 480px;
}

.work-features li {
  color: var(--gray-400);
  list-style: inside;
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .work-item-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- END OF PROJECTS --- */

/* ─────────────────────────────────────────────────────
   13. PAGE — Clients & Partners
   ───────────────────────────────────────────────────── */
.clients-article {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.clients-section {
  padding: 100px 0 120px;
}

/* Logo grid */
.clients-logos-container {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.clients-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 1px;
  background: var(--border);
  /* gap color */
}

.client-logo-item {
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  transition: background var(--t) var(--ease);
}

.client-logo-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.client-logo {
  width: 100%;
  max-width: 140px;
  opacity: 0.55;
  transition: opacity var(--t) var(--ease);
}

.client-logo-item:hover .client-logo {
  opacity: 0.9;
}

.client-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.4);
}


/* ─────────────────────────────────────────────────────
   14. PAGE — Contact
   ───────────────────────────────────────────────────── */
.contact-section-wrap {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.contact-section {
  padding: 100px 0 120px;
}

.contact-items-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Each contact row */
.contact-link-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
  max-width: 480px;
}

.contact-link-item:hover {
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.03);
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  text-decoration: none;
}

/* Icon square */
.contact-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.7;
}

.contact-link-item:hover .contact-icon {
  opacity: 1;
}

#mail-address {
  background-image: url("../images/elements/mail_at-white.gif");
}

#linkedin-account {
  background-image: url("../images/elements/linkedin_in-white.gif");
}

#x-account {
  background-image: url("../images/elements/x_x-white.gif");
}

.contact-link-name {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--off-white);
}




/* ═════════════════════════════════════════════════════
   15. RESPONSIVE — Tablet (≤ 1068px)
   ═════════════════════════════════════════════════════ */
@media only screen and (max-width: 1068px) {

  /* Hero */
  .hero-image-container {
    height: 598px;
  }

  .hero-content-overlay {
    padding-bottom: 90px;
    margin-top: -90px;
  }

  .hero-headline {
    font-size: clamp(36px, 5vw, 52px);
  }

  /* About */
  .about-image-container {
    height: 820px;
  }

  .about-section {
    margin-top: -260px;
  }

  .team-image-wrapper {
    width: 95%;
    height: auto;
    top: 0;
    left: 50%;
    margin-left: calc(-95% / 2);
    margin-top: -25px;
  }

  .team-portrait img {
    margin-top: -50%;
  }

  /* Solutions */
  .solutions-item {
    grid-template-columns: 80px 1fr;
    padding: 32px 36px;
  }

  .solutions-icon img {
    width: 50px;
    height: 50px;
  }

  /* Clients */
  .clients-grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Team */
  .portrait-copy-container {
    position: relative;
    margin: 0 0 30px;
    padding: 0;
    z-index: 1;
  }
}


/* ═════════════════════════════════════════════════════
   16. RESPONSIVE — Mobile (≤ 760px)
   ═════════════════════════════════════════════════════ */
@media only screen and (max-width: 760px) {

  html {
    font-size: 15px;
  }

  .nav-links {
    display: none;
  }

  /* Hero */
  .hero-image-container {
    height: 365px;
  }

  #hero-logo {
    width: 160px;
  }

  .hero-content-overlay {
    padding-bottom: 48px;
    margin-top: -40px;
  }

  /* About */
  .about-image-container {
    height: 400px;
  }

  .about-section {
    margin-top: -180px;
    padding-bottom: 80px;
  }

  .about-stats-container {
    flex-direction: column;
    gap: 32px;
  }

  .about-copyblock {
    flex: none;
    width: 100%;
  }

  .stats-container {
    flex: none;
    width: 100%;
  }

  /* Stat row layout — number left, caption right */
  .stat-content {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
  }

  .stat-number {
    font-size: 44px;
  }

  .stat-caption {
    text-align: left;
    margin-top: 0;
  }

  .stat-icon {
    justify-content: flex-end;
  }

  /* Team */
  .team-section {
    padding: 80px 0 0;
  }

  .team-image-wrapper {
    width: 100%;
    height: auto;
    top: 0;
    left: 50%;
    margin-left: -50%;
    margin-top: -157px;
  }

  .portrait-copy-container {
    margin-bottom: 32px;
  }

  /* Solutions */
  .solutions-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
  }

  .solutions-icon {
    justify-content: flex-start;
  }

  .solutions-icon img {
    width: 60px;
    height: 60px;
  }

  /* Clients */
  .clients-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo-item {
    padding: 28px 20px;
  }

  /* Contact */
  .contact-link-item {
    max-width: 100%;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* ═════════════════════════════════════════════════════
   17. RESPONSIVE — Small (≤ 430px)
   ═════════════════════════════════════════════════════ */
@media only screen and (max-width: 430px) {

  .hero-image-container {
    height: 420px;
  }

  .hero-content-overlay {
    padding-bottom: 36px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .about-image-container {
    height: 300px;
  }

  .about-section {
    margin-top: -120px;
  }

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