/* ═══════════════════════════════════════════
   MAIN HEADER - NEW TRANSPARENT DESIGN
   ═══════════════════════════════════════════ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 30px 0;
}

.main-header.scrolled {
  background: #9DA3B0 !important;
  background-color: #9DA3B0 !important;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 4vw, 40px);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* Hamburger Menu Button - Hidden on Desktop */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Left Navigation */
.header-nav {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: flex-start;
}

.header-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  transition: opacity 0.3s ease;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.header-nav-link:hover {
  opacity: 0.8;
}

.header-nav-link:hover::after {
  width: 100%;
}

/* Center Logo */
.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height 0.4s ease;
}

.main-header.scrolled .header-logo img {
  height: 45px;
}

/* Right Social Icons */
.header-social {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* ═══════════════════════════════════════════
   MOBILE SIDEBAR
   ═══════════════════════════════════════════ */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
}

.mobile-sidebar.active {
  pointer-events: all;
}

.mobile-sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-sidebar.active .mobile-sidebar-overlay {
  opacity: 1;
}

.mobile-sidebar-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #1a1a1a;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.active .mobile-sidebar-content {
  transform: translateX(0);
}

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.sidebar-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.sidebar-close svg {
  width: 20px;
  height: 20px;
}

.mobile-sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.mobile-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 18px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #fff;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 35px;
}

.mobile-nav-link:hover::before {
  transform: scaleY(1);
}

.mobile-sidebar-social {
  display: flex;
  gap: 15px;
  padding: 25px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.sidebar-social-icon svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 40px;
    gap: 30px;
  }

  .header-nav {
    gap: 25px;
  }

  .header-nav-link {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 20px 0;
  }

  .main-header.scrolled {
    padding: 15px 0;
  }

  .header-container {
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    padding: 0 20px;
  }

  /* Show Hamburger on Mobile */
  .hamburger-menu {
    display: flex;
  }

  /* Hide Desktop Navigation on Mobile */
  .header-nav {
    display: none;
  }

  /* Center Logo on Mobile */
  .header-logo {
    order: 2;
    justify-content: center;
  }

  .header-logo img {
    height: 40px;
  }

  .main-header.scrolled .header-logo img {
    height: 35px;
  }

  /* Hide Social Icons on Mobile */
  .header-social {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ═══════════════════════════════════════════
   NAV STYLES
   ═══════════════════════════════════════════ */

:root {
  --white:       #ffffff;
  --off-white:   #f4f3f0;
  --card-bg:     #F8F8F8;
  --text-grey:   #8a8a8a;
  --text-dark:   #1a1a1a;
  --band-dark:   #7a7d87;
  --section-padding-x: clamp(20px, 5vw, 80px);
  --section-padding-y: clamp(48px, 8vw, 120px);
  --content-max: 1280px;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader-logo {
  width: min(250px, 70vw);
  max-width: 250px;
}

/* Hide content initially */
#main-content {
  opacity: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}


/* ═══════════════════════════════════════════
   GLOBAL CONTAINER FOR LARGE SCREENS
   ═══════════════════════════════════════════ */
.content-container {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--section-padding-x);
}

/* ═══════════════════════════════════════════
   SECTION 2 WRAPPER
   ═══════════════════════════════════════════ */
/* Section 2 removed */


/* ═══════════════════════════════════════════
   CARDS ROW
   ═══════════════════════════════════════════ */
.section2__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 24px);
  padding: 0 var(--section-padding-x);
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   CARD WRAPPER  (card + pill live here)
   ═══════════════════════════════════════════ */
.card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 52px;
}

.card-wrapper--small {
  padding-bottom: 52px;
}

/* ═══════════════════════════════════════════
   THE CARD  (the visible rounded box)
   ═══════════════════════════════════════════ */
.card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 20px;
  background: var(--card-bg);
  cursor: pointer;
  width: min(356px, calc(100vw - var(--section-padding-x) * 2));
  max-width: 100%;
  height: clamp(280px, 50vw, 379px);
}

.card--small {
  width: min(380px, calc(100vw - var(--section-padding-x) * 2));
  max-width: 100%;
  height: clamp(180px, 28vw, 217px);
}

/* ─── IMAGE  (fills card edge-to-edge, behind title) ─── */
.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}

/* ─── TITLE  (overlays top of card) ─── */
.card__title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  padding: 5px 20px 0;
}

/* ═══════════════════════════════════════════
   DISCOVER PILL  (outside the card, below it)
   ═══════════════════════════════════════════ */
