:root {
  --primary-color: #FF4D01;
  --text-color: #ffffff;
  --bg-color: #000000;
  --card-bg: rgba(255, 255, 255, 0.1);
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Logo */
.logo__image {
  height: 40px;
  width: 180px;
}

/* Button */
.button {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.button--primary {
  background: var(--primary-color);
  color: var(--bg-color);
}

.button--outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--text-color);
}

.button--primary:hover,
.button--outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.button--outline:hover {
  background: var(--primary-color);
  color: var(--bg-color);
}

/* Header */
.header {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__button {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header__button:hover {
  opacity: 0.8;
}

/* Main */
body {
  background: url(../images/hero.png) no-repeat center center;
  background-size: cover;
  padding-top: 120px;
}

/* Hero */
.hero {
  max-width: 800px;
  width: 100%;
}

.hero__title {
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
}

.hero__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.hero__text a {
  display: block;

  color: #FF4D01;
  text-decoration: none;
}

.hero__button {
  display: block;
  background-color: #FF4D01;
  width: max-content;
  margin-top: 32px;
  border-radius: 100px;
  padding: 24px 48px;

  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero__button:hover {
  box-shadow: 0 0 24px #FF4D01;;
}

/* Stats */
.stats {
  margin-top: 96px;

  display: flex;
  gap: 60px;
}

.stats__item {
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats__number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.stats__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

/* Features */
.features {
  margin-top: 96px;

  display: flex;
  justify-content: space-between;
  gap: 60px;
  
}

.features__item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.features__text {
  font-size: 18px;
}

/* Footer */
.footer {
  padding: 8rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 86px;
}

.footer__text {
  width: 400px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.footer__button {
  margin-top: 0;
}

/* Responsive */
@media screen and (max-width: 1399px) {
  .hero-main {
    width: calc(100vw - 2rem);
  }

  .hero-text {
    display: none;
  }

  .features {
    flex-direction: column;
  }
}

@media screen and (max-width:768px) {

  .header__nav {
    align-items: center;
    justify-content: center;
  }

  .header__button {
    display: none;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .stats {
    flex-direction: column;
  }

  .features__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer__content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer__links {
    flex-direction: column;
    gap: 1rem;
  }
} 