/* ==========================================================================
   БАЗОВЫЕ СТИЛИ И СТИЛИ ДЛЯ ДЕСКТОПА
   ========================================================================== */

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

body {
  font-family: "Ubuntu", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

:root {
  --primary-color: #33cc33;
  --primary-darker-color: #2eb82e;
  --primary-color-rgb: 51, 204, 51;
}

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

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: slideInRight 0.5s ease;
}

.notification.success {
  background: linear-gradient(135deg, #33cc33 0%, #2eb82e 100%);
  color: white;
}

.notification.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.svg-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  position: relative;
  top: 0;
}

.svg-container svg {
  width: 100%;
  height: 100%;
}
.my-svg-path {
    fill: #33CC33;
}
.footer-svg-path {
    fill: #33CC33;
}

.brand-free {
  color: #1a1a1a;
  font-weight: 900;
}

.brand-ai {
  color: #1a1a1a;
  font-weight: 900;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

.brand-manager {
  color: #1a1a1a;
  font-weight: 900;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker-color) 100%);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
    color: var(--primary-color);
}


.nav-actions {
  display: flex;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  width: 25px;
  height: 25px;
  justify-content: center;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background: #1a1a1a;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.btn-outline {
  background: transparent;
  border: 2px solid #e2e8f0;
  color: #4a5568;
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(51, 204, 51, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker-color) 100%);
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(51, 204, 51, 0.4);
}

.btn-hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 16px;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(240, 147, 251, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #4a5568;
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 16px;
}

.btn-secondary:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(239, 68, 68, 0.15) 100%);
  top: 30%;
  right: 30%;
  animation-delay: 4s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  bottom: 20%;
  left: 20%;
  animation-delay: 1s;
}