.card__discover {
  position: absolute;
  bottom: clamp(50px, 12vw, 70px);
  left: 50%;
  transform: translate(-50%, 10px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--white);
  border-radius: 50px;
  padding: 14px 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);

  width: calc(100% - 40px); /* nice side spacing */
  max-width: 320px;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.card-wrapper--small .card__discover {
  width: calc(100% - 40px);
  max-width: 320px;
}

.card__discover-text {
  font-family: 'Inter', Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.card__discover-arrow {
  font-size: 19px;
  color: var(--text-dark);
  transition: transform 0.28s ease;
  display: inline-block;
}

/* ═══════════════════════════════════════════
   HOVER STATES
   ═══════════════════════════════════════════ */
.card-wrapper:hover .card__img {
  transform: scale(1.1);
}

.card-wrapper:hover .card__discover {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}


.card__discover:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 18px rgba(0,0,0,0.11);
}

.card__discover:hover .card__discover-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   DARK BAND (next-section teaser)
   ═══════════════════════════════════════════ */
.next-band {
  width: 100%;
  max-width: 100vw;
  height: clamp(48px, 6vw, 60px);
  background: var(--band-dark);
}

.video-clip {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  overflow: hidden;
}


/* Video as background */
.video-clip video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Video as background */
.video-clip img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Black overlay */
.video-clip .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* adjust darkness here */
  z-index: 1;
}

/* Black overlay */
.video-clip .overlay2 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); /* adjust darkness here */
  z-index: 1;
}


/* Content above video + overlay */
.video-clip .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  /* padding-left: 80px; space from left */
}


/* Content above video + overlay */
.video-clip .content2 {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0 var(--section-padding-x);
  width: 100%;
  max-width: 100vw;
}

.video-clip .content2 p {
  font-family: 'Inter', sans-serif;
  color: white;
  font-size: clamp(16px, 2.5vw, 25px);
  line-height: 1.6;
  max-width: min(900px, 90vw);
  margin-top: clamp(24px, 5vw, 50px);
}

.video-clip .content2__lead {
  margin-top: 20px;
  font-size: clamp(16px, 2.5vw, 25px);
  font-weight: 500;
  color: white;
}

.video-clip .content2__quote {
  position: relative;
}

.video-clip .content2__quote .fa-quote-left,
.video-clip .content2__quote .fa-quote-right {
  color: white;
  font-size: clamp(18px, 2.5vw, 24px);
  opacity: 0.8;
}

.video-clip .content2__quote .fa-quote-left {
  margin-right: 10px;
}

.video-clip .content2__quote .fa-quote-right {
  margin-left: 10px;
}

.video-clip .content2__signature {
  margin-top: 20px;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 500;
  font-style: italic;
  color: white;
}

/* Heading styles */
.video-clip h1, .video-clip h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 8vw, 80px);
  font-weight: 900;
  color: rgb(255, 255, 255);
  letter-spacing: -0.01em;
  text-align: center;
  max-width: 100%;
  line-height: 1.2;
  padding: 0 0.5rem;
}



/* ═══════════════════════════════════════════
   SECTION 3 – PROJECTS
   ═══════════════════════════════════════════ */
.section3 {
  width: 100%;
  max-width: 100vw;
  padding: 0 var(--section-padding-x) var(--section-padding-y);
  background: var(--off-white);
}

.section3__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

/* ─── HEADER (title + CTA) ─── */
.section3__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section3__title-wrapper {
  position: relative;
}

.section3__title-outline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px #d4d4d4;
  text-stroke: 1.5px #d4d4d4;
  line-height: 1;
  margin-bottom: 8px;
}

.section3__title-solid {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.17;
  margin-top: 40px;
}

.industrytext{
  font-family: 'Inter', sans-serif;
  line-height: 25px;
}

/* ─── CTA BUTTON ─── */
.section3__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 36px;
  background: transparent;
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  white-space: nowrap;
  margin-top: 8px;
}

.section3__cta-arrow {
  font-size: 20px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.section3__cta:hover {
  background: var(--text-dark);
  color: var(--white);
}

.section3__cta:hover .section3__cta-arrow {
  transform: translateX(5px);
}

/* ─── SUBTITLE ─── */
.section3__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 70px;
  max-width: 900px;
}

/* ═══════════════════════════════════════════
   PROJECT CARDS GRID
   ═══════════════════════════════════════════ */
.section3__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* ─── PROJECT CARD ─── */
.project-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 410px) 1fr auto;
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  padding: 0;
  border: 1px solid #83878E;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: white;
  width: 100%;
  max-width: 100%;
}

.project-card:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* ─── IMAGE WRAPPER ─── */
.project-card__image-wrapper {
  width: 100%;
  min-width: 0;
  max-width: 410px;
  height: clamp(200px, 25vw, 270px);
  overflow: hidden;
  position: relative;
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}

