/* ========================================
   Our Work Page - Dedicated Styles
   ======================================== */

/* Hero Section */
.our-work-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.our-work-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.our-work-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.our-work-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsl(var(--background)) 0%,
    hsla(var(--background) / 0.85) 40%,
    hsla(var(--background) / 0.95) 100%
  );
}

.our-work-hero__content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 1rem;
}

.our-work-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: hsla(var(--primary) / 0.12);
  color: hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.our-work-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.our-work-hero__desc {
  font-size: 1.125rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.our-work-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .our-work-hero h1 {
    font-size: 3rem;
  }

  .our-work-hero__buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .our-work-hero h1 {
    font-size: 3.5rem;
  }
}

/* Two Column Offerings Section */
.our-work-offerings {
  padding: 5rem 0;
}

.our-work-offerings__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .our-work-offerings__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.our-work-offerings__card {
  position: relative;
  border-radius: 1rem;
  padding: 2.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-work-offerings__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px hsla(var(--primary) / 0.15);
}

.our-work-offerings__card--portfolio {
  background: linear-gradient(
    135deg,
    hsla(var(--primary) / 0.06) 0%,
    hsla(var(--primary) / 0.02) 100%
  );
  border: 1px solid hsla(var(--primary) / 0.12);
}

.our-work-offerings__card--templates {
  background: linear-gradient(
    135deg,
    hsla(var(--secondary) / 0.08) 0%,
    hsla(var(--accent) / 0.04) 100%
  );
  border: 1px solid hsla(var(--border));
}

.our-work-offerings__icon-block {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.our-work-offerings__icon-block--portfolio {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.7));
  color: white;
}

.our-work-offerings__icon-block--templates {
  background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--secondary) / 0.7));
  color: white;
}

.our-work-offerings__thumb {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.our-work-offerings__thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.our-work-offerings__card:hover .our-work-offerings__thumb img {
  transform: scale(1.05);
}

.our-work-offerings__card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  line-height: 1.3;
}

.our-work-offerings__card p {
  font-size: 1rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.our-work-offerings__card-decoration {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.06;
}

.our-work-offerings__card-decoration--portfolio {
  background: hsl(var(--primary));
}

.our-work-offerings__card-decoration--templates {
  background: hsl(var(--secondary));
}

/* Trust / Value Section */
.our-work-trust {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.our-work-trust__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(var(--primary) / 0.04) 0%,
    hsla(var(--background)) 50%,
    hsla(var(--secondary) / 0.04) 100%
  );
}

.our-work-trust__content {
  position: relative;
  z-index: 10;
}

.our-work-trust h2 {
  font-size: 2rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .our-work-trust h2 {
    font-size: 2.5rem;
  }
}

.our-work-trust__strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: hsla(var(--border));
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .our-work-trust__strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .our-work-trust__strip {
    grid-template-columns: repeat(5, 1fr);
  }
}

.our-work-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: hsl(var(--background));
  transition: background 0.3s ease;
}

.our-work-trust__item:hover {
  background: hsla(var(--primary) / 0.04);
}

.our-work-trust__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(var(--primary) / 0.1);
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.our-work-trust__item-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  line-height: 1.4;
}

.our-work-trust__cta {
  text-align: center;
}