@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-primary: #EA5A5A;
  --color-secondary: #2d2d2d;
  --color-accent: #FF6B6B;
  --color-success: #51CF66;
  --color-bg: #FFFFFF;
  --color-bg-light: #F8F9FA;
  --color-text: #2d2d2d;
  --color-text-light: #6C757D;
  --color-border: #E9ECEF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Top Info Bar */
.top-info-bar {
  background: var(--color-secondary);
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.top-info-bar i {
  color: var(--color-primary);
}

/* Modern Header */
.modern-header {
  background: white;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.logo-img {
  height: 50px;
  width: auto;
}

.header-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.phone-number:hover {
  color: var(--color-primary);
}

.phone-number i {
  color: var(--color-primary);
  margin-right: 8px;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background: #1ebe57;
  transform: scale(1.1);
}

.phone-btn {
  background: var(--color-primary);
  color: white;
}

.phone-btn:hover {
  background: var(--color-accent);
  transform: scale(1.1);
}

.btn-cta {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-modern {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: var(--color-success);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--color-secondary);
}

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

.hero-features {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.hero-features li {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.hero-features i {
  color: var(--color-primary);
  font-size: 24px;
  margin-right: 12px;
}

.hero-cta {
  margin-top: 40px;
}

.btn-primary-lg {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.btn-primary-lg:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-lg {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  padding: 16px 38px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-outline-lg:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-3px);
}

.hero-image-wrapper {
  position: relative;
  text-align: center;
}

.hero-machine-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  animation: float 3s ease-in-out infinite;
}

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

.warranty-badge-modern {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-primary);
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: pulse 2s ease-in-out infinite;
}

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

.warranty-text {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.warranty-subtext {
  font-size: 14px;
  font-weight: 600;
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: white;
}

.stat-card {
  padding: 30px;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--color-text-light);
  font-weight: 500;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-light);
}

/* Product Cards */
.catalog-section {
  background: var(--color-bg-light);
}

.product-card-modern {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  z-index: 10;
}

.product-image-placeholder {
  background: white;
  padding: 30px;
  text-align: center;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.product-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 8px;
  min-height: 44px;
}

.product-article {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 15px;
}

.product-specs {
  margin-bottom: 20px;
  flex: 1;
}

.spec-item {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.spec-item i {
  color: var(--color-success);
  margin-right: 8px;
  margin-top: 3px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.product-price-block {
  flex: 1;
}

.price-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-secondary);
}

.btn-order {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-order:hover {
  background: var(--color-accent);
  transform: scale(1.05);
}

/* Advantages Section */
.advantages-section {
  background: white;
}

.advantage-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-light);
  transition: all 0.3s;
  height: 100%;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 25px;
}

.advantage-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.advantage-card p {
  font-size: 16px;
  color: var(--color-text-light);
}

/* Components Section */
.components-section {
  background: var(--color-bg-light);
}

.component-card {
  padding: 30px;
  background: white;
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.component-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.component-img {
  max-height: 80px;
  margin-bottom: 20px;
}

.component-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-secondary);
}

.component-card p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 0;
}

/* Video Section */
.video-section {
  background: white;
}

.video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 40px;
  text-align: center;
}

.video-placeholder i {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.video-placeholder p {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  background: var(--color-bg-light);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 30px 20px 20px;
}

.gallery-overlay h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* Clients Section */
.clients-section {
  background: white;
}

.client-logo {
  max-width: 120px;
  height: auto;
  opacity: 0.7;
  transition: all 0.3s;
  filter: grayscale(100%);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Contact Section */
.contact-section {
  background: var(--color-bg-light);
}

.contact-info {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 24px;
  color: var(--color-primary);
  margin-right: 15px;
  margin-top: 3px;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.6em;
    color: red;
}

.contact-item a:hover {
  color: var(--color-primary);
}

.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-secondary);
}

.contact-form-box p {
  color: var(--color-text-light);
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  transition: all 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(234, 90, 90, 0.1);
}

.btn-submit-form {
  width: 100%;
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit-form:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer-modern {
  background: var(--color-secondary);
  color: white;
  padding: 30px 0;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content-modern {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text-light);
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--color-secondary);
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.modal-product-name {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 25px;
  padding: 12px;
  background: var(--color-bg-light);
  border-radius: var(--radius-sm);
}

.btn-submit-modal {
  width: 100%;
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit-modal:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.privacy-text {
  font-size: 12px;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 15px;
  margin-bottom: 0;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 1000;
  padding: 0 20px;
}

.floating-btn {
  background: var(--color-primary);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  color: white;
}

.call-btn {
  background: var(--color-primary);
}

.whatsapp-btn-float {
  background: #25D366;
}

.floating-btn i {
  font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

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

  .hero-features li {
    font-size: 16px;
  }

  .btn-primary-lg,
  .btn-outline-lg {
    font-size: 16px;
    padding: 14px 28px;
  }

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

  .product-name {
    font-size: 16px;
    min-height: auto;
  }

  .warranty-badge-modern {
    width: 90px;
    height: 90px;
    top: 10px;
    right: 10px;
  }

  .warranty-text {
    font-size: 24px;
  }

  .warranty-subtext {
    font-size: 12px;
  }

  section {
    padding: 50px 0;
  }

  .contact-form-box {
    padding: 30px 20px;
    margin-top: 30px;
  }

  .modal-content-modern {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .top-info-bar {
    font-size: 12px;display: none;
  }
div.vds {
    display: none;
}
  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .btn-outline-lg {
    margin-left: 0 !important;
  }

  .floating-buttons {
    bottom: 10px;
    gap: 10px;
  }

  .floating-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}
p.privacy-text.mesage_error {
    color: red;
}