/* On hover: scale up AND expand width slightly */
.project-card:hover .project-card__image {
  transform: scale(1.08);

}

.project-card__image-wrapper img{
  border-right: 1px solid grey;
}

.project-card:hover .project-card__image-wrapper {
  animation: expandWidth 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes expandWidth {
  0% {
    max-width: 410px;
  }
  100% {
    max-width: 430px;
  }
}

/* ─── CONTENT ─── */
.project-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-card__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.project-card__category {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-grey);
}

.project-card__year {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  padding: 4px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
}

.project-card__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #000;
  line-height: 1.2;
  max-width: min(650px, 100%);
}

.project-card__products {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.project-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.project-card__tag {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  padding: 8px 20px;
  border: 1px solid #000;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.project-card:hover .project-card__tag {
  background: #000;
  color: var(--white);
}

/* ─── ARROW ─── */
.project-card__arrow {
  font-size: 42px;
  font-weight: 300;
  color: var(--text-dark);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  justify-self: end;
  padding-right: 20px;
}

.project-card:hover .project-card__arrow {
  transform: translateX(10px);
}

/* ═══════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .project-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-card__image-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .project-card__arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .section3__header {
    flex-direction: column;
    gap: 30px;
  }
}



/* ═══════════════════════════════════════════
   SECTION 4 – HOW WE TRANSFORM
   ═══════════════════════════════════════════ */
.section4 {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: auto;
  overflow: hidden;
  background-color: #ffffff;
  padding: clamp(60px, 8vw, 100px) var(--section-padding-x);
}

/* ─── Two Column Container ─── */
.section4__container {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.section4__subtext{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ─── Remove old background image styles ─── */
.section4__bg {
  display: none;
}

.section4__bg img {
  display: none;
}



.section4_1 h4, .section4_1 p {
  color: black;
}

.section4_1 {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.section4_1--light {
  /* padding: var(--section-padding-y) var(--section-padding-x); */
  padding-top: 80px;
  background-color: white;
  color: black;
}




/* ─── CONTENT LEFT COLUMN ─── */
.section4__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(24px, 3vw, 40px);
}

/* ─── RIGHT COLUMN IMAGE ─── */
.section4__image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section4__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* ─── MAIN HEADLINE ─── */
/* .section4__headline {
  margin-bottom: 40px;
} */

.section4__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ─── SUBTEXT ─── */
.section4__subtext {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
  position: relative;
  width: 100%;
}



.section4__subtext p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

/* ─── CTA BUTTON IN SECTION4 ─── */
.section4__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 3;
  color: #000;
  text-align: left;
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  padding: clamp(14px, 1.5vw, 18px) clamp(24px, 2.5vw, 32px);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  width: fit-content;
}

.section4__cta-arrow {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.section4__cta:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.section4__cta:hover .section4__cta-arrow {
  transform: translateX(5px);
}


/* ─── WHY CLIENTS HEADING ─── */
.section4__clients-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 600;
  color: #000000;
  margin-bottom: clamp(20px, 3vw, 30px);
  letter-spacing: -0.01em;
  text-align: left;
  width: 100%;
}

.whyclients{
  font-size: 32px;
  color: black;
  font-family: 'Inter', sans-serif;
  margin-bottom: 50px;
}

/* ─── BOXES GRID ─── */
.section4__boxes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 30px);
  width: 100%;
  max-width: 100%;
}

/* ─── INDIVIDUAL BOX ─── */
.section4__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0;
}

.section4__box-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.section4__box-icon svg {
  width: 48px;
  height: 48px;
  opacity: 0.95;
}

.section4__box-title {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.section4__box-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .section4__boxes {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section4__boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    justify-items: center;
  }

  .section4__content {
    padding: 0px var(--section-padding-x);
    align-items: center;
    text-align: center;
  }

  .section4__title {
    font-size: 42px;
    text-align: center;
  }

  .section4__subtext {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section4__subtext p {
    width: 100%;
    text-align: center;
  }

  .section4__cta {
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section4__boxes {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .section4__box {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
}


/* ═══════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════ */
.faq-section {
  width: 100%;
  max-width: 100vw;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--off-white);
}

.faq-container {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.faq-header {
  margin-bottom: clamp(32px, 5vw, 60px);
  text-align: left;
}

.faq-eyebrow {
  font-family: 'Inter', Inter, sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.58);
  margin-bottom: 14px;
}

.faq-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #393939;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-grey);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--text-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
  padding: 0 32px 28px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.75);
}

/* Responsive adjustments for FAQ */
@media (max-width: 1024px) {
  .faq-section {
    padding: 96px 56px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 78px 40px;
  }

  .faq-question {
    padding: 22px 24px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 24px 22px 24px;
    font-size: 15px;
  }

  .faq-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 60px 24px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 20px 18px 20px;
    font-size: 14px;
  }
}


