* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --primary: #228b22;
  --primary-light: #90ee90;
  --primary-dark: #146414;
  --accent: #32cd32;
  --dark: #0a0e1a;
  --darker: #050810;
  --card-bg: rgba(255, 255, 255, 0.03);
  --header-height: 80px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(144, 238, 144, 0.1);
  transition: all 0.3s;
  height: var(--header-height);
}

.header.scrolled {
  padding: 10px 5%;
  background: rgba(10, 14, 26, 0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 40px;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  font-weight: 500;
  font-size: 15px;
}

.nav a:not(.login-btn):hover {
  color: var(--primary-light);
}

.nav a:not(.login-btn)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav a:not(.login-btn):hover::after {
  width: 100%;
}

.login-btn {
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50px;
  font-weight: 600;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 139, 34, 0.4);
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(144, 238, 144, 0.3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  margin-left: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(34, 139, 34, 0.1);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 150px 5% 100px;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a3a1a 50%, #0a0e1a 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

.hero-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(144, 238, 144, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(144, 238, 144, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 20s infinite;
}

.shape1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(34, 139, 34, 0.3) 0%,
    transparent 70%
  );
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(50, 205, 50, 0.2) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: 10%;
  animation-delay: 5s;
}

.shape3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(144, 238, 144, 0.25) 0%,
    transparent 70%
  );
  top: 50%;
  right: 20%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, -50px) rotate(90deg);
  }
  50% {
    transform: translate(0, -100px) rotate(180deg);
  }
  75% {
    transform: translate(-50px, -50px) rotate(270deg);
  }
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 1;
}

.hero-text h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff, var(--primary-light), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s ease infinite;
  background-size: 200% auto;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-text .highlight {
  color: var(--accent);
  display: block;
  text-shadow: 0 0 60px rgba(50, 205, 50, 0.5);
}

.hero-text p {
  font-size: 22px;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 45px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.4s;
  box-shadow: 0 15px 40px rgba(34, 139, 34, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(34, 139, 34, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 45px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.4s;
  border: 2px solid rgba(144, 238, 144, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-light);
  transform: translateY(-5px);
}

.hero-visual {
  position: relative;
}

.stats-preview {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(144, 238, 144, 0.2);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.mini-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(144, 238, 144, 0.1);
}

.mini-stat:last-child {
  border-bottom: none;
}

.mini-stat-label {
  font-size: 16px;
  color: #888;
}

.mini-stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}

.trust-badges {
  padding: 80px 5%;
  background: var(--darker);
  text-align: center;
}

.trust-title {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.badges-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.badge {
  font-size: 48px;
  opacity: 0.5;
  transition: all 0.3s;
  filter: grayscale(1);
  cursor: default;
}

.badge:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.1);
}

/* Features Section */
.features {
  padding: 150px 5%;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-block;
  padding: 10px 25px;
  background: rgba(34, 139, 34, 0.1);
  border: 1px solid rgba(34, 139, 34, 0.3);
  border-radius: 50px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.section-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
}

.section-description {
  font-size: 20px;
  color: #888;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(
    135deg,
    rgba(34, 139, 34, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  padding: 50px;
  border-radius: 30px;
  border: 1px solid rgba(144, 238, 144, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    rgba(34, 139, 34, 0.15) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent);
  box-shadow: 0 30px 70px rgba(34, 139, 34, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 30px;
  box-shadow: 0 20px 40px rgba(34, 139, 34, 0.3);
}

.feature-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-light);
  font-weight: 700;
}

.feature-card p {
  color: #999;
  line-height: 1.8;
  font-size: 16px;
}

.commission-plans {
  padding: 150px 5%;
  background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 60px auto 0;
}

.plan-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(144, 238, 144, 0.1);
  border-radius: 30px;
  padding: 50px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(
    135deg,
    rgba(34, 139, 34, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 20px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 40px 80px rgba(34, 139, 34, 0.3);
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-light);
}

