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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

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

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-brand a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #7c3aed;
  text-decoration: none;
}

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

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a.active {
  color: #7c3aed;
  font-weight: 600;
}

.nav-menu a:hover {
  color: #7c3aed;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #7c3aed;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

.cta-button {
  background: #7c3aed;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1.5rem;
}

.cta-button:hover {
  background: #6d28d9;
  transform: translateY(-2px);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: white;
}

.features h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #7c3aed;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: #f8f9fa;
  transition: transform 0.3s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Approach Section */
.approach {
  padding: 80px 0;
  background: #f8f9fa;
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.approach-text h2 {
  font-size: 2.2rem;
  color: #7c3aed;
  margin-bottom: 2rem;
}

.approach-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.approach-icon {
  width: 50px;
  height: 50px;
  background: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.approach-icon i {
  color: white;
  font-size: 1.2rem;
}

.approach-item h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

.approach-item p {
  color: #666;
  line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
  padding: 80px 0;
  background: white;
}

.use-cases h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #7c3aed;
  margin-bottom: 3rem;
}

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

.use-case-card {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.use-case-card:hover {
  transform: translateY(-5px);
}

.use-case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.use-case-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: #333;
  font-size: 1.3rem;
}

.use-case-card p {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.6;
}

/* Quality Section */
.quality {
  padding: 80px 0;
  background: #f8f9fa;
}

.quality-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quality-text h2 {
  font-size: 2.2rem;
  color: #7c3aed;
  margin-bottom: 1.5rem;
}

.quality-text p {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.quality-list {
  list-style: none;
  margin-bottom: 2rem;
}

.quality-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #666;
}

.quality-list i {
  color: #7c3aed;
  margin-top: 0.2rem;
}

.quality-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Contact Form */
.contact-form {
  padding: 80px 0;
  background: white;
}

.contact-form h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #7c3aed;
  margin-bottom: 3rem;
}

.form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7c3aed;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.checkbox-group a {
  color: #7c3aed;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  background: #7c3aed;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-button:hover {
  background: #6d28d9;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #7c3aed;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #7c3aed;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

.footer-disclaimer {
  background: #111827;
  padding: 2rem;
  margin: 2rem -2rem -20px -2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.footer-disclaimer h4 {
  color: #7c3aed;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-disclaimer p {
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-disclaimer a {
  color: #7c3aed;
  text-decoration: none;
}

.footer-disclaimer a:hover {
  text-decoration: underline;
}

.footer-address {
  margin-top: 1rem;
}

.footer-address p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
}

.footer-section p i {
  margin-right: 0.5rem;
  color: #7c3aed;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: white;
  padding: 1rem;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-accept,
.cookie-decline {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.cookie-accept {
  background: #7c3aed;
  color: white;
}

.cookie-decline {
  background: #6b7280;
  color: white;
}

.cookie-accept:hover {
  background: #6d28d9;
}

.cookie-decline:hover {
  background: #4b5563;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Стили для страницы Posibilidades */
.possibilities {
  padding: 80px 0;
  background: white;
}

.possibilities h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #7c3aed;
  margin-bottom: 3rem;
}

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

.possibility-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.possibility-card:hover {
  transform: translateY(-5px);
}

.possibility-icon {
  width: 80px;
  height: 80px;
  background: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.possibility-icon i {
  font-size: 2rem;
  color: white;
}

.possibility-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.possibility-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.possibility-card ul {
  list-style: none;
  text-align: left;
}

.possibility-card ul li {
  color: #666;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.possibility-card ul li:before {
  content: "•";
  color: #7c3aed;
  position: absolute;
  left: 0;
}

/* Стили для сравнения до/после */
.before-after {
  padding: 80px 0;
  background: #f8f9fa;
}

.before-after h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #7c3aed;
  margin-bottom: 3rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.comparison-item h3 {
  text-align: center;
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.comparison-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.before,
.after {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.before img,
.after img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Стили для технических спецификаций */
.tech-specs {
  padding: 80px 0;
  background: white;
}

.tech-specs h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #7c3aed;
  margin-bottom: 3rem;
}

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

.spec-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.spec-card h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.spec-card ul {
  list-style: none;
}

.spec-card ul li {
  color: #666;
  margin-bottom: 0.8rem;
  padding-left: 1rem;
  position: relative;
}

.spec-card ul li:before {
  content: "✓";
  color: #7c3aed;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Стили для страницы Servicios */
.services {
  padding: 80px 0;
  background: white;
}

.services h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #7c3aed;
  margin-bottom: 3rem;
}

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

.service-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card.featured {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: white;
  transform: scale(1.05);
}

.service-card.featured .service-icon {
  background: white;
}

.service-card.featured .service-icon i {
  color: #7c3aed;
}

.service-card.featured h3,
.service-card.featured p {
  color: white;
}

.service-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #f59e0b;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #666;
}

.service-card.featured .service-features li {
  color: white;
}

.service-features i {
  color: #7c3aed;
  font-size: 0.9rem;
}

.service-card.featured .service-features i {
  color: white;
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #7c3aed;
  margin-top: 1rem;
}

.service-card.featured .service-price {
  color: white;
}

/* Стили для процесса работы */
.process {
  padding: 80px 0;
  background: #f8f9fa;
}

.process h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #7c3aed;
  margin-bottom: 3rem;
}

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

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #7c3aed;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

/* Стили для FAQ */
.faq {
  padding: 80px 0;
  background: white;
}

.faq h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #7c3aed;
  margin-bottom: 3rem;
}

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

.faq-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.faq-item h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Стили для блога */
.blog-posts {
  padding: 80px 0;
  background: white;
}

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

.blog-post {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.post-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.post-content {
  padding: 2rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.post-date {
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.post-category {
  background: #7c3aed;
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

.post-content h2 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.4;
}

.post-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* Стили для пагинации */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.page-link {
  padding: 0.8rem 1.2rem;
  background: #f8f9fa;
  color: #666;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
  background: #7c3aed;
  color: white;
}

/* Стили для newsletter */
.newsletter {
  padding: 80px 0;
  background: #7c3aed;
  color: white;
  text-align: center;
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

.newsletter-form button {
  background: white;
  color: #7c3aed;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  background: #f3f4f6;
}

/* Стили для страницы контактов */
.contact {
  padding: 80px 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  color: #7c3aed;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-details h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
}

.contact-form-section h2 {
  color: #7c3aed;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s;
}

.contact-form select:focus {
  outline: none;
  border-color: #7c3aed;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content,
  .approach-content,
  .quality-content,
  .possibilities-grid,
  .specs-grid,
  .services-grid,
  .process-steps,
  .faq-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .nav-menu {
    display: none;
  }

  .features-grid,
  .use-cases-grid,
  .possibilities-grid,
  .specs-grid,
  .services-grid,
  .process-steps,
  .faq-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-images {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .service-card.featured {
    transform: none;
  }
}
