
/* Основные стили */
.header-phone {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary, #1e3c4f);
  color: white;
  border: none;
  border-radius: 0.3rem;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 1rem;
}

.phone-btn:hover {
  background: var(--primary-dark, #1e3c4f);
}

.phone-arrow {
  display: flex;
  transition: transform 0.3s ease;
}

.phone-arrow svg {
  width: 12px;
  height: 12px;
}

.phone-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 9.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 0px;
}

.phone-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 0.95rem;
  color: var(--text, #333);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--background, #f5f5f5);
  color: var(--primary, #0066cc);
}

/* Анимация стрелки */
.phone-btn[aria-expanded="true"] .phone-arrow {
  transform: rotate(180deg);
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .phone-btn {
    padding: 12px 16px;
  }
  
  .dropdown-item {
    padding: 12px 16px;
  }
}

/* Sollertis Design System - Professional Industrial Equipment */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

:root {
  /* Sollertis Brand Colors */
  --primary: #375e75;        /* Dark Blue */
  --primary-hover: #1e3c4f;
  --accent: #00938a;         /* Teal-Green */
  --accent-hover: #006b65;
  --surface: #80a5a1;        /* Light Gray-Green */
  --surface-hover: #6b8b88;
  
  /* Semantic Colors */
  --background: #fafafa;
  --foreground: #262626;
  --card: #ffffff;
  --border: #e5e5e5;
  --muted: #737373;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(41, 82, 108, 0.1);
  --shadow-card: 0 8px 30px rgba(41, 82, 108, 0.15);
  --shadow-hover: 0 12px 40px rgba(0, 147, 138, 0.2);
  
  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Spacing */
  --container-padding: 1rem;
  --section-padding: 4rem 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Button Styles */
.btn-primary,
.btn-accent,
.btn-surface {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.btn-surface {
  background-color: var(--surface);
  color: white;
}

.btn-surface:hover {
  background-color: var(--surface-hover);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

/* Header */
.header {
  background-color: var(--card);
  box-shadow: var(--shadow-soft);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 0;
}

.logo h1 {
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;

}

.language-switcher {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.language-btn:hover {
  border-color: var(--primary);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  display: none;
  min-width: 80px;
}

.language-dropdown.active {
  display: block;
}

.language-dropdown button {
  display: block;
  width: 100%;
  padding: 8px 12px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.language-dropdown button:hover {
  background-color: var(--background);
}

.mobile-menu-toggle {
  display: flex;
  /* display: none; */

  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 1.8rem;
  height: 0.22rem;
  background-color: var(--primary);
  margin: 0.2rem 0;
  transition: var(--transition-smooth);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 14rem;

  background-color: var(--card);
  box-shadow: var(--shadow-card);
  transform: translateX(100%);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1.2rem 0.7rem 1.2rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--muted);
}

.mobile-nav {
  flex: 1;
  padding: 1rem 0;
}

.mobile-nav-item {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-nav-item:hover {
  background-color: var(--background);
}

.mobile-contact-btn {
  width: 100%;
  margin-bottom: 1rem;
}

.mobile-language {
  display: flex;
  gap: 0.5rem;
}

.mobile-language button {
  flex: 1;
  padding: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-language button:hover,
.mobile-language button.active {
  border-color: var(--primary);
  background-color: var(--primary);
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 3.8rem;
}

/* .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-blend-mode: overlay;
  background-size: cover;          
  background-position: center;     
  transition: opacity 1s linear; 
  opacity: 1;
} */

#hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero-background div {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  animation: slowZoom 8s ease-in-out infinite alternate;
}

#hero-background div.visible {
  opacity: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Эффект "дыхания" — еле заметный зум */
@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06); /* чуть-чуть увеличивается */
  }
  100% {
    transform: scale(1);
  }
}

/* ---------------------------------- */

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 55rem;

}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 200px;
  margin-bottom: 1rem;
  text-shadow: 0 6px 1rem rgba(0, 0, 0, 0.75);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary, .btn-accent, .btn-surface{
  padding: 1rem 2.3rem;
  font-size: 1.1rem;
}


/* Sections */
section {
  padding: var(--section-padding);
}

section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  text-align: center;
  color: var(--primary);
}

section p {
  text-align: center;
  color: black;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-button {
  text-align: center;
  margin-top: 2.2rem;
}

.section-button .btn-primary {
  padding: 12px 30px;
}

/* Best Offers & Service*/


.best-offers .section-button{
  text-align: start;
}

.best-offers .container{
  padding-left: 12.5rem;
  padding-right: 12.5rem;
}

.service-offers .container{
  padding-left: 14.5rem;
  padding-right: 14.5rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.offer-card, .service-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  position: relative;
}

.offer-card:hover, .service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  cursor: pointer;
}

.offer-image, .service-image {
  height: 16rem;
  overflow: hidden;
}

.offer-image img, .service-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.service-offers .service-grid .service-image img{object-fit: cover;}

.offer-card:hover .offer-image img, 
.service-card:hover .service-image img {
  transform: scale(1.05);
}

.offer-content, .service-content {
  padding: 0.8rem;
  padding-top: 0.6rem;
}

.modal-content .price {
  padding-top: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #29526c, #00d4c0);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-content h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.1rem;
}

.service-content h3{
  color: var(--primary);
  text-align: center;
}

.offer-content p {
  color: var(--muted);
  text-align: left;
  margin: 0;
  font-weight: 500;
  font-size: 0.65rem;
}

.all_equipment_desc{
  font-size: 1.25rem;
  max-width: 58rem;
}

#service1-desc-text-1{
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.8rem;
}