.shape-5 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
  top: 50%;
  left: 50%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(51, 204, 51, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(51, 204, 51, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.hero-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-feature i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.hero-feature span {
  font-weight: 600;
  color: #1a1a1a;
}

.hero-offer {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 90%;
  transform: translateX(5%);
}

.offer-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.offer-icon {
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.offer-text strong {
  color: var(--primary-color);
}

.offer-text span {
  color: #64748b;
  font-size: 0.9rem;
}

.offer-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.offer-link:hover {
  color: var(--primary-darker-color);
  text-decoration: underline;
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideInRightMockup 1s ease-out; /* Renamed animation */
}

@keyframes slideInRightMockup {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mockup-dots {
  display: flex;
  gap: 0.5rem;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e8f0;
}
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-title {
  font-weight: 600;
  color: #4a5568;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-value {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #64748b;
}

.chart-area {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 60px;
  padding: 0 1rem;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 4px 4px 0 0;
  animation: growUp 1.5s ease-out;
  animation-fill-mode: both;
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes growUp {
  from { height: 0; }
  to { height: var(--height, 50%); }
}

/* Sections General */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 2;
}

.feature-card.purple .feature-icon { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.feature-card.green .feature-icon { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.feature-card.blue .feature-icon { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.feature-card.orange .feature-icon { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.feature-btn {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
  color: white !important;
  border: none !important;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer !important;
  margin: 1rem auto 0;
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-family: inherit;
  text-decoration: none !important;
  position: relative;
  z-index: 10 !important;
  pointer-events: auto !important;
  transition: all 0.3s ease;
}

.feature-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(240, 147, 251, 0.4) !important;
}

.feature-btn i {
  transition: transform 0.3s ease;
}

.feature-btn.active i {
  transform: rotate(180deg);
}

.feature-list {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 5;
  animation: slideDown 0.3s ease;
}

.feature-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  color: #4a5568;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 1.5rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.analytics-visual {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 100px;
  width: 80%;
  margin: 25px auto;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.analytics-bar-wrapper {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.analytics-bar-wrapper span {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 8px;
}

.analytics-bar {
  width: 90%;
  background: linear-gradient(to top, #3498db, #5dade2); 
  border-radius: 5px 5px 0 0;
  animation: grow-bar 1.2s ease-out forwards;
  transform-origin: bottom;
  box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.analytics-bar-wrapper.bot-bar .analytics-bar {
  background: linear-gradient(to top, #e67e22, #f39c12);
  box-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}

@keyframes grow-bar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Industries Section */
.industries {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.industries-carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.industries-carousel {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 2rem;
  padding: 2rem 0;
}

.industry-card {
  min-width: 350px;
  background: white;
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.7;
  transform: scale(0.95);
}

.industry-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.industry-card.special {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
  border: 2px solid rgba(240, 147, 251, 0.2);
}

.industry-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.industry-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker-color) 100%);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.industry-card.special .industry-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  animation: pulse-special 2s infinite;
}

@keyframes pulse-special {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(240, 147, 251, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(240, 147, 251, 0);
  }
}

.industry-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}
.industry-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.industry-btn {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  margin-top: 1rem;
}
.industry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(240, 147, 251, 0.4);
}
.carousel-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker-color) 100%);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(51, 204, 51, 0.4);
}
.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.carousel-dots {
  display: flex;
  gap: 0.5rem;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(51, 204, 51, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot.active, .carousel-dot:hover {
  background: var(--primary-color);
  transform: scale(1.2);
}
.autoplay-indicator {
  width: 100%;
  height: 4px;
  background: rgba(51, 204, 51, 0.2);
  border-radius: 2px;
  margin-top: 2rem;
  overflow: hidden;
}
.autoplay-progress {
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker-color) 100%);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

/* AI Providers Section */
.ai-providers {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.ai-providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.ai-provider-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.ai-provider-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.ai-provider-card.special {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
  border: 2px solid rgba(240, 147, 251, 0.2);
}
.provider-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker-color) 100%);
}
.ai-provider-card.special .provider-logo {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.ai-provider-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}
.ai-provider-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.provider-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.provider-link:hover {
  color: var(--primary-darker-color);
  transform: translateY(-2px);
}
.provider-btn {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.provider-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(240, 147, 251, 0.4);
}
.ai-providers-note {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(51, 204, 51, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}
.note-icon {
  font-size: 2.5rem;
}
.note-content strong {
  color: var(--primary-color);
  font-size: 1.1rem;
}
.note-content br + span {
  color: #64748b;
  font-size: 0.95rem;
}

/* Integrations Section */
.integrations {
  padding: 6rem 0;
  background: white;
}
.integration-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.integration-card-main {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.integration-card-main:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.integration-logo-main {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker-color) 100%);
}
.integration-name-main {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.75rem;
}
.integration-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.highlight-text {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.section-toggle {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: none;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 3rem auto 0;
  box-shadow: 0 15px 35px rgba(240, 147, 251, 0.3);
  font-size: 1.1rem;
}
.section-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(240, 147, 251, 0.4);
}
.section-toggle i {
  transition: transform 0.3s ease;
}
.section-toggle.expanded i {
  transform: rotate(180deg);
}
.expandable-content {
  max-height: 350px; /* Adjust to fit the main cards */
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
}
.expandable-content.expanded {
  max-height: 2000px;
}
.integration-grid-expanded {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}
.integration-card-small {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.5s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.integration-card-small:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.integration-logo-small {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: white;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker-color) 100%);
}
.integration-name-small {
  font-weight: 600;
  color: #4a5568;
  font-size: 0.8rem;
}
.additional-integrations {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  margin-top: 3rem;
}
.additional-integrations.show {
  opacity: 1;
  transform: translateY(0);
}
.integration-note-expanded {
  background: linear-gradient(135deg, rgba(51, 204, 51, 0.1) 0%, rgba(46, 184, 46, 0.1) 100%);
  border: 1px solid rgba(51, 204, 51, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 2rem;
  font-weight: 500;
}
.pulse-animation {
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(51, 204, 51, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(51, 204, 51, 0);
  }
}

/* Demo-chats Section */
.demo-chats {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}
.demo-chats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.chat-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 500px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.chat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.chat-embed-wrapper {
    flex-grow: 1;
    height: 100%;
    width: 100%;
    position: relative;
}
.chat-embed-wrapper #freeaimanager-chat-window[id*="-embedded-"] {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    box-shadow: none !important;
}
.demo-cta {
  margin-top: 3rem;
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.demo-cta p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.gradient-text-chats{
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Section */
.pricing-plans {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 30px;
    padding: 5px;
    margin-bottom: 40px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-toggle .toggle-btn {
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    color: #666;
    font-weight: 600;
    font-size: 0.95em;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    flex-grow: 1;
    text-align: center;
}
.pricing-toggle .toggle-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  justify-content: center;
}
.pricing-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem 2rem;
  text-align: center;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  flex: 1;
  max-width: 380px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.pricing-card.featured {
  border-color: #f093fb;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(240, 147, 251, 0.2);
  position: relative;
  z-index: 2;
}
.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}
.pricing-header {
  margin-bottom: 2rem;
}
.pricing-badge {
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  display: inline-block;
}
.free-badge {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
}
.premium-badge {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  animation: pulse-premium 2s infinite;
}
.individual-badge {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}
@keyframes pulse-premium {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(240, 147, 251, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(240, 147, 251, 0);
  }
}
.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}
.pricing-price {
  margin-bottom: 2rem;
}
.price-value {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
}
.pricing-card.free .price-value { color: var(--primary-color); }
.pricing-card.premium .price-value {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-period {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}
.pricing-features {
  margin-bottom: 2rem;
  flex-grow: 1;
}
.pricing-features .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.pricing-features .features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.pricing-features .features-list li i {
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.pricing-features .fa-check { color: #10b981; }
.pricing-features .fa-info-circle { color: #f093fb; }
.pricing-btn {
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.free-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker-color) 100%);
  color: white;
}
.free-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(51, 204, 51, 0.4);
}
.premium-btn {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}
.premium-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(240, 147, 251, 0.4);
}
.individual-btn {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}
.individual-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(67, 233, 123, 0.4);
}
.pricing-note {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(51, 204, 51, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 3rem auto 0;
}
.pricing-note .note-icon {
  font-size: 2.5rem;
}
.pricing-note .note-content strong {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Partner Program */
.partner-program {
  padding: 4rem 0;
  background: white;
}
.partner-card {
  background: linear-gradient(135deg, rgba(51, 204, 51, 0.05) 0%, rgba(46, 184, 46, 0.05) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(51, 204, 51, 0.2);
}
.partner-content {
  display: flex;
  align-items: center;
  padding: 3rem;
  gap: 2rem;
}
.partner-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-darker-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 20px rgba(51, 204, 51, 0.3);
}
.partner-info {
  flex: 1;
}
.partner-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}
.partner-info > p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
}
.partner-benefits {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.benefit-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex: 1;
}
.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}
.benefit-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #1a1a1a;
}
.benefit-text p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}
.benefit-divider {
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  position: relative;
  padding: 0 1rem;
}
.partner-action {
  min-width: 200px;
  display: flex;
  justify-content: center;
}
.btn-partner {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.btn-partner:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(240, 147, 251, 0.4);
}

