@font-face {
  font-family: 'museo';
  src: url('../fonts/museo300-Regular.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'museo';
  src: url('../fonts/museo700-Regular.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'museo';
  src: url('../fonts/museo700-Regular.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reusable animations */
.fade-up,
.fade-in,
.hover-lift {
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s ease;
}

.js-scroll-animations .fade-up,
.js-scroll-animations .fade-in {
  opacity: 0;
}

.js-scroll-animations .fade-up {
  transform: translateY(24px);
}

.js-scroll-animations .fade-up.is-visible,
.js-scroll-animations .fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

.hover-lift:hover,
.hover-lift:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.hover-lift:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .js-scroll-animations .fade-up {
    transform: translateY(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-in,
  .hover-lift,
  .process-card-image,
  .process-card-label,
  .process-card-hover {
    transition: none;
  }

  .delay-1,
  .delay-2,
  .delay-3,
  .delay-4,
  .delay-5 {
    transition-delay: 0s;
  }

  .js-scroll-animations .fade-up,
  .js-scroll-animations .fade-in {
    opacity: 1;
    transform: none;
  }

  .hover-lift:hover,
  .hover-lift:focus-visible,
  .hover-lift:active {
    transform: none;
    box-shadow: none;
  }

  .feature-card:hover {
    transform: none;
    box-shadow: none;
  }

  .feature-card-icon .grad-stop-a,
  .feature-card-icon .grad-stop-b {
    transition: none;
  }

  .our-approach-media-img {
    transition: none;
  }

  .approach-accordion-trigger,
  .approach-accordion-icon img,
  .approach-accordion-panel,
  .approach-accordion-panel > p {
    transition: none;
  }

  .case-study-visual-media:hover img {
    transform: translate(-50%, -50%);
  }

  .case-study-visual-media img {
    transition: none;
  }
}

/* Font */
.font-museo {
  font-family: 'museo', sans-serif;
}

.header {
  background: #1a1414;
  padding: 6px 0;
  position: relative;
  z-index: 100;
}

.container {
  width: 100%;
  max-width: 1770px;
  margin: 0 auto;
  padding: 0 24px;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Desktop Nav */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #FA4616;
}

/* CTA Button */
.btn-call {
  background: #ff5a1f;
  color: #fff;
  text-decoration: none;
  padding: 9px 17px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-call:hover {
  background: #e94d14;
}

.menu-toggle {
  display: none;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 0;
}

/* menu toggle icon */
.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 34px;
  background: #FA4616;
  border-radius: 4px;
}

.menu-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .logo img {
    width: 85px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1414;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    z-index: 101;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
  }

  .nav-wrapper.active {
    max-height: 400px;
    opacity: 1;
    padding: 24px 20px;
    pointer-events: auto;
  }

  .nav ul {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .btn-call {
    width: 100%;
    text-align: center;
  }

}



/* HERO */
.hero {
  position: relative;
  min-height: 875px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../images/prototyping/bg-hero-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Smooth fade-in keyframe used by hero elements */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply staggered fade-in to direct hero children */
.hero > .hero-tag,
.hero > .hero-title,
.hero > .hero-subtitle,
.hero > .hero-text,
.hero > .btn-prototype {
  opacity: 0;
  animation: heroFadeInUp 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero > .hero-tag      { animation-delay: 0.20s; }
.hero > .hero-title    { animation-delay: 0.45s; }
.hero > .hero-subtitle { animation-delay: 0.65s; }
.hero > .hero-text     { animation-delay: 0.85s; }
.hero > .btn-prototype { animation-delay: 1.05s; }

.hero-tag {
  display: inline-block;
  padding: 5px 23px;
  border: 1px solid #FA4616;
  border-radius: 6px;
  color: var(--Warm-White, #FAF8F7);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.7s ease, box-shadow 0.7s ease, transform 0.7s ease;
}

/* .hero-tag:hover {
  border-color: #ff5a2b;
  box-shadow: 0 0 0 4px rgba(250, 70, 22, 0.12);
  transform: translateY(-1px);
} */

.hero-title {
  color: var(--Warm-White, #FAF8F7);
  text-align: center;
  font-family: 'museo', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 650;
  line-height: 100%; 
  margin-top: 30px;
  margin-bottom: 50px;
}
.hero-title-mobile-break {
  display: block;
}

@media (max-width: 768px) {
  .hero-title-mobile-break {
    display: none;
  }
  
}

.hero-subtitle {
  color: #FA4616;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 16px;
}

.hero-text {
  color: #F0F0F0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 50px;
}

.hero-text-mobile-break {
  display: block;
}

@media (max-width: 768px) {
  .hero-text-mobile-break {
    display: none;
  }
}

.btn-prototype {
  display: inline-block;
  background: #FA4616;
  color: #FAF8F7;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  padding: 7px 24px;
  border-radius: 6px;
  font-size: 21px;
  font-weight: 600;
  transition: 0.3s ease;
  /* box-shadow: 0 4px 14px rgba(250, 70, 22, 0.18);
  transition: background 0.7s ease,
              color 0.7s ease,
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.7s ease;
  will-change: transform; */
}
@media(max-width: 520px) {
  .btn-prototype {
    line-height: 92%;
    padding: 8px 20px;
    font-size: 14px;
  }
}

.btn-prototype:hover {
  background: #e95b5b ;
}

/* .btn-prototype:active {
  transform: translateY(0);
  transition-duration: 0.3s;
} */

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero > .hero-tag,
  .hero > .hero-title,
  .hero > .hero-subtitle,
  .hero > .hero-text,
  .hero > .btn-prototype {
    opacity: 1;
    animation: none;
  }

  .hero-tag,
  .btn-prototype {
    transition: none;
  }

  .hero-tag:hover,
  .btn-prototype:hover,
  .btn-prototype:active {
    transform: none;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    min-height: 630px;
    padding: 0 20px;
    background-image: url("../images/prototyping/bg-hero-mobile-image.png");
  }

  .hero-title {
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}



/* INTERACTIVE DEMO */
.interactive-demo {
  position: relative;
  padding: 140px 0;
  overflow-x: hidden;
}

.interactive-demo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #FFF;
  background-blend-mode: color, normal;
}

.interactive-demo .container {
  max-width: 1248px;
  position: relative;
  z-index: 1;
}

.interactive-demo h2 {
  text-align: center;
  color: #FA4616;
  font-family: 'museo', sans-serif;
  font-size: 34px;
  font-weight: 650;
  line-height: 100%;
  margin-bottom: 48px;
}

.interactive-demo img {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.interactive-demo-mobile-break {
  display: block;
}

@media (max-width: 768px) {
  .interactive-demo {
    padding: 40px 0;
  }

  .interactive-demo h2 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .interactive-demo-mobile-break {
    display: none;
  }
}



.stats-card {
  max-width: 1200px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: stretch;
  border: 1px solid #BCBCBC;
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
}

.stats-info {
  text-align: left;
  padding: 18px 24px;
  background: #F1F0F0;
  border-right: 1px solid #BCBCBC;
}

.stats-items-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #FFFFFF;
}

.stats-info h3 {
  color: #FA4616;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.stats-info p {
  margin-top: 8px;
  color: #414040;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.stat-item {
  position: relative;
  padding: 18px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 60%;
  background-color: #BCBCBC;
  transform: translateY(-50%);
}

.stat-item strong {
  color: #FA4616;
  text-align: center;
  font-family: 'museo', sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 650;
  line-height: 100%;
}

.stat-item span {
  color:#414040;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-top: 8px;
}

.interactive-demo-cta {
  text-align: center;
  margin-top: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats-card {
    max-width: 400px;
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .stats-info {
    border-right: none;
    border-bottom: 1px solid #BCBCBC;
    text-align: center;
  }

  .stats-items-wrapper {
    grid-template-columns: 1fr;
  }

  .stat-item:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    width: 65%;
    height: 1px;
    transform: translateX(-50%);
  }

  .interactive-demo-cta {
    margin-top: 32px;
  }

  .interactive-demo-cta .btn-prototype {
    font-size: 16px;
  }
}



/* VALUE SECTION */
.value-section {
  position: relative;
  min-height: 798px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/prototyping/digital-innovation-wall-lg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 130px 0;
}

.value-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 26, 25, 0.25);
  pointer-events: none;
}

.value-section > .container {
  max-width: 1248px;
  position: relative;
  z-index: 1;
}

.value-content {
  text-align: center;
}

.value-tag {
  display: inline-block;
  padding: 5px 23px;
  border: 1px solid #FA4616;
  border-radius: 6px;
  color: var(--Warm-White, #FAF8F7);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}
.value-content h2{
  color: #FA4616;
  font-family: 'museo', sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 650;
  line-height: 100%;
  margin-top: 21px;
  margin-bottom: 16px;
}

.value-content p{
  color: #FAF8F7;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 40px;
}

.value-content h3{
  color: #FAF8F7;
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 56px;
}


/* Value Section Feature cards */
.feature-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* feature card */
.feature-card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 100%;
  background: #fff;
  border: 1px solid #F5A622;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.feature-card:nth-child(2) {
  z-index: 2;
}

.feature-card:nth-child(3) {
  z-index: 3;
}

.value-section-text-mobile-break {
  display: block;
}

.feature-card-icon {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.feature-card-icon .grad-stop-a,
.feature-card-icon .grad-stop-b {
  transition: stop-color 0.5s ease;
}

.feature-card:hover .feature-card-icon .grad-stop-a {
  stop-color: #F5A622;
}

.feature-card:hover .feature-card-icon .grad-stop-b {
  stop-color: #FA4616;
}

.feature-card-title {
  color: #333;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; 
}

.feature-card-desc {
  color: #333;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 10px;
}
@media(min-width: 768px) and (max-width: 1024px) {
  .feature-card {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .value-section {
    min-height: auto;
    padding: 40px 0;
  }
  .value-section-text-mobile-break {
    display: none;
  }
  .value-content h2 {
    font-size: 24px;
  }
  .value-content h3 {
    font-size: 18px;
  }

  .value-content p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  /* feature-cards-mobile  */
  .feature-cards {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    max-width: none;
    margin-inline: -20px;
    padding-inline: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 10%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .feature-cards::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: none;
    z-index: 1;
  }

  .feature-card:hover {
    transform: none;
    box-shadow: none;
  }

  .feature-card-icon .grad-stop-a,
  .feature-card-icon .grad-stop-b {
    transition: none;
  }

  .feature-card:hover .feature-card-icon .grad-stop-a {
    stop-color: #FA4616;
  }

  .feature-card:hover .feature-card-icon .grad-stop-b {
    stop-color: #F5A622;
  }
}

/* OUR APPROACH SECTION */
.our-approach {
  padding: 140px 0;
  text-align: center;
  background: linear-gradient(0deg, var(--Warm-Cream, #FFF4E9) 0%, var(--Warm-Cream, #FFF4E9) 100%), #FDFAF7;
}
.our-approach > .container {
  max-width: 1248px;
}

.our-approach-tag {
  color: #1F1A19;
  display: inline-block;
  padding: 5px 23px;
  border: 1px solid #FA4616;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}
.our-approach-content h2 {
  margin-top: 21px;
  color: #FA4616;
  text-align: center;
  font-family: 'museo', sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 650;
  line-height: 100%; 
}
.our-approach-content p {
  color: #928685;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; 
  margin-top: 16px;
  margin-bottom: 40px;
}

.our-approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.approach-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.approach-accordion-item {
  position: relative;
  background: #FDFAF7;
  border: 0.25px solid #FA4616;
  border-radius: 6px;
  overflow: hidden;
}

.approach-accordion-item.is-open .approach-accordion-accent {
  position: relative;
}

.approach-accordion-item.is-open .approach-accordion-accent::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 18px;
  width: 1px;
  background: #FA4616;
}

.approach-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.35s ease;
}

.approach-accordion-title {
  color: #FA4616;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.approach-accordion-icon {
  flex-shrink: 0;
  width: 37px;
  height: 22px;
  line-height: 0;
}

.approach-accordion-icon img {
  display: block;
  width: 37px;
  height: 22px;
  transform-origin: 50% 50%;
  transition: transform 0.35s ease;
}

.approach-accordion-item.is-open .approach-accordion-icon img {
  transform: scaleY(-1);
}

.approach-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 24px 0 24px;
  transition: grid-template-rows 0.35s ease, padding-bottom 0.35s ease;
}

.approach-accordion-item.is-open .approach-accordion-panel {
  grid-template-rows: 1fr;
  padding: 0 80px 0 28px;
}

@media (min-width: 801px) {
  .approach-accordion-item.is-open {
    padding-bottom: 20px;
  }
}

.approach-accordion-panel > p {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  opacity: 0;
  color: #2E2E2E;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  transition: opacity 0.25s ease;
  text-align: left;
}

.approach-accordion-item.is-open .approach-accordion-panel > p {
  opacity: 1;
  transition-delay: 0.08s;
}

.approach-accordion-panel-img {
  display: none;
}

.our-approach-cta {
  margin-top: 40px;
}
.our-approach-cta h3{
  color: #2E2E2E;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; 
  margin-bottom: 40px;
}


.our-approach-media {
  border-radius: 24px;
  overflow: hidden;
}

.our-approach-media-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.our-approach-media-img.is-swapping {
  opacity: 0;
  transform: scale(1.02);
}
.our-approach-cta-text-mobile-break {
  display: block;
}
@media (max-width: 800px) {
  .our-approach-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .our-approach-media {
    display: none;
  }

  .approach-accordion-item {
    background: #fff;
  }

  .approach-accordion-item.is-open .approach-accordion-panel {
    padding: 0 24px 0 28px;
  }

  .approach-accordion-item.is-open .approach-accordion-panel-img {
    display: block;
    width: calc(100% - 52px);
    max-height: 400px;
    height: auto;
    border-radius: 12px;
    margin: 16px 24px 20px 24px;
    filter: grayscale(100%);
  }
}

@media (max-width: 768px) {
  .our-approach {
    padding: 40px 0;
  }

  .our-approach-content h2 {
    font-size: 24px;
  }
  .our-approach-cta > .btn-prototype {
    font-size: 14px;
  }
  .our-approach-cta-text-mobile-break {
    display: none;
  }
}


/* OUR PROCESS SECTION */
.our-process {
  padding: 140px 0;
  border-top: 1px solid var(--grey-200, #D8D5D5);
  border-bottom: 1px solid var(--grey-200, #D8D5D5);
  background: #FDFAF7;
}
@media(max-width: 1024px) {
  .our-process {
    padding: 60px 0;
  }
}
.our-process > .container {
  max-width: 1248px;
}


.our-process-tag {
  color: #1F1A19;
  display: inline-block;
  padding: 5px 23px;
  border: 1px solid #FA4616;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.our-process-content {
  text-align: center;
}
.our-process-content h2 {
  color: #FA4616;
  text-align: center;
  font-family: 'museo', sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 650;
  line-height: 100%; 
  margin-top: 18px;
}

.our-process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 56px;
}

.process-card {
  position: relative;
  aspect-ratio: 282 / 338;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  cursor: default;
}

.process-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--grey-200, #D8D5D5);
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 300ms ease;
}

.process-card-image,
.process-card-label,
.process-card-hover {
  transition: opacity 300ms ease, transform 300ms ease;
}

.process-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.process-card-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(250, 248, 247, 0.70);
}

.process-card-title {
  color: #2E2E2E;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

.process-card-arrow img {
  display: block;
}

.process-card-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 24px;
  background: #fff;
  border-radius: inherit;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.process-card-hover-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.process-card-hover .process-card-title {
  max-width: 65%;
}

.process-card-icon {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.process-card-desc {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: #6B6B6B;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.process-card-number {
  position: absolute;
  left: 16px;
  bottom: -24px;
  color: #E8E4E2;
  font-family: 'museo', sans-serif;
  font-size: clamp(64px, 8vw, 88px);
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
}

@media (hover: hover) {
  .process-card:hover::after {
    opacity: 1;
  }

  .process-card:hover .process-card-image,
  .process-card:hover .process-card-label {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .process-card:hover .process-card-hover {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .our-process-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-card {
    height: 338px;
    aspect-ratio: auto;
  }
}

@media (min-width: 521px) {
  .process-cards-track {
    display: contents;
  }

  .process-cards-dots {
    display: none;
  }
}

@media (max-width: 520px) {
  .our-process {
    padding: 40px 0;
  }

  .our-process-content h2 {
    font-size: 24px;
  }

  .our-process-cards {
    display: block;
    overflow: hidden;
    margin-top: 25px;
  }

  .process-cards-track {
    display: flex;
    transition: transform 0.35s ease;
  }

  .process-cards-track .process-card {
    flex: 0 0 100%;
    height: 338px;
    aspect-ratio: auto;
    cursor: pointer;
  }

  .process-card.is-flipped::after {
    opacity: 1;
  }

  .process-card.is-flipped .process-card-image,
  .process-card.is-flipped .process-card-label {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .process-card.is-flipped .process-card-hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .process-card-number {
    font-size: 110px;
    bottom: -32px;
    left: 16px;
  }

  .process-cards-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .process-cards-dot {
    width: 16px;
    height: 16px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #D8D5D5;
    cursor: pointer;
  }

  .process-cards-dot.is-active {
    background: #2E2E2E;
  }
}
@media(min-width: 520px) and (max-width: 600px) {
  .process-card-title {
    font-size: 16px;
  }
}
/* CASE STUDY SECTION */
.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 639px);
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  width: 100%;
  margin-top: 100px;
}

.case-study-content {
  max-width: 500px;
  text-align: left;
}

.case-study-tag {
  display: inline-block;
  padding: 5px 23px;
  border: 1px solid #FA4616;
  border-radius: 6px;
  background: #fff;
  color: #1F1A19;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.case-study-title {
  color: #FA4616;
  font-family: 'museo', sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 650;
  line-height: 100%;
}

.case-study-text {
  color: #928685;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-top: 24px;
}
.case-study-text span {
  font-weight: 700;
}

.case-study-outro {
  color: #2E2E2E;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-top: 32px;
}

.case-study-testimonial {
  overflow: hidden;
  position: relative;
  margin-top: 32px;
  padding: 24px;
  background: #fff;
  border: 1px solid #F5F5F5;
  border-radius: 40px;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.25);
}

.case-study-quote-icon {
  position: absolute;
  top: -8px;
  right: 26px;
  pointer-events: none;
  z-index: 0;
}

.case-study-testimonial-headline {
  padding-right: 96px;
  position: relative;
  z-index: 1;
  color: #FA4616;
  font-family: 'museo', sans-serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 700;
  line-height: 100%;
}

.case-study-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 12px;
}

.case-study-testimonial-quote {
  margin: 12px 0 0;
  padding: 0;
  border: none;
}

.case-study-testimonial-quote p {
  color: #6C6362;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 150%;
}

.case-study-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 0;
}

.case-study-author-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid #6C6362;
}

.case-study-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case-study-author-name {
  color: #2E2E2E;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.case-study-author-role {
  color: #B4ADAC;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 120%;
}


.case-study-visual-media {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 639px;
  aspect-ratio: 640 / 500;
  align-self: center;
  justify-self: end;
  background: url("../images/prototyping/penthouse-queen-app-screens.svg") 50% 100% / 89.5% auto no-repeat;
}

.case-study-visual-media img {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 89.6%;
  height: auto;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: transform 0.35s ease;
}

@media (hover: hover) {
  .case-study-visual-media:hover img {
    transform: translate(-50%, -50%) scale(1.05);
  }
}


@media (max-width: 1024px) {
  .case-study {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 64px;
  }

  .case-study-content {
    display: contents;
  }

  .case-study-tag {
    order: 1;
    margin: 0 auto 20px;
  }

  .case-study-visual-media {
    order: 2;
    aspect-ratio: auto;
    margin-bottom: 20px;
    padding-bottom: 30px;
  }

  .case-study-visual-media img {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: block;
    margin: 0 auto;
  }

  .case-study-title {
    order: 3;
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
  }

  .case-study-text {
    order: 4;
    text-align: center;
    margin-top: 0;
  }

  .case-study-outro {
    order: 5;
    text-align: center;
    margin-top: 24px;
  }

  .case-study-testimonial {
    order: 6;
    align-self: stretch;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    margin-top: 32px;
  }
}

@media( min-width: 640px) and (max-width: 768px) {
  .case-study-outro{
    padding: 0 60px;
  }
  .case-study-title {
    padding: 0 40px;
  }
  
}

@media( min-width: 500px) and (max-width: 640px) {
  .value-content h2 {
    padding: 0 55px;
  }
  .our-approach-content h2 {
    padding: 0 30px;
  }
  .wireframe-section > .container h2 {
    padding: 0 20px;
  }
  .wireframe-section > .container p {
    padding: 0 20px;
  }
  .interactive-demo h2 {
    padding: 0 10px;
  }
}


@media (max-width: 768px) {
  .case-study {
    margin-top: 48px;
  }

  .case-study-quote-icon {
    top: -5;
    right: 6px;
  }

  .case-study-testimonial-headline {
    padding-right: 40px;
  }

}

/* WIREFRAME SECTION */
.wireframe-section {
  position: relative;
  max-height: 516px;
  background-image: url("../images/prototyping/mobile-app-wireframe.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0;
}
.wireframe-section > .container {
  max-width: 1248px;
  text-align: center;
}

.wireframe-section > .container h2 {
  color: #FAF8F7;
  text-align: center;
  font-family: 'museo', sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 650;
  line-height: 100%;
  margin-top: 20px;
}
.wireframe-section > .container p {
  color: #FAF8F7;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; 
  margin-top: 14px;
  margin-bottom: 40px;
}

.wireframe-tag {
    display: inline-block;
    padding: 5px 23px;
    border: 1px solid #FA4616;
    border-radius: 6px;
    color: #FAF8F7;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }

  @media (max-width: 768px) {
    .wireframe-text-mobile-break {
      display: none;
    }
    .wireframe-section > .container > .btn-prototype {
      font-size: 14px;
      line-height: none;
      padding: 7px 20px;
    }
    .wireframe-section {
      padding: 60px 0;
    }
  }




  /* RAPID PROTOTYPING FOOTER */
  .rapid-prototyping-footer {
    padding: 64px 0;
    background-color: #F0F0F0;
  }
  .rapid-prototyping-footer > .container {
    max-width: 1248px;
    padding: 0 24px;
  }

 .rapid-prototyping-footer-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.5fr) 1fr;
  gap: 40px;
  padding-bottom: 40px;
 }

.rp-footer-partners {
  justify-self: end;
  text-align: right;
}

@media (max-width: 1024px) {
  .rapid-prototyping-footer-content {
    gap: 20px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr) minmax(0, 0.75fr) 1fr;
  }
}
.rapid-prototyping-footer-logo p {
  color: #2E2E2E;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; 
  margin-top: 18px;
}


.rp-footer-partners-title {
  text-align: left;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; 
  margin: 0 0 18px;
}
 .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  h4 {
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; 
    margin-bottom: 16px;
  }
  p {
    color: #484141;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; 

  }
  a {
    color: #484141;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; 
    text-decoration: none;
    transition: color 0.3s ease;
  }
  a:hover {
    color: #FA4616;
  }
 }

 .footer-company {
  h4 {
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; 
    margin-bottom: 18px;
  }
 }
 .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
 }
 .footer-links li {
  list-style: none;
 }
.footer-links li a {
  color: #484141;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; 
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #FA4616;
}


.rp-footer-partner-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}


/* FOOTER BAR */
.rp-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.rp-footer-bar-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.rp-footer-bar-copyright {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}

.rp-footer-bar-year {
  color: #FA4616;
  font-weight: 600;
}

.rp-footer-bar-rights {
  color: #2E2E2E;
  font-weight: 600;
}

.rp-footer-bar-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.rp-footer-bar-links a {
  color: #484141;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rp-footer-bar-links a:hover {
  color: #FA4616;
}

.rp-footer-bar-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.rp-footer-bar-social a {
  display: flex;
  line-height: 0;
  transition: opacity 0.3s ease;
}

.rp-footer-bar-social a:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .rapid-prototyping-footer {
    padding: 40px 0;
  }

  .rapid-prototyping-footer > .container {
    padding: 0 20px;
  }

  .rapid-prototyping-footer-content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "contact company"
      "partners partners";
    gap: 32px 24px;
    padding-bottom: 0;
  }

  .rapid-prototyping-footer-logo p {
    margin-top: 14px;
  }

  .footer-contact {
    grid-area: contact;
    gap: 12px;
  }

  .footer-contact h4,
  .footer-company h4 {
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .footer-company {
    grid-area: company;
  }

  .rp-footer-partners {
    grid-area: partners;
    justify-self: stretch;
    margin-top: 8px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    text-align: center;
  }

  .rp-footer-partners-title {
    text-align: center;
  }

  .rp-footer-partner-logos {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .rp-footer-bar {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    text-align: center;
  }

  .rp-footer-bar-social {
    order: 1;
    justify-content: center;
  }

  .rp-footer-bar-legal {
    order: 2;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .rp-footer-bar-copyright {
    justify-content: center;
  }

  .rp-footer-bar-links {
    justify-content: center;
    gap: 20px;
  }
}