* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body {
  color: #171a20;
  background-color: #ffffff;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 100;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.7);
}

#logoCanvas {
  height: 32px;
  cursor: pointer;
}
.nav-center {
  display: flex;
  gap: 16px;
  font-size: 14px;
}
.nav-center a,
.nav-right a {
  text-decoration: none;
  color: #171a20;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.nav-center a:hover,
.nav-right a:hover {
  background-color: rgba(23, 26, 32, 0.06);
}
.nav-right {
  display: flex;
  gap: 8px;
}
.section {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-top: 56px;
  overflow: hidden;
}
.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.02);
  filter: contrast(105%) saturate(110%);
}
.section-title,
.section-subtitle {
  color: #ffffff;
}
.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(255,255,255,1) 100%);
  z-index: 1;
}
.section-bottom {
  position: relative;
  z-index: 3;
  margin-bottom: 40px;
}
.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  min-width: 260px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.btn-primary {
  background-color: #171a20;
  color: #ffffff;
}
.btn-secondary {
  background-color: #f4f4f4;
  color: #171a20;
}
.btn-black {
  background-color: #171a20;
  color: #ffffff;
}
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  height: 100vh;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(23, 26, 32, 0.5);
  color: white;
  border: none;
  font-size: 32px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 6px;
  z-index: 10;
  transition: 0.2s;
}
.carousel-btn:hover {
  background: rgba(23, 26, 32, 0.8);
}
.carousel-btn.prev {
  left: 20px;
}
.carousel-btn.next {
  right: 20px;
}
.promo-mini {
  display: flex;
  width: 100%;
  height: 260px;
  margin: 40px 0;
}
.promo-mini-box {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 10px;
}
.promo-mini-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: 0.3s ease;
}
.promo-mini-box:hover img {
  filter: brightness(55%);
}
.promo-mini-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px 20px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.promo-mini-content h2 {
  font-size: 22px;
  margin-top: -15px;
  margin-bottom: 0px;
}
.promo-mini-content p {
  font-size: 14px;
  margin-top: -90px;
  margin-bottom: 0px;
}
.promo-mini-content .btn-black {
  align-self: center;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .promo-mini {
    flex-direction: column;
    height: auto;
  }
  .promo-mini-box {
    height: 220px;
    margin: 10px 0;
  }
}
footer {
  background-color: #ffffff;
  color: #000000;
  padding: 40px 16px;
  text-align: center;
}
.footer-logo svg {
  height: 50px;
  fill: #000000;
  margin-bottom: 20px;
}
footer ul {
  list-style: none;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
}
footer a {
  color: #000000;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