/* ═══════════════════════════════════════════
   SECTION 5 – CONTACT FORM
   ═══════════════════════════════════════════ */
.section5 {
  width: 100%;
  max-width: 100vw;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--off-white);
}

.section5__container {
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  gap: clamp(40px, 8vw, 100px);
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

/* ─── LEFT SIDE: INFO ─── */
.section5__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section5__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section5__description {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-grey);
}

/* ─── CONTACT DETAILS ─── */
.section5__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.section5__detail-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.6s ease forwards;
}

.section5__detail-item:nth-child(1) { animation-delay: 0.1s; }
.section5__detail-item:nth-child(2) { animation-delay: 0.2s; }
.section5__detail-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section5__detail-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section5__detail-item:hover .section5__detail-icon {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section5__detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-bottom: 4px;
}

.section5__detail-value {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
}

/* ─── RIGHT SIDE: FORM ─── */
.section5__form-wrapper {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section5__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── FORM GROUPS ─── */
.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 10px 10px 0px 0px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #b0b0b0;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--text-dark);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-input:focus + .form-focus-border,
.form-textarea:focus + .form-focus-border {
  transform: scaleX(1);
}

.form-group:focus-within .form-label {
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Animated focus border */
.form-focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text-dark);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: 'Inter', sans-serif;
}

/* ─── SUBMIT BUTTON ─── */
.form-submit {
  width: 100%;
  padding: 18px 36px;
  background: var(--text-dark);
  color: var(--white);
  border: 2px solid var(--text-dark);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.form-submit:hover::before {
  width: 300px;
  height: 300px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-submit:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-submit__text,
.form-submit__icon {
  position: relative;
  z-index: 1;
}

.form-submit__icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-submit:hover .form-submit__icon {
  transform: translateX(4px);
}

/* ─── SUCCESS MESSAGE ─── */
.form-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 100%;
  max-width: 400px;
  background: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-success.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.form-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: #4caf50;
  animation: successPop 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-success h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-success p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-grey);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .section5__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section5__info {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section5 {
    padding: 80px 40px;
  }

  .section5__form-wrapper {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .section5__form {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section5__details {
    margin-top: 30px;
  }
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  width: 100%;
  max-width: 100vw;
  background: #1a1a1a;
  padding: clamp(48px, 8vw, 80px) var(--section-padding-x) 30px;
}

.footer__wrapper {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 60px;
  margin-bottom: 50px;
}

/* ─── COLUMNS ─── */
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__links--contact li {
  cursor: default;
}

/* ─── LOGO ─── */
.footer__logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 0;
}

.footer__logo img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ─── COPYRIGHT ─── */
.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__legal a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--white);
}

.footer__separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.footer__copyright p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .footer__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .footer__logo {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 40px 30px;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 480px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}












.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* overlay darkness */
  pointer-events: none;
}


.section4__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* overlay darkness */
  pointer-events: none;
}


/* ═══════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE STYLES
   ═══════════════════════════════════════════ */

