/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #F59E0B;
  --primary-dark: #D97706;
  --primary-light: #FBBF24;
  --secondary-color: #FCD34D;
  --accent-color: #FEF3C7;
  --dark-color: #1F2937;
  --darker-color: #111827;
  --light-color: #F9FAFB;
  --gray-color: #6B7280;
  --success-color: #10B981;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
  --box-shadow-strong: 0 10px 30px rgba(245, 158, 11, 0.2);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #FEFCE8;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--darker-color);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--dark-color);
}

.highlight {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header & Navigation */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--secondary-color);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--darker-color);
  font-weight: 500;
  transition: var(--transition);
  padding: 8px 0;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
  color: white;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.2rem;
}

/* Hero Section */
.hero {
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #FEFCE8 0%, #FEF3C7 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--darker-color);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mixer-animation {
  position: relative;
  width: 400px;
  height: 400px;
}

.blender-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.blender {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  box-shadow: var(--box-shadow-strong);
  position: relative;
  z-index: 3;
}

.whir-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px dashed rgba(245, 158, 11, 0.3);
  animation: spin 20s linear infinite;
  z-index: 1;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.coin {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.coin-1 { top: 10%; left: 20%; animation-delay: 0s; }
.coin-2 { top: 15%; right: 25%; animation-delay: 0.5s; }
.coin-3 { top: 50%; left: 10%; animation-delay: 1s; }
.coin-4 { bottom: 20%; left: 25%; animation-delay: 1.5s; }
.coin-5 { bottom: 15%; right: 20%; animation-delay: 2s; }
.coin-6 { top: 20%; right: 10%; animation-delay: 2.5s; }

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

/* Section Styles */
.section-title {
  position: relative;
  margin-bottom: 3rem;
  color: var(--darker-color);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
  border-radius: 2px;
}

.accent-section {
  background-color: #FEF3C7;
  position: relative;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-text p {
  margin-bottom: 1.8rem;
  line-height: 1.7;
  color: var(--dark-color);
}

.feature-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--secondary-color);
}

/* Technology Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tech-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
  border: 1px solid var(--secondary-color);
  box-shadow: var(--box-shadow);
}

.tech-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-light);
  box-shadow: var(--box-shadow-strong);
}

.tech-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FEF3C7;
}

/* Features List */
.features-list {
  max-width: 800px;
  margin: 0 auto;
}

.feature {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  padding: 25px;
  background: white;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid var(--secondary-color);
  box-shadow: var(--box-shadow);
}

.feature:hover {
  transform: translateX(10px);
  box-shadow: var(--box-shadow-strong);
}

.feature-number {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 10px;
  color: var(--darker-color);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--box-shadow);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.step-number {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 25px;
  background: #FEF3C7;
  border-radius: var(--border-radius);
  padding: 30px;
  margin-top: 50px;
  border: 1px solid var(--primary-light);
}

.security-icon {
  font-size: 2.5rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

/* Comparison Table */
.comparison-table {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 50px;
  border: 1px solid var(--secondary-color);
  box-shadow: var(--box-shadow);
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: linear-gradient(90deg, #FDE68A, #FCD34D);
  padding: 20px;
  font-weight: 700;
  color: var(--darker-color);
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 20px;
  border-bottom: 1px solid var(--secondary-color);
}

.table-cell {
  padding: 10px;
  display: flex;
  align-items: center;
}

.feature-col {
  font-weight: 600;
  color: var(--darker-color);
}

.fa-check-circle {
  color: var(--success-color);
  margin-right: 10px;
}

/* Conclusion & CTA */
.conclusion {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  margin-top: 50px;
  border: 1px solid var(--secondary-color);
  box-shadow: var(--box-shadow);
}

.conclusion h3 {
  margin-bottom: 20px;
  color: var(--darker-color);
}

.cta-section {
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, #FDE68A, #FCD34D);
  border-radius: var(--border-radius);
  margin-top: 50px;
  border: 1px solid var(--primary-light);
}

.cta-section h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--darker-color);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--dark-color);
}

