@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Quicksand:wght@500;600&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #f6f6f4;
  color: #121212;
  min-height: 100vh;
  padding: 26px 40px 60px;
}

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

header {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 46px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 44px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.logo-mark {
  font-family: "Quicksand", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.6px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-family: "Quicksand", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  align-items: center;
}
nav li {
  padding: 6px 0;
  position: relative;
}
nav li:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #121212;
}
nav .nav-docent {
  background: #0a0a0a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
nav .nav-docent:hover {
  background: #333;
  transform: translateY(-1px);
}
nav li:has(.nav-docent):hover::after {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #dcd5cf;
  background: #fff;
  cursor: pointer;
  padding: 8px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #121212;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: 2fr 0.6fr 1.3fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 50px;
  border-bottom: 1px solid #d5d0cb;
  padding-bottom: 36px;
}
.hero-title {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 600;
}
.hero-divider {
  height: 220px;
  border-right: 1px solid #afaba7;
  transform: skew(-12deg);
  margin-left: auto;
  margin-right: auto;
}
.hero-aside {
  display: grid;
  gap: 16px;
  max-width: 320px;
  margin-left: auto;
}
.hero-badge-row {
  display: flex;
  gap: 10px;
}
.hero-badge {
  background: #e0d7cf;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 15px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.hero-badge img {
  height: 22px;
  width: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.hero-text {
  font-size: 15px;
  line-height: 1.5;
  color: #5b5b5b;
}

.cta {
  align-self: start;
}
.cta button {
  background: #0a0a0a;
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.2);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 12px;
}

.card {
  background: #f3f1ef;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: 16px;
  color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 72%);
  z-index: 0;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.16);
}
.card.top-model {
  background-image: url("../images/Noah.jpeg");
}
.card.performance {
  background-image: url("../images/Jente.jpeg");
}
.card.pool {
  background-image: url("../images/Nino.jpeg");
}
.card-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}
.card p {
  font-size: 15px;
  line-height: 1.35;
  color: #e8e8e8;
}
.card .arrow {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  letter-spacing: 0.2px;
}
.pill.light {
  background: #dfd9d4;
  color: #3c342f;
  font-weight: 600;
}

.card.steps ol {
  margin: 6px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #f5f2ee;
  font-size: 14px;
  line-height: 1.4;
}

.card.steps {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.qr-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-link {
  display: block;
  transition: transform 0.2s ease;
}

.qr-link:hover {
  transform: scale(1.05);
}

.qr-code {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 960px) {
  body {
    padding: 18px;
  }
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
  }
  nav ul {
    gap: 18px;
    flex-wrap: wrap;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
    align-self: center;
  }
  nav {
    width: auto;
    order: 3;
    position: relative;
  }
  nav ul {
    width: min(360px, 100vw - 24px);
    flex-direction: column;
    gap: 12px;
    padding: 12px 14px 10px;
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    margin-left: auto;
    margin-right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  }
  nav ul.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-divider {
    display: none;
  }
  .hero-aside {
    margin-left: 0;
  }
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
@media (max-width: 640px) {
  body {
    padding: 16px;
  }
  header {
    gap: 14px;
    padding: 14px 16px;
  }
  nav ul {
    gap: 12px;
    font-size: 14px;
  }
  .hero {
    gap: 18px;
    margin-bottom: 28px;
  }
  .hero-title {
    font-size: clamp(28px, 9vw, 36px);
  }
  .hero-aside {
    gap: 12px;
    max-width: 100%;
  }
  .cta button {
    width: 100%;
    justify-content: center;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card {
    min-height: 240px;
    padding: 14px;
  }
  .card.steps {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .card.steps ol {
    text-align: left;
    justify-self: center;
  }
  .qr-code {
    width: 100px;
    height: 100px;
  }
}/*# sourceMappingURL=home.css.map */