.plan-price {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.plan-price span {
  font-size: 24px;
  color: #666;
}

.plan-description {
  color: #888;
  margin-bottom: 40px;
  font-size: 16px;
}

.plan-features {
  list-style: none;
  margin-bottom: 40px;
}

.plan-features li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(144, 238, 144, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
}

.plan-features li::before {
  content: "âœ“";
  color: var(--accent);
  font-weight: 900;
  font-size: 20px;
}

.stats-counter {
  padding: 150px 5%;
  background: linear-gradient(135deg, #1a3a1a 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.stats-counter::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(34, 139, 34, 0.2) 0%,
    transparent 70%
  );
  top: -300px;
  right: -300px;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.stat-number {
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 18px;
  color: #888;
  font-weight: 500;
}

.how-it-works {
  padding: 150px 5%;
  background: var(--dark);
}

.steps-container {
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
}

.step-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--primary),
    var(--accent),
    var(--primary)
  );
  transform: translateX(-50%);
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
  position: relative;
}

.step:nth-child(even) .step-content {
  order: 2;
}

.step:nth-child(even) .step-visual {
  order: 1;
}

.step-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(34, 139, 34, 0.5);
  z-index: 2;
}

.step-content {
  padding: 40px;
}

.step-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-light);
  font-weight: 800;
}

.step-content p {
  font-size: 18px;
  color: #999;
  line-height: 1.8;
}