/* Footer */
.footer {
  background-color: var(--darker-color);
  padding: 60px 0 30px;
  border-top: 1px solid var(--primary-dark);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 50px;
}

.footer-logo .logo {
  margin-bottom: 15px;
  color: var(--primary-light);
}

.footer-tagline {
  color: var(--gray-color);
  font-size: 1rem;
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-disclaimer h4 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--primary-light);
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--gray-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
      font-size: 2.8rem;
  }
  
  h2 {
      font-size: 2.2rem;
  }
  
  .hero .container {
      flex-direction: column;
      text-align: center;
  }
  
  .hero-content {
      max-width: 100%;
      margin-bottom: 60px;
  }
  
  .hero-stats {
      justify-content: center;
  }
  
  .content-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      gap: 20px;
  }
  
  .nav-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
  }
  
  .hero-title {
      font-size: 2.3rem;
  }
  
  .hero-subtitle {
      font-size: 1.1rem;
  }
  
  .hero-stats {
      flex-direction: column;
      gap: 30px;
  }
  
  .mixer-animation {
      width: 300px;
      height: 300px;
  }
  
  .blender {
      width: 120px;
      height: 120px;
      font-size: 3rem;
  }
  
  .coin {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
  }
  
  .table-header, .table-row {
      grid-template-columns: 1fr;
  }
  
  .feature {
      flex-direction: column;
      gap: 15px;
  }
  
  .security-note {
      flex-direction: column;
      text-align: center;
  }
}
/* CTA Section with Image */
.cta-section {
  background: linear-gradient(135deg, #FDE68A, #FCD34D);
  border-radius: var(--border-radius);
  margin-top: 50px;
  border: 1px solid var(--primary-light);
  overflow: hidden;
  position: relative;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 50px;
}

.cta-text {
  padding-right: 20px;
}

.cta-text h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--darker-color);
  line-height: 1.3;
}

.cta-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--dark-color);
  line-height: 1.6;
}

.cta-text .btn-large {
  padding: 18px 36px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.cta-text .btn-large i {
  font-size: 1.3rem;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--dark-color);
}

.cta-feature i {
  color: var(--success-color);
  font-size: 1.2rem;
}

.cta-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-strong);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
  height: 350px;
}

.cta-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.cta-image:hover .cta-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.9), transparent);
  padding: 25px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.overlay-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.overlay-text i {
  color: var(--primary-light);
  font-size: 1.4rem;
}

/* Анимация для CTA кнопки */
@keyframes cta-pulse {
  0% {
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  }
  50% {
      box-shadow: 0 4px 20px rgba(245, 158, 11, 0.6);
  }
  100% {
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  }
}

.cta-text .btn-primary {
  animation: cta-pulse 2s infinite;
}

/* Адаптивность для CTA блока */
@media (max-width: 992px) {
  .cta-content {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 40px;
  }
  
  .cta-text {
      padding-right: 0;
      text-align: center;
  }
  
  .cta-image {
      height: 300px;
      transform: perspective(1000px) rotateY(0deg);
      max-width: 500px;
      margin: 0 auto;
  }
  
  .cta-features {
      align-items: center;
  }
}

@media (max-width: 768px) {
  .cta-content {
      padding: 30px;
  }
  
  .cta-text h3 {
      font-size: 1.8rem;
  }
  
  .cta-text p {
      font-size: 1.1rem;
  }
  
  .cta-image {
      height: 250px;
  }
  
  .cta-features {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .cta-feature {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-content {
      padding: 25px;
  }
  
  .cta-text h3 {
      font-size: 1.6rem;
  }
  
  .cta-image {
      height: 200px;
  }
  
  .overlay-text {
      font-size: 1rem;
      padding: 15px;
  }
}