.header,
body {
  background: #fff;
}
.earnings-total .amount,
.earnings-total .period {
  font-size: 24px;
  font-family: Arial;
  text-transform: uppercase;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Inter, ABeeZee, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.header {
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.contact-form,
.earnings h2,
.earnings-list,
.earnings-total,
.hero .container,
.hero-content {
  position: relative;
  z-index: 2;
}
.footer-top,
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 40px;
}
.nav {
  display: flex;
  gap: 30px;
}
.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-column a:hover,
.nav a:hover {
  color: #538a50;
}
.hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.4) 100%),
    url(../content/img/hero-bg.png) center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
  padding: 0 20px;
}
.about-content,
.investment-types {
  grid-template-columns: 1fr 1fr;
  display: grid;
}
.hero-text h1 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  text-align: center;
  min-height: 94px;
}
.hero-video {
  position: relative;
}
.hero-video video {
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.hero-form input,
.hero-form select {
  padding: 15px;
  border: 1px solid #fff;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.38);
  transition: border-color 0.3s;
  color: #fff;
}
.hero-form input::placeholder {
  color: #fff;
}
.hero-form input:focus,
.hero-form select:focus {
  outline: 0;
  border-color: #538a50;
}
.btn-primary {
  background: #538a50;
  color: #fff;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
}
.earnings-item,
.earnings-total {
  align-items: center;
  border-radius: 60px;
  display: flex;
}
.btn-primary:hover {
  background: #467846;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(83, 138, 80, 0.4);
}
.earnings {
  background: url(../content/img/bg.png) bottom center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.earnings::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(83, 138, 80, 0.1) 0, transparent 70%);
}
.earnings .container {
  max-width: 800px;
}
.earnings h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.earnings-total {
  text-align: center;
  margin-bottom: 50px;
  background: #65d569;
  justify-content: space-between;
  padding: 12px 20px;
}
.earnings-total .amount {
  font-weight: 700;
  line-height: 100%;
  text-align: right;
  color: #fff;
}
.about h2,
.investment h2,
.investment-type {
  text-align: center;
}
.earnings-total .period {
  color: #fff;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
.earnings-list {
  width: 100%;
  height: 525px;
  overflow: hidden;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.earnings-item {
  background: #fff;
  padding: 12px;
  margin-bottom: 15px;
  transition: 0.5s;
  opacity: 1;
  transform: translateY(0);
  height: 90px;
  flex-shrink: 0;
}
.irs--flat .irs-bar,
.irs--flat .irs-from,
.irs--flat .irs-handle > i:first-child,
.irs--flat .irs-single,
.irs--flat .irs-to,
.user-avatar {
  background: #538a50;
}
.earnings-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(83, 138, 80, 0.2);
}
.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 20px;
  opacity: 1 !important;
}
.user-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.user-info .name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
}
.user-info .location {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.5);
}
.earnings-item .amount {
  font-weight: 600;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  gap: 4px;
  align-items: center;
}
.earnings-item .amount::before {
  content: url(../content/img/polygon.svg);
}
.about,
.certificate {
  padding: 80px 0;
  background: #f8f9fa;
}
.about h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}
.about .container {
  max-width: 900px;
}
.about-content {
  gap: 60px;
  align-items: flex-start;
}
.about-image img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-text p {
  font-family: ABeeZee;
  font-size: 16px;
  line-height: 100%;
}
.signature {
  font-weight: 700;
  color: #000 !important;
  margin-top: 30px;
}
.investment {
  background: #1e2634;
  color: #fff;
  padding: 80px 0;
  position: relative;
}
.investment h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}
.investment-map {
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  overflow: hidden;
}
.investment-map video {
  width: 102%;
  object-position: center;
  height: auto;
  margin-left: -5px;
}
.investment-calculator {
  max-width: 500px;
  margin: 0 auto;
}
.calculator-content {
  padding: 40px;
  border-radius: 15px;
  border: 3px solid #f8ce23;
  backdrop-filter: blur(10px);
}
.investment-types {
  gap: 30px;
  margin-bottom: 30px;
}
.investment-type .label {
  display: block;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 10px;
}
.investment-type .amount {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #538a50;
}
.slider-container {
  margin: 30px 0;
}
#investment-slider,
.certificate-image img {
  width: 100%;
}
.certificate .container {
  max-width: 640px;
}
.certificate-content {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 26px;
  align-items: center;
}
.certificate-text,
.contact-form {
  flex-direction: column;
  display: flex;
}
.certificate-text {
  gap: 30px;
}
.certificate-text h3 {
  font-family: Arial;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  text-transform: uppercase;
}
.certificate-text p,
.certificate-text span {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
}
.certificate-text span {
  line-height: 100%;
  color: rgba(0, 0, 0, 0.5);
}
.contact {
  background: url(../content/img/bg.png) bottom/cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.contact-form {
  max-width: 400px;
  margin: 0 auto;
  gap: 20px;
}
.calculator-content .btn-primary {
  max-width: 100%;
  width: 100%;
}
.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.contact-form input:focus,
.contact-form select:focus {
  outline: 0;
  border-color: #538a50;
  background: rgba(255, 255, 255, 0.15);
}
.footer {
  background: #1c1c1c;
  color: #fff;
  padding: 50px 0 20px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-logo img {
  height: 22px;
}
.footer-links {
  display: flex;
  gap: 50px;
}
.footer-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
}
.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #999;
}
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .header {
    position: relative !important;
  }
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  .nav {
    gap: 20px;
    display: none;
  }
  .hero {
    padding-top: 40px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .about-content,
  .certificate-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .investment-types {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .about h2,
  .earnings h2,
  .earnings-total .amount,
  .investment h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-column {
    justify-content: center;
  }
  .calculator-content,
  .hero-form {
    padding: 20px;
  }
  .earnings-item {
    padding: 15px;
  }
  .user-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .investment-type .amount {
    font-size: 1.5rem;
  }
}
.irs--flat .irs-handle {
  background: #538a50 !important;
  border-radius: 50%;
  cursor: pointer;
}
.irs--flat .irs-handle > i {
  display: none !important;
}
