/* Basic reset: makes sizing and spacing easier to understand. */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #151515;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

/* Top navigation */
.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 24px 6vw;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 44px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: #555555;
}

.nav-links a:hover {
  color: #151515;
}

/* Hero section */
.hero {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(140px, 1fr) minmax(320px, 620px) minmax(140px, 1fr);
  min-height: 100vh;
  padding: 120px 6vw 80px;
  position: relative;
  text-align: center;
}

.hero-content {
  margin: 0 auto;
  max-width: 620px;
}

.eyebrow {
  color: #777777;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 94px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 28px;
}

.hero h1 span {
  display: block;
}

.text-purple {
  color: #8e00ed;
}

.text-orange {
  color: #f7a80a;
}

.hero-copy {
  color: #555555;
  font-size: 18px;
  margin: 0 auto 34px;
  max-width: 440px;
}

.hero-image {
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.14));
  margin: 0 auto;
  object-fit: contain;
  width: min(100%, 320px);
}

.hero-image-left {
  transform: rotate(-8deg);
}

.hero-image-right {
  transform: rotate(8deg);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.button {
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-width: 160px;
  padding: 14px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: #151515;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.button-secondary {
  background: #ffffff;
  border: 1px solid #dddddd;
  color: #151515;
}

.button-secondary:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

/* Shared section styles */
.section {
  padding: 110px 6vw;
}

.section-inner {
  margin: 0 auto;
  max-width: 1040px;
}

.section-label {
  color: #7a42f4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section h2 {
  font-size: 46px;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: none;
}

.section p {
  color: #555555;
  font-size: 18px;
  max-width: 720px;
}

.section-about {
  background: linear-gradient(
    110deg,
    rgba(142, 0, 237, 0.34) 0%,
    rgba(232, 182, 214, 0.40) 48%,
    rgba(247, 168, 10, 0.34) 100%
  );
}

.section-about .section-inner {
  text-align: center;
}

.section-about .section-label,
.section-about h2,
.section-about p {
  margin-left: auto;
  margin-right: auto;
}

/* Making process carousel */
.process-carousel {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 48px 1fr 48px;
  margin-top: 44px;
}

.process-window {
  overflow: hidden;
  width: 100%;
}

.process-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.process-card {
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 300px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.process-card-image::before {
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  opacity: 0.35;
  position: absolute;
  z-index: 0;
}

.process-card-image::after {
  background: rgba(255, 255, 255, 0.45);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.process-card > * {
  position: relative;
  z-index: 2;
}

.process-number {
  color: #f07a2a;
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 34px;
}

.process-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.process-card p {
  color: #333333;
  font-size: 16px;
}

.carousel-button {
  align-self: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 999px;
  color: #151515;
  cursor: pointer;
  display: flex;
  font-size: 34px;
  font-weight: 400;
  height: 48px;
  justify-content: center;
  line-height: 0;
  padding: 0 0 4px 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 48px;
}

.carousel-button:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.carousel-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
  transform: none;
}

/* Footer */
.site-footer {
  border-top: 1px solid #eeeeee;
  color: #666666;
  display: flex;
  justify-content: flex-end;
  padding: 32px 6vw;
}

/* Tablet and mobile layout */
@media (max-width: 900px) {
  .hero {
    gap: 28px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 130px;
  }

  .hero-image {
    width: min(72vw, 280px);
  }

  .hero-image-left {
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .hero-image-right {
    order: 3;
  }

  .hero h1 {
    font-size: 68px;
  }

.process-carousel {
  grid-template-columns: 42px 1fr 42px;
}

.process-card {
  flex-basis: calc((100% - 18px) / 2);
}

.carousel-button {
  height: 42px;
  width: 42px;
}

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 560px) {
  .site-header {
    padding: 20px 5vw;
  }

  .nav-links {
    gap: 18px;
  }

  .hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero h1 {
    font-size: 54px;
  }

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

  .button {
    width: 100%;
  }

  .section {
    padding: 82px 5vw;
  }

  .section h2 {
    font-size: 34px;
  }

  .section p {
    font-size: 16px;
  }

.process-carousel {
  gap: 10px;
  grid-template-columns: 36px 1fr 36px;
}

.process-card {
  flex-basis: 100%;
  min-height: 300px;
  padding: 26px;
}

.carousel-button {
  font-size: 28px;
  height: 36px;
  width: 36px;
}

}