/* ─── TABLET AND BELOW (1024px) ─── */
@media (max-width: 1024px) {
  /* Section 2 - Statement */
  .section2__statement p {
    font-size: 26px;
  }

  /* Section 2 - Cards */
  .section2__cards {
    padding: 0 40px;
    gap: 20px;
  }

  /* Section 3 - Projects */
  .section3 {
    padding: 80px 40px 80px;
  }

  .section3__title-outline {
    font-size: 56px;
  }

  .section3__title-solid {
    font-size: 34px;
  }

  .project-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-card__image-wrapper {
    width: 100%;
    max-width: 100%;
    height: clamp(200px, 30vw, 270px);
  }

  .project-card__title {
    font-size: 32px;
  }

  /* Section 4 */
  .section4__title {
    font-size: 46px;
  }

  .section4__subtitle {
    font-size: 17px;
  }

  .section4__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* ─── MOBILE LANDSCAPE / SMALL TABLET (768px) ─── */
@media (max-width: 768px) {
  /* Hero Section */
  .nav {
    padding: 20px 24px;
  }

  .nav__logo {
    margin-top: 20px;
  }

  .nav__logo img {
    height: 40px;
  }

  .hero__headline {
    left: 24px;
    bottom: 40px;
  }



  /* Section 2 */
  .section2 {
    padding: 80px 0 80px;
  }

  .section2__statement {
    padding: 0 30px;
    margin-bottom: 80px;
  }

  .section2__statement p {
    font-size: 22px;
    line-height: 1.3;
  }

  .section2__cards {
    flex-direction: column;
    padding: 0 30px;
    gap: 50px;
  }

  .card {
    width: 100%;
    max-width: 450px;
    height: 340px;
  }

  .card--small {
    width: 100%;
    max-width: 450px;
    height: 200px;
  }

  .card__title {
    font-size: 22px;
  }

  .card__discover {
    width: calc(100% - 30px);
    max-width: 100%;
  }

  .card-wrapper--small .card__discover {
    width: calc(100% - 30px);
  }

  /* Section 3 */
  .section3 {
    padding: 60px 30px;
  }

  .section3__header {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .section3__subtitle {
    text-align: center;
  }

  .section3__title-outline {
    font-size: 42px;
  }

  .section3__title-solid {
    font-size: 28px;
  }

  .section3__cta {
    padding: 16px 28px;
    font-size: 14px;
    margin-top: 0;
  }

  .section3__subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .project-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }

  .project-card__image-wrapper {
    width: 100%;
    height: 220px;
  }

  @keyframes expandWidth {
    0%, 100% {
      width: 100%;
    }
  }

  .project-card__title {
    font-size: 26px;
  }

  .project-card__arrow {
    display: none;
  }

  /* Section 4 */
  .section4 {
    padding: 80px 30px;
  }

  .section4__title {
    font-size: 38px;
  }

  .section4__subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .section4__grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 50px;
  }

  .section4__box-title {
    font-size: 19px;
  }

  .section4__box-text {
    font-size: 14px;
  }

  /* Section 5 */
  .section5 {
    padding: 80px 30px;
  }

  .section5__title {
    font-size: 38px;
  }

  .section5__description {
    font-size: 15px;
  }
}

/* ─── MOBILE (480px) ─── */
@media (max-width: 480px) {
  /* Hero */
  .nav {
    padding: 16px 20px;
  }

  .nav__logo img {
    height: 35px;
  }

  .nav__logo {
    margin-top: 15px;
  }

  .hero__headline {
    left: 20px;
    bottom: 30px;
  }



  .scroll-indicator {
    bottom: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
  }

  /* Section 2 */
  .section2 {
    padding: 60px 0 0px;
  }

  .section4__clients-heading{
    font-size: 42px;
  }

  .section4__subtext p {
    width: 100% !important;
}
.section4{
  min-height: 74vh !important;
}

  .section2__statement {
    padding: 0 20px;
    margin-bottom: 60px;
  }

  .section2__statement p {
    font-size: 18px;
    line-height: 1.4;
  }

  .section2__cards {
    padding: 0 20px;
    gap: 24px;
  }

  .card {
    height: 300px;
    width: 90vw;
  }

  .card--small {
    height: 180px;
  }

  .card__title {
    font-size: 20px;
    padding: 5px 15px 0;
  }

  .card__discover {
    padding: 12px 20px;
    width: calc(100% - 20px);
  }

  .card__discover-text {
    font-size: 14px;
  }

  /* Section 3 */
  .section3 {
    padding: 50px 20px;
  }

  .section3__title-outline {
    font-size: 36px;
  }

  .section3__title-solid {
    font-size: 24px;
  }

  .section3__cta {
    padding: 14px 24px;
    font-size: 13px;
    gap: 12px;
  }

  .section3__subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .project-card {
    padding: 25px 15px;
  }

  .project-card__image-wrapper {
    height: 200px;
  }

  .project-card__title {
    font-size: 22px;
  }

  .project-card__category {
    font-size: 11px;
  }

  .project-card__year {
    font-size: 13px;
    padding: 3px 12px;
  }

  .project-card__tag {
    font-size: 12px;
    padding: 6px 16px;
  }

  /* Section 4 */
  .section4 {
    padding: 60px 20px;
  }

  .section4__title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .section4__subtitle {
    font-size: 15px;
  }

  .section4__grid {
    margin-top: 40px;
    gap: 20px;
  }

  .section4__box {
    padding: 30px 20px;
  }

  .section4__box-icon {
    width: 50px;
    height: 50px;
  }

  .section4__box-icon svg {
    width: 26px;
    height: 26px;
  }

  .section4__box-title {
    font-size: 17px;
  }

  .section4__box-text {
    font-size: 13px;
  }

  /* Section 5 */
  .section5 {
    padding: 60px 20px;
  }

  .section5__title {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .section5__description {
    font-size: 14px;
  }

  .section5__details {
    margin-top: 30px;
    gap: 20px;
  }

  .section5__detail-icon {
    width: 40px;
    height: 40px;
  }

  .section5__detail-icon svg {
    width: 18px;
    height: 18px;
  }

  .section5__detail-label {
    font-size: 11px;
  }

  .section5__detail-value {
    font-size: 14px;
  }

  .form-group {
    gap: 8px;
  }

  .form-label {
    font-size: 13px;
  }

  .form-input,
  .form-textarea {
    padding: 14px 16px;
    font-size: 14px;
  }

  .form-submit {
    padding: 16px 28px;
    font-size: 15px;
  }

  .form-success {
    padding: 40px 30px;
  }

  .form-success h3 {
    font-size: 20px;
  }

  .form-success p {
    font-size: 14px;
  }

  /* Footer */
  .footer {
    padding: 50px 20px 25px;
  }

  .footer__container {
    gap: 25px;
    margin-bottom: 40px;
  }

  .footer__heading {
    font-size: 16px;
  }

  .footer__links li {
    font-size: 14px;
  }

  .footer__logo img {
    height: 55px;
  }

  .footer__copyright p {
    font-size: 11px;
  }
}













/* ═══════════════════════════════════════════
   SECTION – HORIZONTAL PRODUCT SLIDER
   ═══════════════════════════════════════════ */
.section-imp {
  width: 100%;
  background: white;
  overflow: hidden;
  padding: 80px 0;
}

.imp-scrollarea {
  position: relative;
  height: 150vh;
}

.imp-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 0 148px;
  box-sizing: border-box;
}