#service1-desc-text-2{
  margin-top: 1rem;
}

#service3-desc-text{
  padding-right: 1rem;
}

#service4-desc-text-1{
  margin-bottom: 1.5rem;
}

.service1-list{
  margin-bottom: 2rem;
  margin-left: 1rem;
}

.service1-list li{  
  display: flex;
  justify-content: space-between;

  border-bottom: 1px solid var(--border);
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  
}

.service1-list p{
  max-width: 18rem;
  align-self: center;
}

.service1-list img{
  max-height: 13rem;
}

.offer-card-labels {
  display: flex;
  justify-content: space-between;
  /* border-top: 1px solid var(--border);  */
  padding: 1.1rem ;
}

.offer-card-labels .price {
  font-size: 0.85rem;
  position: absolute;
  bottom: 0.8rem;
  right: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #29526c, #00d4c0);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-card-labels .in-stock {
  position: absolute;
  bottom: 0.8rem;
  left: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #29526c;
  /* background: linear-gradient(135deg, #00938a, #00d4c0);
  background-clip: text;
  -webkit-text-fill-color: transparent; */
}



.Specifications{
  display: flex;
  padding-top: 1.1rem;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.2rem;
}

.Description{
  padding-top: 1.1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.main-specification , .main-dimensions{
  font-size: 0.9rem;
  list-style: none;
}

/* Why Choose Us */
.why-choose-us {
  background-color: var(--background);
}

.why-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.why-text > p {
  text-align: left;
  margin-bottom: 2rem;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit {
  display: flex;
  gap: 1rem;
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.benefit-content p {
  color: var(--muted);
  margin: 0;
  text-align: left;
}

.why-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted);
  font-weight: 500;
}

/* Trusted By & Manufacturer */
.partners-grid,
.manufacturer-grid {
  display: flex;
  overflow-x: auto;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0.3rem;
  height: 150px;
  max-width: 900px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE и Edge */
  overflow-y: visible; 
  

  -webkit-mask-image: linear-gradient(to right, 
      transparent 0px, 
      black 10px, 
      black calc(100% - 10px), 
      transparent 100%);
  mask-image: linear-gradient(to right, 
      transparent 0px, 
      black 10px, 
      black calc(100% - 10px), 
      transparent 100%);
}

.partners-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.partner-logo,
.manufacturer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  max-width: 350px;
  height: 120px;
  background: transparent;
  border-radius: 10px;
  border: 5px solid transparent;
  color: var(--muted);
  font-weight: 500;
  transition: transform 3s ease;
}