/* Privacy Notice */
.privacy-notice {
  background: #f1f5f9;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.privacy-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.privacy-icon {
  color: #64748b;
  font-size: 1.5rem;
}
.privacy-text {
  flex: 1;
}
.privacy-text p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}
.privacy-links {
  display: flex;
  gap: 1.5rem;
}
.privacy-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.privacy-link:hover {
  color: var(--primary-darker-color);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.footer-brand .brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.footer-brand .brand-text {
  display: flex;
  align-items: center;
}
.footer-brand .brand-free,
.footer-brand .brand-ai,
.footer-brand .brand-manager {
    color: white;
    font-weight: 900;
}
.footer-brand p {
  color: #9ca3af;
  margin-top: 0.5rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: white;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

/* Modals & Forms */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  backdrop-filter: blur(5px);
}
.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.modal-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideInUp 0.3s ease;
}
@keyframes slideInUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}
.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.3s ease;
}
.modal-close:hover {
  color: #1a1a1a;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-weight: 600;
  color: #374151;
}
.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.auth-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 0.95rem;
}
.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.auth-vk { background: #4c75a3; color: white; }
.auth-sber { background: #21a038; color: white; }
.auth-yandex { background: #fc3f1d; color: white; }
.auth-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: #64748b;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.auth-divider span {
  padding: 0 1rem;
  font-size: 0.9rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.form-check input[type="checkbox"] {
  margin-top: 0.25rem;
}
.form-check label {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.4;
}
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.link:hover {
  color: var(--primary-darker-color);
  text-decoration: underline;
}
.auth-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.cookie-consent-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.cookie-consent-banner p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.4;
}
.cookie-consent-banner .cookie-policy-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}
.cookie-consent-banner .btn-cookie-accept {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}
.cookie-consent-banner .btn-cookie-accept:hover {
    background-color: var(--primary-darker-color);
}

/* ==========================================================================
   МОБИЛЬНАЯ АДАПТАЦИЯ
   ========================================================================== */

/* --- Планшеты и маленькие десктопы (<= 992px) --- */
@media (max-width: 992px) {
    .partner-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .partner-benefits {
        flex-direction: column;
    }
    .benefit-option {
        width: 100%;
    }
    .benefit-divider {
        padding: 0.5rem 0;
    }
    .privacy-content {
        flex-direction: column;
        text-align: center;
    }
    .privacy-links {
        margin-top: 1rem;
        justify-content: center;
    }
    .pricing-card.featured {
        transform: none; /* Убираем увеличение на планшетах */
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}


/* --- Планшеты и телефоны (<= 768px) --- */
@media (max-width: 768px) {
    /* --- Общие изменения --- */
    body {
        font-size: 14px;
    }
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    .section-subtitle {
        font-size: 16px;
        max-width: 100%;
    }
    .btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    /* --- Хедер и Навигация (Гамбургер-меню) --- */
    .header .nav {
        flex-wrap: wrap;
        padding: 15px 0;
    }
    .nav-brand { order: 1; }
    .nav-toggle { display: flex; order: 3; }
    .nav-actions { order: 2; margin-left: auto; margin-right: 15px; }
    .nav-actions .btn-outline { display: none; }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 75px;
        left: 0;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-top: 1px solid #e2e8f0;
    }
    .nav-menu.active { display: flex; }
    .nav-link {
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid #e2e8f0;
    }
    .nav-link:last-child { border-bottom: none; }

    /* --- Hero Section --- */
    .hero .container {
        grid-template-columns: 1fr;
        padding-top: 80px;
        text-align: center;
    }
    .hero-content { order: 2; margin-top: 30px; }
    .hero-visual { order: 1; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-features { flex-direction: column; align-items: center; gap: 10px; }
    .hero-actions { flex-direction: column; gap: 15px; align-items: center; }
    .dashboard-mockup { margin: 0 auto; }
    .hero-offer { position: static; transform: none; margin-top: 30px; width: 100%; }

    /* --- Features & AI Providers Section --- */
    .features-grid, .ai-providers-grid {
        grid-template-columns: 1fr;
    }
    
    /* --- Industries Section (Карусель) --- */
    .industries-carousel-container {
        padding: 0;
    }
    .industries-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 20px 15px;
        margin: 0 -15px;
        scrollbar-width: none;
    }
    .industries-carousel::-webkit-scrollbar { display: none; }
    .industry-card { flex: 0 0 85%; scroll-snap-align: center; margin-right: 15px; min-width: 280px; }
    .industry-card.special { flex: 0 0 90%; }
    .carousel-navigation .carousel-btn { display: none; }
    .carousel-dots { margin-top: 15px; }
    .carousel-navigation { gap: 1rem; }

    /* --- Integrations Section --- */
    .integration-grid-main, .integration-grid-expanded {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }

    /* --- Demo Chats Section --- */
    .demo-chats-grid { grid-template-columns: 1fr; }
    .chat-card { height: 450px; }
    .gradient-text-chats {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
    }

    /* --- Pricing Section --- */
    .pricing-toggle { flex-direction: column; gap: 10px; border-radius: 15px; padding: 10px; max-width: 90%; }
    .pricing-toggle .toggle-btn { width: 100%; margin: 5px 0; }
    .pricing-cards { flex-direction: column; gap: 20px; }
    .pricing-card { padding: 25px; max-width: 400px; }
    
    /* --- Partner & Privacy Sections --- */
    .partner-content { padding: 1.5rem; }
    .partner-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .partner-info h2 { font-size: 1.5rem; }
    .partner-info > p { font-size: 1rem; }
    .benefit-option { flex-direction: column; text-align: center; }
    .benefit-icon { margin-bottom: 0.5rem; }
    .privacy-links { flex-direction: column; gap: 0.5rem; }
    
    /* --- Footer --- */
    .footer-content { flex-direction: column; gap: 2rem; text-align: center; }
    .footer-brand { align-items: center; }
    .footer-links { flex-direction: column; gap: 1rem; }
    
    /* --- Modals --- */
    .modal-content { width: 95%; padding: 20px; }
    .auth-options { flex-direction: column; }

    /* --- Cookie Banner --- */
    .cookie-consent-banner { flex-direction: column; text-align: center; padding: 10px 15px; }
    .cookie-consent-content { flex-direction: column; gap: 10px; }
    .cookie-consent-banner p { font-size: 0.85em; }
    .cookie-consent-banner .btn-cookie-accept { width: 100%; max-width: 200px; }
}

/* --- Телефоны (<= 480px) --- */
@media (max-width: 480px) {
    .hero-title { font-size: 30px; }
    .section-title { font-size: 24px; }
    .ai-providers-grid { grid-template-columns: 1fr; }
    .nav-actions .btn { padding: 8px 14px; font-size: 14px; }
    .nav-brand .svg-container { width: 30px; height: 30px; }
    .nav-brand .brand-free, .nav-brand .brand-ai, .nav-brand .brand-manager { font-size: 18px; }
    .stats-grid { grid-template-columns: 1fr; }
    .industry-card { min-width: 250px; padding: 2rem 1.5rem; }
    .industry-icon { width: 80px; height: 80px; font-size: 2rem; }
    .chat-card { height: 400px; }
    .price-value { font-size: 2rem; }
}