.section-imp__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px 24px;
  flex-wrap: wrap;
  padding: 0 80px;
  padding-top: 80px;
  margin-top: 220px;
}

.section-imp__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.08;
}

.section-imp__hint {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-grey);
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-left: auto;
}

.imp-slider {
  position: relative;
  min-height: 500px;
}

.imp-viewport {
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-snap-type: none;
  scroll-padding-left: 80px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: default;
  outline: none;
  padding-top: 80px;
}

/* ═══ NAVIGATION ARROWS (hidden on desktop, shown on mobile) ═══ */
.imp-nav-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.imp-viewport::-webkit-scrollbar {
  display: none;
}

.imp-track {
  display: flex;
  gap: 300px;
  padding: 18px 80px 96px;
  align-items: stretch;
  /* Start with cards shifted left so first card is out of viewport */
  transform: translateX(-100vw);
  transition: transform 0.01s linear;
}

.imp-track.initialized {
  transform: translateX(0vw);
  transition: none;
}

.imp-track::before,
.imp-track::after {
  content: '';
  flex: 0 0 100vw; /* Changed from 56px to 100vw so last card can go fully outside */
}

.imp-card {
  position: relative;
  flex: 0 0 auto;
  width: 1035px;
  min-height: 726px;
  scroll-snap-align: none;
  padding: 26px 26px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  background: transparent;
  --roll-x: 0px;
  --roll-rot: 0deg;
  --roll-scale: 1;
  --hover-rot: 0deg;
  --hover-y: 0px;
  --position-rot: 0deg;
  opacity: 1;
  transform: translateX(var(--roll-x)) translateY(var(--hover-y)) rotate(calc(var(--roll-rot) + var(--hover-rot) + var(--position-rot))) scale(var(--roll-scale));
  transition: transform 0.66s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.66s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.28s ease;
  isolation: isolate;
  will-change: transform, opacity;
  backface-visibility: hidden;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.imp-card:hover {
  --hover-y: 0px !important;
  --hover-rot: 0deg !important;
}

.imp-card.is-outview {
  opacity: 0.78;
  --roll-scale: 0.975;
}

.imp-viewport[data-dir="right"] .imp-card.is-outview {
  --roll-x: 0px;
  --roll-rot: 0deg;
}

.imp-viewport[data-dir="left"] .imp-card.is-outview {
  --roll-x: 0px;
  --roll-rot: 0deg;
}

.imp-card.is-inview {
  opacity: 1;
  --roll-x: 0px;
  --roll-rot: 0deg;
  --roll-scale: 1;
}

.imp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #F5F5F3;
  z-index: 1;
}

.imp-card__frame {
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(30, 32, 36, 0.38);
  pointer-events: none;
  z-index: 2;
}

.imp-card__blue {
  position: absolute;
  inset: 0;
  background: #393939;
  /* Center origin for rotation */
  transform-origin: center center;
  /* Position: bottom-left offset with slight rotation */
  transform: translate(-8px, 8px) rotate(-4.5deg);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 0;
  pointer-events: none;
}

.imp-card__content {
  position: relative;
  z-index: 3;
  padding: 30px;
}

.imp-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(20, 22, 26, 0.75);
  margin-bottom: 10px;
}