.step-visual {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(144, 238, 144, 0.1);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.testimonials {
  padding: 150px 5%;
  background: var(--darker);
}

.testimonials-grid {
  max-width: 1400px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(144, 238, 144, 0.1);
  border-radius: 30px;
  padding: 50px;
  transition: all 0.5s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px rgba(34, 139, 34, 0.3);
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  color: #666;
  font-size: 14px;
}

.stars {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 20px;
}

.faq {
  padding: 150px 5%;
  background: var(--dark);
}

.faq-container {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(144, 238, 144, 0.1);
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-question {
  padding: 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  padding: 0 30px;
  color: #999;
  line-height: 1.8;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 30px;
}

/* CTA Section */
.cta-section {
  padding: 150px 5%;
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary),
    var(--accent)
  );
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 24px;
  margin-bottom: 50px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  padding: 20px 45px;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.4s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.footer {
  padding: 80px 5% 40px;
  background: var(--darker);
  border-top: 1px solid rgba(144, 238, 144, 0.1);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-about h3 {
  font-size: 32px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-about p {
  color: #888;
  line-height: 1.8;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(144, 238, 144, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--primary-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(144, 238, 144, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-size: 14px;
}

.footer-bottom a {
  color: #666;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 968px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 30px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(144, 238, 144, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  .nav.active {
    right: 0;
  }
  .lang-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    padding: 15px;
    border: 1px solid rgba(144, 238, 144, 0.1);
  }
}

.logo {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  display: flex;  
  align-items: center; 
  gap: 10px; 
  text-decoration: none;
}


.logo-icon {
  display: none; 
}


.logo-image {
  height: 40px; 
  width: auto;
  vertical-align: middle;
  margin-left: 10px; 
}
@media (max-width: 576px) {
  
  .hero {
    padding: 120px 5% 60px; 
    min-height: auto; 
  }

  .features,
  .commission-plans,
  .stats-counter,
  .how-it-works,
  .testimonials,
  .faq,
  .cta-section {
    padding: 60px 5%; 
  }


  .hero-text h1 {
    font-size: 36px; 
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 16px; 
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 32px; 
    line-height: 1.3;
  }

  .plan-price {
    font-size: 42px; 
  }

  .stat-number {
    font-size: 48px;
  }

  .cta-content h2 {
    font-size: 36px;
  }


  .logo {
    font-size: 22px; 
    gap: 8px;
  }

  .logo-image {
    height: 30px; 
    margin-left: 5px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column; 
    width: 100%;
  }

  .btn-primary,
  .btn-secondary,
  .btn-white {
    width: 100%; 
    justify-content: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr; 
    gap: 40px;
  }

  .badges-grid {
    gap: 30px;
  }

  .badge {
    font-size: 36px;
  }

  /*Footer --- */
  .footer {
    padding: 60px 5% 30px;
  }

  .footer-content {
    grid-template-columns: 1fr; 
    gap: 40px;
    text-align: center;
  }

  .footer-about {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom div {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom a {
    margin-left: 0;
  }

  .step {
    gap: 30px;
    margin-bottom: 60px;
  }

  .step-visual {
    font-size: 60px;
    padding: 30px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .testimonial-text {
    font-size: 18px;
  }
}
.about-us-modern {
  padding: 150px 5%;
  background: var(--darker);
  position: relative;
}

.about-modern-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #666;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-modern-title {
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 60px;
  background: linear-gradient(
    135deg,
    #fff 0%,
    var(--primary-light) 50%,
    #fff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 5s ease infinite;
}

.about-modern-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about-brand h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.about-brand p {
  font-size: 18px;
  line-height: 1.9;
  color: #aaa;
}

.about-cta-box {
  background: linear-gradient(
    135deg,
    rgba(34, 139, 34, 0.1) 0%,
    rgba(50, 205, 50, 0.05) 100%
  );
  border: 1px solid rgba(144, 238, 144, 0.2);
  border-radius: 25px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.about-cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(34, 139, 34, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-cta-box h4 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-cta-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #bbb;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.btn-modern {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.4s;
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
  position: relative;
  z-index: 1;
}

.btn-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
}

@media (max-width: 968px) {
  .about-modern-title {
    font-size: 48px;
  }

  .about-cta-box {
    padding: 35px;
  }

  .about-cta-box h4 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .about-modern-title {
    font-size: 36px;
  }

  .about-brand h3 {
    font-size: 24px;
  }

  .about-cta-box h4 {
    font-size: 24px;
  }
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--c-gold); 

  
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(255, 255, 255, 0.05); 
  transition: transform 0.3s ease; 
  text-decoration: none; 
}


.social-link img {
  width: 28px; 
  height: 28px;
  object-fit: contain; 
  pointer-events: none; 
  display: block;
}


.social-link:hover {
  transform: translateY(-5px); 

}

@media (max-width: 968px) {

  .step {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .step:nth-child(even) .step-content {
    order: 0;
  }
  .step:nth-child(even) .step-visual {
    order: 1;
  }

  .step-line {
    left: 40px; /* Â³äñòóï ë³í³¿ â³ä ë³âîãî êðàþ åêðàíó */
    transform: none; /* Ïðèáèðàºìî öåíòðóâàííÿ */
  }

  .step-number {
    left: 40px; /* Ìàº ñï³âïàäàòè ç left ó .step-line */
    transform: translate(-50%, -50%); /* Öåíòðóºìî êðóæîê â³äíîñíî ë³í³¿ */
    width: 60px; /* Òðîõè çìåíøóºìî ðîçì³ð íà ìîá³ëüíîìó */
    height: 60px;
    font-size: 24px;
  }

  .step-content {
    padding: 0 0 0 90px; /* Â³äñòóï çë³âà (ï³ä ðîçì³ð êðóæêà + â³äñòóï) */
    text-align: left; /* Âèð³âíþºìî òåêñò ïî ë³âîìó êðàþ */
  }
  .step-content h3 {
    font-size: 28px;
  }

  .step-visual {
    margin-left: 90px; 
    padding: 30px;
    font-size: 60px;
    justify-content: flex-start; 
  }
}

@media (max-width: 480px) {
  .step-line {
    left: 30px;
  }
  .step-number {
    left: 30px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .step-content {
    padding-left: 70px; /* Ìåíøèé â³äñòóï */
    padding-right: 0;
  }
  .step-visual {
    margin-left: 70px;
  }
}
