html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

.page-wrapper {
  max-width: 2036px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1886px;
  margin: 0 auto;
  padding: 0 75px;
  box-sizing: border-box;
}

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

.site-header {
  background-color: var(--dark-bg);
  padding: 35px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 39px;
  flex-shrink: 0;
}

.logo-icon {
  width: 48px;
  height: 84px;
}

.logo-text {
  font-size: 45px;
  font-weight: 700;
  color: var(--text-color);
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 55px;
}

.main-nav a {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  padding: 12px 0;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary-color);
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-secondary {
  border: 1px solid var(--text-color);
  background-color: transparent;
  color: var(--text-color);
}

.btn-secondary:hover {
  background-color: var(--text-color);
  color: var(--dark-bg);
}

.gradient-text {
  background: linear-gradient(90deg, #BAE649 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-section {
  padding-top: 250px;
  padding-bottom: 150px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 55px;
}

.hero-title {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary-color);
  margin: 0;
}

.hero-title strong {
  font-weight: 700;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

.hero-cta {
  padding: 20px 50px;
  font-size: 35px;
  font-weight: 700;
}

.features-section {
  padding: 100px 0;
}

.features-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.features-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  width: 100%;
}

.feature-card {
  background-color: var(--card-bg);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.feature-icon {
  width: 122px;
  height: 122px;
  object-fit: contain;
}

.feature-card-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.feature-card-description {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

.feature-card-description strong {
  font-weight: 700;
}

.contact-section {
  padding: 100px 0;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 60px;
  flex: 1;
}

.talk-button-wrapper {
  position: relative;
  width: 203px;
  height: 67px;
  display: flex;
  align-items: center;
}

.talk-button-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #d9d9d9 0%, #bae649 100%);
  border-radius: 51px;
  opacity: 0.32;
}

.talk-button-text {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  padding-left: 41px;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.contact-description {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  padding-top: 70px; /* Visual alignment */
}

.contact-title-right {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon-wrapper {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #bae649 0%, #70833d 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-icon {
  width: 55px;
  height: 35px;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 32px;
  font-weight: 500;
}

.contact-email {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
}

.site-footer {
  background-color: var(--dark-bg);
  margin-top: 180px;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.site-footer p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 1500px) {
  .main-nav {
    display: none;
  }
  .header-container {
    justify-content: space-between;
  }
}

@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
  }
  .features-container {
    gap: 60px;
  }
  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 80px;
  }
  .contact-left, .contact-right {
    align-items: center;
    text-align: center;
    padding-top: 0;
  }
}

@media (max-width: 1024px) {
  .site-header {
    position: static;
  }
  .hero-section {
    padding: 100px 0;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-cta {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .btn {
    font-size: 30px;
    padding: 8px 24px;
  }
  .hero-section {
    padding: 80px 0;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-subtitle br {
    display: none;
  }
  .hero-cta {
    font-size: 22px;
    padding: 15px 30px;
  }
  .hero-container {
    gap: 30px;
  }
  .features-title {
    font-size: 40px;
  }
  .feature-card-title {
    font-size: 28px;
  }
  .feature-card-description {
    font-size: 18px;
  }
  .contact-title, .contact-title-right {
    font-size: 36px;
  }
  .contact-description, .contact-label, .contact-email {
    font-size: 24px;
  }
  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
    .main-nav {
    display: none;
  }
  .header-container {
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
  }
  .header-buttons {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 32px;
  }
  .logo {
    gap: 20px;
  }
  .header-buttons {
    gap: 15px;
  }
}