.imp-title {
  font-family: 'Inter', sans-serif;
  font-size: 35px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.imp-title__accent {
  color: var(--text-dark);
}

.imp-desc {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(30, 32, 36, 0.78);
  max-width: 560px;
  margin-bottom: 12px;
}

.imp-ideal {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(30, 32, 36, 0.6);
  margin-top: 30px;
  margin-bottom: 30px;
}

.imp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.imp-pill {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1.2px solid rgba(30, 32, 36, 0.35);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(20, 22, 26, 0.85);
}

.imp-card__media {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  overflow: hidden;
  box-shadow: none;
}

.imp-card__media img {
  max-width: 100%;
  width: 20vw;
  height: 180vh;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none;
}

.imp-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(20, 22, 26, 0.88);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.imp-cta__text {
  display: inline-block;
}

.imp-cta__arrow {
  display: inline-block;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .imp-card:hover {
    --hover-rot: -2.5deg;
  }

  .imp-card:hover .imp-card__blue {
    opacity: 1;
  }

  .imp-card:hover .imp-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .imp-card:hover .imp-cta__arrow {
    opacity: 1;
    transform: translateX(2px);
    transition-delay: 0.08s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .imp-card {
    transition: none;
  }
}

/* Mobile (768px and below): one-card carousel with arrows is in responsive.css */
@media (max-width: 768px) {
  /* Only minimal fallbacks here; main mobile layout is in responsive.css */
  .imp-title {
    font-size: 32px;
  }
}






















/* ═══════════════════════════════════════════
   SECTION 6 – FOUNDERS MESSAGE (NO ANIMATION)
   ═══════════════════════════════════════════ */
.section6 {
  width: 100%;
  max-width: 100vw;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: #ffffff;
}

.section6__card-text {
  font-size: clamp(14px, 2vw, 25px);
}

.section6__container {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.section6__header {
  display: grid;
  gap: 14px;
  margin-bottom: 46px;
}

.section6__eyebrow {
  font-family: 'Inter', Inter, sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.58);
}

.section6__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text-dark);
  max-width: 18ch;
}

.section6__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.section6__pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 5vw, 70px);
}

.section6__card-image--large {
  width: min(300px, 100%);
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: clamp(16px, 2vw, 30px);
}

.section6__card-image--wide {
  width: min(250px, 100%);
  height: auto;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: clamp(16px, 2vw, 30px);
}

.section6__card {
  position: relative;
  border-radius: 0; /* removed border radius */
  padding: 26px 26px;
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  background: transparent;
  --hover-rot: 0deg;
  --hover-y: 0px;
  transform: translateY(var(--hover-y)) rotate(var(--hover-rot));
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.28s ease;
  box-shadow: none; /* removed box shadow */
  isolation: isolate;
  will-change: transform;
}

.section6__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0; /* removed border radius */
  background: #F5F5F3;
  z-index: 1;
}

.section6__card-frame {
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(30, 32, 36, 0.38);
  border-radius: 0; /* removed border radius */
  pointer-events: none;
  z-index: 2;
}

.section6__card-blue {
  position: absolute;
  inset: 0;
  border-radius: 0; /* removed border radius */
  background: #393939;
  /* Using exact same transform as featured products (.imp-card__blue) */
  transform: translate(-8px, 8px) rotate(-4.5deg);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 0;
  pointer-events: none;
}

.section6__card-content {
  position: relative;
  z-index: 3;
  padding: clamp(20px, 3vw, 30px);
}

.section6__card-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}

.section6__card-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(20, 22, 26, 0.75);
  margin-bottom: 6px;
}

.section6__card-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section6__card-text {
  font-family: 'Inter', Inter, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(30, 32, 36, 0.78);
}


@media (hover: hover) and (pointer: fine) {
  .section6__card:hover {
    --hover-rot: -2.5deg;
    --hover-y: -6px;
    box-shadow: none; /* removed box shadow on hover */
  }

  .section6__card:hover .section6__card-blue {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .section6 {
    padding: 96px 56px;
  }
  .section6__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .section6__pillars {
    grid-template-columns: 1fr;
  }
  .section6__title {
    max-width: 26ch;
  }
}

@media (max-width: 768px) {
  .section6 {
    padding: 78px 40px;
  }
  .section6__card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section6__card {
    transition: none;
  }
  .section6__card:hover {
    transform: none;
  }
}


/* ═══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON - LEFT SIDE
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}


/* ═══════════════════════════════════════════
   BACK TO TOP BUTTON - RIGHT SIDE
   ═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 24px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.back-to-top:active {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
    font-size: 22px;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE FOOTER ADJUSTMENTS
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__legal {
    order: 2;
  }

  .footer__copyright {
    order: 1;
  }
}

























#goTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;          /* left corner */
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #333;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: none;       /* hidden by default */
  z-index: 1000;
}

