:root {
  --bg: #050607;
  --bg-soft: #050607;
  --text: #eff4f2;
  --muted: #c6d3ce;
  --accent: #f6b400;
  --accent-2: #2dd4bf;
  --overlay: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, #050607 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, #050607 0%, transparent 35%),
    var(--bg);
}

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 5vw;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(220, 188, 106, 0.85);
}

.brand span {
  display: inline-block;
}

.navlinks {
  display: flex;
  gap: 1.2rem;
}

.navlinks a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto 4px;
  background: #f0f1f1;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.hero {
  min-height: 100vh;
  padding-top: 4rem;
}

.carousel {
  position: relative;
  height: calc(100vh - 4rem);
  min-height: 560px;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), var(--overlay));
}

.slide.is-active {
  opacity: 1.0;
  animation: zoomPan 5.8s ease forwards;
}

@keyframes zoomPan {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-copy {
  position: absolute;
  z-index: 4;
  left: 7vw;
  bottom: 14vh;
  max-width: min(560px, 88vw);
  animation: floatUp 0.9s ease;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tag {
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-copy h1 {
  margin: 0.4rem 0 0.7rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 46ch;
}

.cta {
  margin-top: 1.3rem;
  display: inline-block;
  color: #0e1112;
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), #ffd86b);
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  background: rgba(0, 0, 0, 0.38);
}

.arrow-left {
  left: 1rem;
}

.arrow-right {
  right: 1rem;
}

.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.2rem;
  z-index: 6;
  display: flex;
  gap: 0.45rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.dot.active {
  background: var(--accent-2);
  transform: scale(1.2);
}

.info,
.plans {
  padding: 4rem 10vw;
}

.info h2,
.plans h2 {
  margin-top: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
}

.motive {
  padding: 4rem 10vw;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.motive-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 560px;
}

.motive-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.motive-copy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
}

.motive-copy::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 0;
  height: 8px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, rgba(220, 188, 106, 0.9) 0%, rgba(177, 134, 63, 0.9) 100%);
}

.motive-tag {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  color: #050607;
  background: linear-gradient(90deg, #dcbc6a 0%, #b1863f 100%);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
}

.motive-copy h2 {
  margin: 0 0 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
}

.motive-copy p {
  margin: 0 0 1rem;
  color: #e6e9e7;
  line-height: 1.65;
}

.motive-copy p:last-child {
  margin-bottom: 0;
}

.plans p {
  margin-top: 0;
  color: #e3e6e4;
}

.plans-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  position: relative;
  overflow: hidden;
  background: #000;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  padding: 2rem 1.5rem 1.6rem;
  box-shadow: 0 0 0 1px rgba(216, 183, 91, 0.2), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.plan-card::before,
.plan-card::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  height: 8px;
  background: linear-gradient(90deg, rgba(220, 188, 106, 0.9) 0%, rgba(177, 134, 63, 0.9) 100%);
}

.plan-card::before {
  top: 0;
  border-radius: 0 0 8px 8px;
}

.plan-card::after {
  bottom: 0;
  border-radius: 8px 8px 0 0;
}

.plan-card .old-price {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  color: #ededed;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-align: center;
}

.plan-card .label {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  color: #ededed;
  text-decoration-thickness: 2px;
  text-align: center;
}

.plan-card .new-price {
  margin: 0.5rem 0 1.3rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  color: #efe57a;
  text-align: center;
}

.plan-card ul {
  margin: 0;
  padding: 1.2rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.85);
}

.plan-card li {
  position: relative;
  margin-bottom: 0.95rem;
  padding-left: 2.1rem;
  color: #f2f2f2;
  line-height: 1.45;
}

.plan-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid #d8b75b;
  border-radius: 50%;
  color: #d8b75b;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1rem;
}

.cards article {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1rem;
  border-radius: 14px;
}

.cards h3 {
  margin-top: 0;
}

.join-team {
  padding: 4rem 10vw;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
}

.join-left {
  background: #050607
}

.join-right {
  background: #050607;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 12px;
  padding: 2.2rem;
}

.join-left h2 {
  margin-top: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.05em;
}

.join-left p {
  color: #dde5e1;
  max-width: 44ch;
  line-height: 1.5;
}

.team-btn {
  display: inline-block;
  margin-top: 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #080909;
  background: #d8b75b;
  border: 1px solid #e4ca82;
  border-radius: 4px;
  padding: 0.85rem 2.2rem;
}

.team-btn:hover {
  background: #e3c772;
}

.contact-block {
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

.contact-block h3 {
  margin: 0 0 0.45rem;
  font-size: 1.95rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

.contact-block p {
  margin: 0;
  color: #f0f1f1;
  font-size: 1.1rem;
  line-height: 1.45;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #f0f1f1;
  font-size: 1.1rem;
}

.social-links svg {
  width: 22px;
  height: 22px;
  stroke: #d8b75b;
  fill: none;
  stroke-width: 1.8;
}

.social-links a:nth-child(2) svg {
  fill: #d8b75b;
  stroke: none;
}

.social-links a:nth-child(3) svg {
  fill: #d8b75b;
  stroke: none;
}

.social-links a:nth-child(3) svg path {
  fill: #050607;
}

.contact-block.no-border {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

footer {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .motive {
    grid-template-columns: 1fr;
    padding: 3.4rem 7vw;
  }

  .motive-photo {
    min-height: 420px;
  }

  .plans-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .join-team {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    left: 5vw;
    right: 5vw;
    bottom: 16vh;
  }

  .navlinks {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 5vw;
    width: min(220px, 78vw);
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(5, 6, 7, 0.94);
    backdrop-filter: blur(8px);
    flex-direction: column;
    gap: 0.2rem;
  }

  .navlinks.is-open {
    display: flex;
  }

  .navlinks a {
    font-size: 1rem;
    padding: 0.55rem 0.6rem;
    border-radius: 8px;
  }

  .navlinks a:hover {
    background: rgba(220, 188, 106, 0.2);
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    font-size: 1.3rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 640px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.contact-block p, 
.contact-block span {
  font-size: 1.0rem;
} 