.partner-logo:hover,
.manufacturer-logo:hover { 
    border: 5px solid var(--primary);
}

.trusted-by{
  background-color: #e5e9eeb9;
  background-blend-mode: overlay;
  padding-top: 20px;
  padding-bottom: 40px;
}

.trusted-by h2 {
  margin-bottom: 20px;
}

.sviper {
  max-width: 1200px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 10px;

}

.prev, .next {
  width: 30px;
  flex-shrink: 0;
  height: 30px;
  border-left: 0px;
  border-bottom: 0px;
  background-color: transparent;
  border-top: 8px solid black ;
  border-right: 8px solid black ;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.prev[style*="hidden"], .next[style*="hidden"] {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.prev{
  transform: rotate(225deg);
}

.next{
  transform: rotate(45deg);
}

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  user-select: none;
}


.manufacturer .pagination-dots{
  background-color: #e0ebea;
  padding: 10px 10px;
  max-width: 200px;
  border-radius: 10px;
}



.dot {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #29526c;
}

.manufacturer p{
  max-width: 700px;
  margin-bottom: 10px;
}



/* Footer */
.footer {
  background-color: #1e3c4f;
  color: white;
  padding: 1rem 0 1rem;
}

.footer-content {
  display: grid;
  gap: 1.9rem; 
  grid-template-columns: 1fr 1.2fr 0.8fr;
  margin-bottom: 0.8rem;
}

.footer-section h3,
.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: var(--accent);
}

.foot-desc{margin-bottom: 2rem;}

.contact-item{
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.2rem;
}

.footer-links button {
  font-size: 1rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.footer-links button:hover {
  color: #33b1a9
}

.footer-bottom {
  text-align: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Contact Modal */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
}

.contact-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  background: var(--card);
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-card);
}

.contact-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .5rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--muted);
}

.contact-form{
  padding: 1.5rem;
  padding-top: 0;
}

.pdf-buttons {
  margin-top: 0.5rem;
  display: flex;
  gap: 1rem;
}

.cancel-btn{
  border-radius: 0.5rem;
  padding: 0.5rem 0.5rem;
}

.btn-pdf {
  background-color: #29526c; 
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-pdf:hover {
  background-color: #00938a;
}



.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 500;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(41, 82, 108, 0.1);
}

.form-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent);
  color: white;
  border: none;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.floating-contact:hover {
  background-color: var(--accent-hover);
  box-shadow: var(--shadow-hover);
  transform: scale(1.1);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  z-index: 10000;
  transition: var(--transition-smooth);
  opacity: 0;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* best-ofers-style */
.offer-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.offer-modal.active {
  display: flex;
}

.offer-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.offer-modal .modal-content {
  position: relative;
  background: var(--card);
  border-radius: 10px;
  max-width: 50rem;
  min-height: 30rem;
  padding: 1rem;
  box-shadow: var(--shadow-card);
  z-index: 1;
}

.offer-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.3rem;
  
}

.offer-modal .modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
}


/* Responsive Design */
@media (max-width: 768px) {
  :root {
      --container-padding: 1rem;
      --section-padding: 2rem 0;
  }
  
  .desktop-nav {
      display: none;
  }
  
  /* .mobile-menu-toggle {
      display: flex; 
  } */
  
  .hero-content h1 {
      font-size: 2.5rem;
  }
  
  .hero-content p {
      font-size: 1.1rem;
  }
  
  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-accent,
  .hero-buttons .btn-surface {
      width: 200px;
  }
  
  .why-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .benefits {
      grid-template-columns: 1fr;
  }
  
  .offers-grid {
      grid-template-columns: 1fr;
  }
  
  .partners-grid,
  .manufacturer-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
  }
  
  .form-buttons {
      flex-direction: column;
  }
  
  section h2 {
      font-size: 2rem;
  }
}