#goTopBtn:hover {
  background: #555;
}
/* Hide pagination dots on desktop */
.imp-pagination {
  display: none;
}

/* ═══════════════════════════════════════════
   FEATURED PRODUCTS GRID LAYOUT
   Same style as Vision/Mission cards with tilt hover
   ═══════════════════════════════════════════ */

.section-imp-grid {
  width: 100%;
  background: white;
  padding: clamp(60px, 6vw, 80px) var(--section-padding-x);
}

.imp-grid-container {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 80px);
  padding: 0;
}

/* Very slight default tilt for each card */
.imp-card-grid:nth-child(1) {
  transform: rotate(-3deg);
}

.imp-card-grid:nth-child(2) {
  transform: rotate(2deg);
}

.imp-card-grid:nth-child(3) {
  transform: rotate(2deg);
}

.imp-card-grid:nth-child(4) {
  transform: rotate(3deg);
}

.imp-card-grid:nth-child(5) {
  transform: rotate(0.8deg);
}

/* Center the last row with 2 cards using grid positioning */
.imp-card-grid:nth-child(4) {
  grid-column: 1 / 2;
  justify-self: end;
}

.imp-card-grid:nth-child(5) {
  grid-column: 2 / 3;
  justify-self: start;
}

/* Grid Product Card - Same styling as Vision/Mission cards */
.imp-card-grid {
  position: relative;
  background: transparent;
  border-radius: 0px;
  padding: clamp(24px, 3vw, 36px);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: visible;
  isolation: isolate;
  /* Default rotation set per card via nth-child */
}

/* Background layer - EXACTLY like Vision/Mission cards */
.imp-card-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #F5F5F3;
  z-index: 1;
}

/* Frame border - same as section6 cards */
.imp-card-grid__frame {
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(30, 32, 36, 0.38);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

/* Blue background layer for tilt effect - BEHIND everything */
.imp-card-grid__blue {
  position: absolute;
  inset: 0;
  background: #393939;
  transform-origin: center center;
  transform: translate(-8px, 8px) rotate(-4.5deg);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 0;
  pointer-events: none;
}

/* Hover effect - straighten card and show blue layer BEHIND */
.imp-card-grid:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.imp-card-grid:hover .imp-card-grid__blue {
  opacity: 1;
  transform: translate(-10px, 10px) rotate(-5deg);
}

.imp-card-grid:hover .imp-card-grid__frame {
  opacity: 0.7;
}

/* Card content */
.imp-card-grid__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vw, 16px);
  flex: 1;
}

.imp-card-grid__content--centered {
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Product image within card */
.imp-card-grid__media {
  width: 100%;
  height: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(12px, 2vw, 20px);
  overflow: hidden;
}

.imp-card-grid__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Placeholder card styling */
.imp-card-grid--placeholder .imp-card-grid__content {
  justify-content: center;
  text-align: center;
}

.imp-card-grid--placeholder .imp-title {
  margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .imp-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 30px);
  }
  
  /* Reset grid positioning and tilts for tablet */
  .imp-card-grid:nth-child(4),
  .imp-card-grid:nth-child(5) {
    grid-column: auto;
    justify-self: auto;
  }
  
  .imp-card-grid:nth-child(1),
  .imp-card-grid:nth-child(2),
  .imp-card-grid:nth-child(3),
  .imp-card-grid:nth-child(4),
  .imp-card-grid:nth-child(5) {
    transform: rotate(0deg);
  }
}

@media (max-width: 768px) {
  .section-imp-grid {
    padding: 0px var(--section-padding-x);
    padding-bottom: 40px;
  }

  .imp-pills {
    padding-bottom: 25px;
}

  
  .imp-grid-container {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 32px);
  }
  
  /* Reset grid positioning, tilts, and justify for mobile */
  .imp-card-grid:nth-child(4),
  .imp-card-grid:nth-child(5) {
    grid-column: auto;
    justify-self: auto;
  }
  
  .imp-card-grid:nth-child(1),
  .imp-card-grid:nth-child(2),
  .imp-card-grid:nth-child(3),
  .imp-card-grid:nth-child(4),
  .imp-card-grid:nth-child(5) {
    transform: rotate(0deg);
  }
  
  .imp-card-grid {
    min-height: auto;
  }
  
  .imp-card-grid__media {
    height: 150px;
  }
  
  /* Disable hover effects on mobile */
  .imp-card-grid:hover {
    transform: none !important;
    box-shadow: none;
  }
  
  .imp-card-grid:hover .imp-card-grid__blue {
    opacity: 0;
    transform: translate(-8px, 8px) rotate(-4.5deg);
  }
  
  .imp-card-grid:hover .imp-card-grid__frame {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .imp-card-grid__media {
    height: 130px;
  }
}