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

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #1e314b 0%, #795059 100%);
  color: white;
  line-height: 1.6;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
}

/* Header Styles */
.header {
  padding: 30px 20px;
  text-align: center;
}

.main-title {
  margin-bottom: 38px;
  color: #fff;

  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.highlight {
  color: #e13434;
}

.medal {
  position: absolute;
  top: -53px;
  right: -19px;
  width: 86.184px;
  height: 86.184px;
  transform: rotate(20.482deg);
}

.winner-banner {
  border-radius: 29px;
  background: #e13434;
  padding: 15px;
  margin: 20px 0;
  position: relative;
}

.winner-text {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}

.description {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}

/* Calculator Styles */
.calculator {
  border-radius: 25px;
  border: 1px solid #ccc9c9;
  background: #112137;
  padding: 20px;
  margin: 20px 0;
}

.currency-selectors {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.currency-select {
  flex: 1;
  padding: 12px;
  border: 1px solid #34495e;
  border-radius: 8px;
  background: #2c3e50;
  color: white;
  font-size: 14px;
}

.profit-display {
  text-align: center;
  margin: 20px 0;
}

.profit-label {
  font-size: 14px;
  color: #bdc3c7;
  margin-bottom: 10px;
}

.profit-amount {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.profit-value {
  font-size: 24px;
  font-weight: bold;
  color: #2ecc71;
}

.profit-arrow {
  font-size: 20px;
  color: #2ecc71;
}

.calculate-btn {
  width: 100%;
  padding: 15px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.calculate-btn:hover {
  background: #c0392b;
}

/* Section Styles */
.section-title {
  color: #fff;
  font-size: 32px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}

/* Customers Section */
.customers {
  padding: 0 20px;
}

.customer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.customer-card {
  background: #152034;
  padding: 0 0 5px 0;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.customer__header {
  border-radius: 15px 15px 0px 0px;
  background: #ccc9c9;
}

.customer-avatar {
  width: 100px;
  height: 100px;
  margin-top: 15px;
  margin-bottom: -7px;
  object-fit: cover;
}

.customer-info {
  padding: 10px;
}

.customer-info h3 {
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.customer-info p {
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}

.customer__green {
  color: #2de971;
}

.customer-btn {
  border-radius: 25px;
  background: #e13434;
  color: white;
  border: none;
  padding: 8px 12px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.customer-btn:hover {
  background: #c0392b;
}

/* Advantages Section */
.advantages {
  padding: 40px 20px;
}

.advantage-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 19px;
  background: #222033;
  backdrop-filter: blur(10px);
}

.icon {
  width: 20px;
  height: 20px;
}

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

.advantage-text h3 {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}

.advantage-text p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* Testimonials Section */
.testimonials {
  padding: 0 20px;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #211f34;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.testimonial-avatar {
  border-radius: 50%;
  background: #fff;
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-content p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.testimonial-author {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Registration Section */
.registration {
  padding: 20px;
}

.form-wrapper {
  border-radius: 15px;
  background: #00101c;
  width: 100%;
  padding: 20px;
}

.registration-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: #ecf0f1;
}

/* Certificate Section */
.certificate {
  padding: 20px;
}

.certificate-img {
  width: 100%;
}

.certificate-content {
  margin-bottom: 20px;
}

.certificate-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.certificate-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.certificate-content h4 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}

.certificate-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.certificate__bottom__text {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  /* padding: 10px 0px 0px 200px; */
  /* background: url("./images/graph2.png") -40px 50% / cover no-repeat; */
}

.certificate-date {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.certificate-signature {
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
}

/* Footer */
.footer {
  padding: 30px 20px;
  text-align: center;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.payment-methods img {
  width: 57px;
  height: 35px;
  object-fit: cover;
  border-radius: 4px;
}

.footer-text {
  color: #bdc3c7;
  font-size: 12px;
}

.footer-text p {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 400px) {
  .container {
    max-width: 100%;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.advantage-item,
.customer-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* Hover Effects */
.customer-card:hover,
.advantage-item:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.certificate-card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}
.counter {
  font-size: 38px;
  text-align: center;
  font-weight: bold;
  color: #2cde66;
  padding: 20px;
  font-family: sans-serif;
}
