:root {
  /* Основные цвета */
  --color-primary: #0796cc;
  --color-primary-hover: #0796cc;
  --color-primary-dark: #0796cc;
  
  /* Дополнительные цвета */
  --color-secondary: #292b2b;
  --color-secondary-light: #33E1E8;
  --color-secondary-dark: #00B8BF;
  
  /* Нейтральные цвета */
  --color-dark: #1A1A1A;
  --color-dark-secondary: #2D2D2D;
  --color-gray: #6B6B6B;
  --color-gray-light: #B0B0B0;
  --color-white: #FFFFFF;
  --color-background: #F5F7FA;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, #0796cc 0%, #105e7f 100%);
  --gradient-secondary: linear-gradient(135deg, #292b2b 0%, #00A8E8 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(0, 217, 225, 0.8) 0%, rgba(0, 168, 232, 0.6) 100%);
  --gradient-dark-overlay: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.8) 100%);
  --gradient-accent: linear-gradient(90deg, #0796cc 0%, #292b2b 100%);
  
  /* Градиенты для текста */
  --gradient-text-primary: linear-gradient(135deg, #0796cc 0%, #FF8A7E 100%);
  --gradient-text-secondary: linear-gradient(135deg, #292b2b 0%, #33E1E8 100%);
  --gradient-text-accent: linear-gradient(90deg, #0796cc 0%, #292b2b 50%, #0796cc 100%);
  
  /* Шрифтовые семейства */
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  
  /* Размеры заголовков */
  --font-size-h1: 72px;
  --font-size-h1-tablet: 56px;
  --font-size-h1-mobile: 36px;
  
  --font-size-h2: 48px;
  --font-size-h2-tablet: 38px;
  --font-size-h2-mobile: 28px;
  
  --font-size-h3: 36px;
  --font-size-h3-tablet: 28px;
  --font-size-h3-mobile: 22px;
  
  --font-size-h4: 24px;
  --font-size-h4-tablet: 20px;
  --font-size-h4-mobile: 18px;
  
  /* Размеры текста */
  --font-size-base: 16px;
  --font-size-large: 18px;
  --font-size-small: 14px;
  --font-size-tiny: 12px;
  
  /* Высота строки */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;
  
  /* Толщина шрифта */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  
  /* Контейнер */
  --container-width: 1440px;
  --container-padding: 40px;
  --container-padding-tablet: 30px;
  --container-padding-mobile: 20px;
  
  /* Отступы секций */
  --section-padding-y: 120px;
  --section-padding-y-tablet: 80px;
  --section-padding-y-mobile: 60px;
  
  /* Spacing система */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Тени */
  --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);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-dark);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}





.types-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.types-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 48px;
  color: #1A1A1A;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6B6B6B;
  max-width: 780px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  gap: 48px;
}

.type-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: all 0.5s ease;
  cursor: pointer;
}

.type-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.card-image-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.type-card:hover .card-image-wrapper img {
  transform: scale(1.08);
}

.card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #0796cc 0%, #105e7f 100%);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0) 0%, rgba(26,26,26,0.8) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.type-card:hover .card-overlay {
  opacity: 1;
}

.card-btn {
  background: #0796cc;
  color: white;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(255,61,46,0.4);
  pointer-events: none;
}

.card-title-wrapper {
  background: linear-gradient(90deg, #0796cc 0%, #292b2b 100%);
  padding: 18px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.type-card:hover .card-title-wrapper {
  background: linear-gradient(90deg, #292b2b 0%, #0796cc 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.card-title {
  color: white;
  font-size: 21px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

[data-scroll-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-title { transition-delay: 0.1s; }
.section-subtitle { transition-delay: 0.25s; }
.cards-grid .type-card:nth-child(1) { transition-delay: 0.4s; }
.cards-grid .type-card:nth-child(2) { transition-delay: 0.55s; }
.cards-grid .type-card:nth-child(3) { transition-delay: 0.7s; }
.cards-grid .type-card:nth-child(4) { transition-delay: 0.85s; }
.cards-grid .type-card:nth-child(5) { transition-delay: 1.0s; }
.cards-grid .type-card:nth-child(6) { transition-delay: 1.15s; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.modal:target {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 24px;
  max-width: 980px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  overflow: hidden;
}

.modal-close {
  position: absolute;
  text-decoration: none;
  top: 16px;
  right: 20px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 30px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  text-align: center;
}

.modal-close:hover {
  background: #0796cc;
}

.modal-body {
  display: flex;
  flex-direction: row;
  height: 100%;
  max-height: calc(90vh - 60px);
  overflow: hidden;
}

.modal-image {
  position: relative;
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fc; 
}

.modal-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; 
}

.modal-info {
  flex: 1;
  padding: 40px 32px;
  overflow-y: auto;
}

.modal-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #1A1A1A;
}

.modal-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.6;
  color: #6B6B6B;
}

.modal-features li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.modal-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0796cc;
  font-weight: bold;
}

.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.modal-price {
  font-size: 26px;
  font-weight: 900;
  color: #0796cc;
}

.modal-order-btn {
  background: #0796cc;
  color: white;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 17px;
  box-shadow: 0 6px 20px rgba(255,61,46,0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.modal-order-btn:hover {
  background: #0796cc;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,61,46,0.5);
}

@media (max-width: 840px) {
  .types-section .section-title {
  font-size: 1.8rem;
}
  .modal-body { flex-direction: column; }
  .modal-image { height: 320px; flex: 0 0 auto; }
  .modal-image { display: block; } 
  .modal-info { padding: 28px 24px; max-height: none; }
}

@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; }
  .section-subtitle { font-size: 18px; }
  .card-image-wrapper { height: 200px; }
}










.technology-section {
  background: var(--color-white);
  position: relative;
  padding: var(--section-padding-y) 0;
  overflow: hidden;
}
.technology-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 217, 225, 0.05) 0%, transparent 100%);
  pointer-events: none;
}
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}
.section-subtitle {
  text-align: center;
  font-size: var(--font-size-large);
  color: var(--color-gray);
  max-width: 820px;
  margin: 0 auto var(--spacing-xxl);
  line-height: var(--line-height-relaxed);
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
  padding: var(--spacing-xl) 0;
}
.process-pair {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: var(--spacing-xl);
  position: relative;
}
.process-step {
  flex: 1 1 50%;
  max-width: 50%;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-xxl);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.process-step:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}
.process-number {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: rgba(0, 217, 225, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: var(--font-weight-black);
  color: var(--color-secondary);
  box-shadow: 0 8px 24px rgba(0, 217, 225, 0.18);
  transition: all 0.5s ease;
  z-index: 1;
}
.process-step:hover .process-number {
  transform: scale(1.12);
  background: var(--gradient-secondary);
  color: white;
  box-shadow: 0 16px 40px rgba(0, 217, 225, 0.35);
}
.process-title {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
  text-align: left;
}
.process-description {
  font-size: var(--font-size-base);
  color: var(--color-gray);
  line-height: var(--line-height-relaxed);
  text-align: left;
}
.process-pair::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - var(--spacing-xl) * 2);
  height: 4px;
  background: var(--gradient-accent);
  transform: translate(-50%, -50%);
  z-index: 0;
  border-radius: 2px;
}
.process-pair::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--color-secondary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.decorative-triangle-right {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 280px;
  height: 280px;
  opacity: 0.12;
  background: linear-gradient(135deg, var(--color-secondary) 0%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  animation: rotateTriangle 18s linear infinite;
}
@keyframes rotateTriangle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .process-pair {
    flex-direction: column;
    gap: var(--spacing-xxl);
  }
  .process-pair::before,
  .process-pair::after {
    display: none;
  }
  .process-step {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
.technology-section .section-title {
  font-size: 2.05rem;
}
  .process-step {
    padding: var(--spacing-lg) var(--spacing-lg) calc(var(--spacing-xxl) + 40px);
  }
  .process-number {
    width: 70px;
    height: 70px;
    font-size: 40px;
    bottom: 16px;
    right: 16px;
  }
  .process-title {
    font-size: 22px;
  }
  .process-description {
    font-size: 15px;
  }
}

[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

[data-scroll-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-title       { transition-delay: 0.1s; }
.section-subtitle    { transition-delay: 0.25s; }
.process-pair:nth-child(1) .process-step:nth-child(1) { transition-delay: 0.4s;  }
.process-pair:nth-child(1) .process-step:nth-child(2) { transition-delay: 0.55s; }
.process-pair:nth-child(2) .process-step:nth-child(1) { transition-delay: 0.7s;  }
.process-pair:nth-child(2) .process-step:nth-child(2) { transition-delay: 0.85s; }














.business-solutions-section {
background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
position: relative;
padding: 80px 0;
overflow: hidden;
}

.business-solutions-section::after {
content: '';
position: absolute;
bottom: -100px;
right: -100px;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(0, 217, 225, 0.1) 0%, transparent 70%);
pointer-events: none;
}

.section-title { text-align: center; margin-bottom: 20px; font-size: 2.8rem; }
.section-subtitle { text-align: center; font-size: 1.25rem; color: #666; max-width: 780px; margin: 0 auto 60px; }

.tabs {
display: flex;
flex-wrap: nowrap;
justify-content: center;
gap: 10px;
margin-bottom: 50px;
overflow-x: auto;
padding: 0 10px;
}
.tab {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 20px;
background: rgba(255, 255, 255, 0.7);
border-radius: 12px;
border: 1px solid rgba(0, 217, 225, 0.2);
cursor: pointer;
transition: all 0.3s ease;
white-space: nowrap;
flex-shrink: 0;
font-size: 1rem;
}
.tab.active, .tab:hover {
background: linear-gradient(90deg, #292b2b, #0095d9);
color: white;
border-color: transparent;
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0, 217, 225, 0.25);
}
.tab-icon { font-size: 28px; flex-shrink: 0; }
.tab-text { font-weight: 600; }

@media (max-width: 768px) {
.tabs { flex-direction: column; gap: 12px; }
.tab { width: 100%; justify-content: flex-start; padding: 16px 20px; }
.tab-icon { font-size: 36px; }
}

.tab-contents.swiper { overflow: hidden; position: relative; }
.swiper-slide { height: auto; }

.content-wrapper {
background: white;
border-radius: 20px;
padding: 40px;
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
max-width: 1100px;
margin: 0 auto;
}

.content-row {
display: flex;
align-items: stretch;
gap: 50px;
min-height: 480px;              
}

.content-image {
flex: 0 0 45%;
position: relative;
overflow: hidden;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.image-wrapper {
position: absolute;
inset: 0;
}

.content-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}

.content-text-block {
flex: 1;
display: flex;
flex-direction: column;
justify-content: flex-start;
padding: 0 10px 0 0;
}

.content-title {
font-size: 2.2rem;
font-weight: 700;
margin-bottom: 20px;
background: linear-gradient(90deg, #292b2b, #0095d9);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.content-text {
font-size: 1.15rem;
color: #555;
margin-bottom: 25px;
line-height: 1.6;
}

.feature-list {
list-style: none;
padding: 0;
margin: 0 0 30px;
}
.feature-list li {
font-size: 1.05rem;
color: #333;
margin-bottom: 12px;
position: relative;
padding-left: 28px;
}
.feature-list li::before {
content: '→';
position: absolute;
left: 0;
color: #292b2b;
font-weight: bold;
}

.price-info {
font-size: 1.3rem;
margin: 0 0 25px;
text-align: center;
font-weight: 500;
}

.btn-wide {
display: inline-block;
min-width: 280px;
width: auto;
padding: 16px 32px;
font-size: 1.15rem;
text-align: center;
background: linear-gradient(90deg, #292b2b, #0095d9);
color: white;
border: none;
border-radius: 12px;
text-decoration: none;
transition: all 0.3s;
white-space: nowrap;
margin: 0 auto;
}
.btn-wide:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0, 217, 225, 0.3);
}

.swiper-button-prev, .swiper-button-next {
color: #292b2b !important;
}
.swiper-button-prev { left: 10px; }
.swiper-button-next { right: 10px; }

.swiper-button-prev::after { content: 'prev'; }
.swiper-button-next::after { content: 'next'; }
.swiper-button-disabled { opacity: 0.4; cursor: not-allowed; }

@media (max-width: 1024px) {
.content-row {
flex-direction: column;
min-height: auto;
gap: 40px;
}
.content-image {
height: 320px;
flex: 0 0 auto;
}
.image-wrapper, .content-image img {
position: static;
height: 100%;
}
}

@media (max-width: 768px) {
.business-solutions-section .section-title {
  font-size: 2.05rem;
}
.swiper-button-prev, .swiper-button-next { display: none; }
.content-image { height: 260px; }
.content-wrapper { padding: 30px 20px; }
.section-title { font-size: 2.2rem; }
}

.floating-hangar {
position: absolute;
font-size: 140px;
opacity: 0.05;
pointer-events: none;
animation: floatHangar 24s linear infinite;
}
@keyframes floatHangar {
0%   { transform: translateX(0) translateY(0) rotate(0deg); }
50%  { transform: translateX(50px) translateY(-40px) rotate(8deg); }
100% { transform: translateX(0) translateY(0) rotate(0deg); }
}









.materials-section {
  background: linear-gradient(180deg, var(--color-background) 0%, var(--color-white) 100%);
  position: relative;
  padding: var(--section-padding-y) 0;
  overflow: hidden;
}

.materials-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 217, 225, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  text-align: center;
  font-size: var(--font-size-large);
  color: var(--color-gray);
  max-width: 820px;
  margin: 0 auto var(--spacing-xxl);
  line-height: var(--line-height-relaxed);
}

.comparison-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.comparison-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--color-white);
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 217, 225, 0.08);
  vertical-align: top;
}

.comparison-table th {
  background: var(--gradient-accent);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-large);
  text-align: center;
  vertical-align: middle;
}

.comparison-table thead th:first-child {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-secondary) 100%);
}

.comparison-table td {
  font-size: var(--font-size-base);
  color: var(--color-dark);
}

.comparison-table td strong { color: var(--color-primary); }

.table-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.table-header span {
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  font-size: 1.1em;
}

.header-image-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 4px solid rgba(255,255,255,0.8);
  background: white;
}

.header-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(0, 217, 225, 0.03);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  margin-top: var(--spacing-xxl);
}

.btn-primary,
.btn-outline {
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  min-width: 240px;
  text-align: center;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn-outline:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-4px);
}

.floating-hangar {
  position: absolute;
  font-size: 140px;
  opacity: 0.05;
  pointer-events: none;
  animation: floatHangar 24s linear infinite;
}

@keyframes floatHangar {
  0% { transform: translateX(0) translateY(0) rotate(0deg); }
  50% { transform: translateX(50px) translateY(-40px) rotate(8deg); }
  100% { transform: translateX(0) translateY(0) rotate(0deg); }
}

@media (max-width: 1024px) {
  .cta-buttons { gap: var(--spacing-md); }
  .btn-primary, .btn-outline {
    padding: 13px 28px;
    font-size: 1.05rem;
    min-width: 220px;
  }
}

@media (max-width: 768px) {
.materials-section .section-title {
  font-size: 2.05rem;
}
  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 360px;
    padding: 14px 24px;
    font-size: 1rem;
    min-width: auto;
  }
}

[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

[data-scroll-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-title       { transition-delay: 0.1s; }
.section-subtitle    { transition-delay: 0.25s; }
.comparison-wrapper  { transition-delay: 0.4s; }
.cta-buttons         { transition-delay: 0.55s; }

.type-header {
padding: 0 !important;
height: 220px;                  
position: relative;
overflow: hidden;
vertical-align: top;
}

.header-image-overlay {
position: relative;
width: 100%;
height: 100%;
}

.header-bg-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: brightness(0.85);        
}

.header-title {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 800;
font-size: 1.35rem;
text-align: center;
padding: 0 16px;
background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.65) 100%);
text-shadow: 0 2px 8px rgba(0,0,0,0.7);
z-index: 2;
}

.header-image-wrapper { display: none; }

.param-header {
background: linear-gradient(135deg, #1f2937, #111827) !important;
font-size: 1.15rem;
font-weight: 700;
color: #e5e7eb;
padding: 28px 20px !important;
}

@media (max-width: 1024px) {
.type-header { height: 180px; }
.header-title { font-size: 1.15rem; padding: 0 12px; }
}

@media (max-width: 768px) {
.type-header { height: 160px; }
.header-title { font-size: 1rem; line-height: 1.3; }
.comparison-table th,
.comparison-table td { padding: 16px 12px; font-size: 0.95rem; }
}

















/* СЕКЦИЯ: НАШИ РЕАЛИЗОВАННЫЕ ОБЪЕКТЫ */
.projects-section {
background: linear-gradient(180deg, var(--color-background) 0%, var(--color-white) 100%);
position: relative;
padding: var(--section-padding-y) 0;
overflow: hidden;
}

.projects-section::after {
content: '';
position: absolute;
bottom: -100px;
right: -100px;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(0, 217, 225, 0.1) 0%, transparent 70%);
pointer-events: none;
}

.section-title {
text-align: center;
margin-bottom: var(--spacing-lg);
}

.section-subtitle {
text-align: center;
font-size: var(--font-size-large);
color: var(--color-gray);
max-width: 820px;
margin: 0 auto var(--spacing-xxl);
line-height: var(--line-height-relaxed);
}

.gallery-filters {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: var(--spacing-sm);
margin-bottom: var(--spacing-xxl);
}

.filter-btn {
background: transparent;
border: 2px solid var(--color-secondary);
color: var(--color-secondary);
padding: 10px 24px;
border-radius: var(--radius-md);
font-weight: var(--font-weight-semibold);
font-size: var(--font-size-base);
cursor: pointer;
transition: all var(--transition-base);
}

.filter-btn.active,
.filter-btn:hover {
background: var(--color-secondary);
color: white;
transform: translateY(-3px);
box-shadow: var(--shadow-md);
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
gap: var(--spacing-xl);
}

.gallery-item {
background: var(--color-white);
border-radius: var(--radius-xl);
overflow: hidden;
box-shadow: var(--shadow-md);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
flex-direction: column;
cursor: pointer;
width: 100%;
max-width: 100%;
box-sizing: border-box;
min-height: 520px;
}

.gallery-item:hover {
transform: translateY(-12px);
box-shadow: var(--shadow-xl);
}

.gallery-link {
display: flex;
flex-direction: column;
height: 100%;
text-decoration: none;
color: inherit;
}

.gallery-image-wrapper {
position: relative;
height: 240px;
overflow: hidden;
flex-shrink: 0;
}

.gallery-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
transform: scale(1.08);
}

.badge {
position: absolute;
top: 16px;
right: 16px;
background: var(--gradient-primary);
color: white;
padding: 6px 16px;
border-radius: var(--radius-md);
font-size: var(--font-size-small);
font-weight: var(--font-weight-bold);
box-shadow: var(--shadow-sm);
}

.gallery-info {
padding: var(--spacing-lg);
display: flex;
flex-direction: column;
flex-grow: 1;
padding-bottom: 30px;
}

.gallery-title {
font-size: var(--font-size-h4);
font-weight: var(--font-weight-bold);
margin-bottom: var(--spacing-sm);
color: var(--color-dark);
text-align: center;
}

.gallery-details {
flex-grow: 1;
margin-bottom: var(--spacing-lg);
}

.detail-row {
display: flex;
justify-content: space-between;
margin-bottom: 5px;
font-size: var(--font-size-base);
color: var(--color-gray);
}

.detail-label {
font-weight: var(--font-weight-semibold);
color: var(--color-dark);
flex: 0 0 45%;
text-align: left;
}

.detail-value {
flex: 1;
text-align: right;
color: var(--color-gray);
}

.gallery-btn {
margin-top: auto;
width: 100%;
text-align: center;
min-height: 52px;
display: flex;
align-items: center;
justify-content: center;
padding: 14px 20px;
}

/* Адаптив */
@media (max-width: 1024px) {
.gallery-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.gallery-grid {
grid-template-columns: 1fr;
gap: var(--spacing-lg);
}

.gallery-item {
min-height: auto;
max-width: 100vw;
margin: 0 auto;
width: calc(100% - 20px);
}

.gallery-image-wrapper {
height: 200px;
}

.gallery-info {
padding: 20px;
padding-bottom: 40px;
}

.gallery-btn {
padding: 16px 24px;
font-size: 1rem;
}

.gallery-filters {
flex-direction: column;
gap: var(--spacing-md);
}

.filter-btn {
width: 100%;
}

.detail-row {
flex-direction: column;
text-align: left;
margin-bottom: 12px;
}

.detail-value {
margin-top: 4px;
}
}

.floating-hangar {
position: absolute;
font-size: 140px;
opacity: 0.05;
pointer-events: none;
animation: floatHangar 24s linear infinite;
}

@keyframes floatHangar {
0% { transform: translateX(0) translateY(0) rotate(0deg); }
50% { transform: translateX(50px) translateY(-40px) rotate(8deg); }
100% { transform: translateX(0) translateY(0) rotate(0deg); }
}

[data-scroll-reveal] {
opacity: 0;
transform: translateY(60px);
transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

[data-scroll-reveal].revealed {
opacity: 1;
transform: translateY(0);
}

.section-title { transition-delay: 0.1s; }
.section-subtitle { transition-delay: 0.25s; }
.gallery-filters { transition-delay: 0.4s; }
.gallery-grid { transition-delay: 0.55s; }

.css-modal-target {
display: none;
position: fixed;
inset: 0;
background: rgba(0,0,0,0.75);
z-index: 9999;
align-items: center;
justify-content: center;
padding: 20px;
}

.css-modal-target-kar {
display: none;
position: fixed;
inset: 0;
background: rgba(0,0,0,0.75);
z-index: 9999;
align-items: center;
justify-content: center;
padding: 20px;
}

.css-modal-target:target {
display: flex;
}

.cmt {
font-size: 16px;
padding: 30px;
width: 90%;
max-width: 900px;
max-height: 85vh;
overflow-y: auto;
border: 6px solid #BFE2FF;
border-radius: 12px;
background: #FFF;
box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
text-align: center;
position: relative;
}

.css-modal-close {
position: absolute;
top: 20px;
right: 20px;
width: 50px;
height: 50px;
border: 6px solid #BFE2FF;
border-radius: 12px;
background: #FFF url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23337AB7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e") center/cover no-repeat;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
cursor: pointer;
}
@media (max-width: 768px) {
.gallery-grid {
grid-template-columns: 1fr;
gap: var(--spacing-lg);
}

.gallery-item {
min-height: auto;
max-width: 100vw;
margin: 0 auto;
width: calc(100% - 20px);
}

.gallery-image-wrapper {
height: 200px;
}

.gallery-info {
padding: 20px;
padding-bottom: 40px;
}

.gallery-btn {
padding: 16px 24px;
font-size: 1rem;
}

.detail-row {
display: flex !important;
flex-direction: row !important;
justify-content: space-between !important;
align-items: flex-start !important;
margin-bottom: 10px !important;
font-size: 0.95rem;
flex-wrap: nowrap !important;
}

.detail-label {
flex: 0 0 45% !important;
text-align: left !important;
padding-right: 8px !important;
white-space: nowrap !important; 
overflow: hidden !important;
text-overflow: ellipsis !important;
}

.detail-value {
flex: 1 !important;
text-align: right !important;
word-break: break-word !important;
}

.gallery-filters {
flex-direction: column;
gap: var(--spacing-md);
}

.filter-btn {
width: 100%;
}
}
.gallery-btn {
margin-top: auto;
width: 100%;
min-height: 52px;                 
display: flex !important;
align-items: center !important;    
justify-content: center !important;
padding: 14px 20px;
box-sizing: border-box;
text-align: center;
line-height: 1.4;                 
}

.gallery-btn-mobile {
display: none !important;
margin-top: 12px;
width: 100%;
min-height: 48px;                  
display: flex !important;
align-items: center !important;
justify-content: center !important;
padding: 12px 20px;
font-size: 0.95rem;
background: #f0f0f0;
color: #333;
border: 1px solid #ccc;
border-radius: 8px;
text-decoration: none;
transition: background 0.3s;
box-sizing: border-box;
text-align: center;
}

@media (max-width: 768px) {
.gallery-btn-mobile {
display: flex !important;
}

.gallery-btn-mobile {
min-height: 52px;               
font-size: 1rem;
}
}

@media (min-width: 769px) {
.gallery-btn-mobile {
display: none !important;
}
}











.promo-section {
padding: 120px 0 100px;
position: relative;
overflow: hidden;
background: var(--color-background);
}

.promo-header {
text-align: center;
margin-bottom: 80px;
}

.section-title {
font-size: 3.2rem;
font-weight: 900;
margin-bottom: 16px;
line-height: 1.1;
}

.promo-subtitle {
font-size: 1.35rem;
color: var(--color-gray);
max-width: 780px;
margin: 0 auto;
}

.promo-ribbon {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
gap: 32px;
padding: 20px 0;
}

@media (max-width: 1024px) {
.promo-ribbon::-webkit-scrollbar { display: none; }
}

.promo-offer {
position: relative;
background: var(--color-white);
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow-lg);
transition: all 0.4s ease;
display: flex;
flex-direction: column;
min-height: 380px;
}

.promo-offer:hover {
transform: translateY(-12px);
box-shadow: 0 20px 60px rgba(0,217,225,0.22);
}

.promo-offer::before {
content: '';
position: absolute;
top: 0; left: 0;
width: 160px; height: 160px;
background: var(--gradient-secondary);
clip-path: polygon(0 0, 100% 0, 0 100%);
opacity: 0.9;
z-index: 1;
}

.promo-offer::after {
content: 'АКЦИЯ';
position: absolute;
top: 40px;
left: 10px;
color: white;
font-weight: 900;
font-size: 16px;
z-index: 2;
transform: rotate(-45deg);
text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.offer-1::before { background: var(--gradient-primary); }
.offer-2::before { background: var(--gradient-secondary); }
.offer-3::before { background: linear-gradient(135deg, #10b981, #059669); }

.promo-content {
position: relative;
z-index: 3;
padding: 100px 32px 32px; 
flex-grow: 1;
display: flex;
flex-direction: column;
}

.promo-title {
text-align: right;
font-size: 1.6rem;
font-weight: 800;
width: 90%;
margin-left: 30px;
margin-top: -60px;
margin-bottom: 20px;
line-height: 1.25;
color: var(--color-dark);
}

.promo-text {
font-size: 1.1rem;
color: var(--color-gray);
line-height: 1.6;
margin-bottom: 32px;
flex-grow: 1;
}

.promo-cta {
display: inline-flex;
align-items: center;
justify-content: center;
align-self: flex-start;
padding: 16px 36px;
font-size: 1.05rem;
font-weight: 700;
color: white;
background: var(--gradient-primary);
border-radius: 12px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(255,61,46,0.25);
min-height: 52px;
}

.promo-cta:hover {
transform: translateY(-3px) scale(1.04);
box-shadow: 0 12px 32px rgba(255,61,46,0.35);
}

.floating-gift {
position: absolute;
font-size: 90px;
opacity: 0.05;
pointer-events: none;
animation: floatLight 18s ease-in-out infinite;
}

.gift-1 { top: 15%; left: 5%; }
.gift-2 { bottom: 20%; right: 8%; animation-delay: -6s; }

@keyframes floatLight {
0%, 100% { transform: translate(0,0) rotate(0deg); }
50% { transform: translate(40px, -30px) rotate(8deg); }
}

@media (max-width: 1024px) {
.section-title { font-size: 2.6rem; }
}

@media (max-width: 768px) {
.section-title { font-size: 2.2rem; }
.promo-content { padding: 90px 24px 28px; } 
.promo-title { font-size: 1.2rem; margin-top: -30px;}
.promo-text { font-size: 1rem; }
.promo-cta { padding: 14px 32px; font-size: 1rem; }
}

[data-scroll-reveal] {
opacity: 0;
transform: translateY(60px);
transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

[data-scroll-reveal].revealed {
opacity: 1;
transform: translateY(0);
}

.promo-header { transition-delay: 0.1s; }
.promo-ribbon .promo-offer:nth-child(1) { transition-delay: 0.3s; }
.promo-ribbon .promo-offer:nth-child(2) { transition-delay: 0.45s; }
.promo-ribbon .promo-offer:nth-child(3) { transition-delay: 0.6s; }

@media (max-width: 768px) {

.promo-ribbon {
grid-template-columns: 1fr;   
gap: 20px;
padding: 0;                   
margin: 0;                    
overflow: visible;            
}

.promo-offer {
min-height: auto;             
}

}














.testimonials-section {
  background: var(--color-background);
  padding: var(--section-padding-y) 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.testimonials-section .gradient-title {
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--spacing-md);
}

.testimonials-section  .section-subtitle {
  font-size: var(--font-size-large);
  color: var(--color-gray);
  max-width: 820px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 217, 225, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-secondary);
}

.quote-icon {
  font-size: 6rem;
  font-weight: 900;
  line-height: 0.8;
  color: var(--color-secondary);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  pointer-events: none;
}

.testimonial-author-block {
  position: absolute;
  top: 20px;
  right: 24px;
  text-align: right;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  padding: 8px 12px 6px;
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 225, 0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 0.95rem;
}

.author-name {
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  margin-bottom: 2px;
  white-space: nowrap;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: var(--color-gray);
  white-space: nowrap;
}

.testimonial-text {
  font-size: var(--font-size-base);
  color: var(--color-dark);
  line-height: 1.7;
  margin: 50px 0 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.testimonial-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(0, 217, 225, 0.08);
}

.rating {
  font-size: 1.5rem;
  color: #FFD700;
  letter-spacing: 3px;
  white-space: nowrap;
}

.testimonials-cta {
  text-align: center;
  margin-top: var(--spacing-xxl);
  padding: var(--spacing-xl);
  background: rgba(0, 217, 225, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 217, 225, 0.12);
}

.cta-text {
  font-size: var(--font-size-large);
  color: var(--color-dark);
  margin-bottom: var(--spacing-lg);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

/* Адаптив */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-author-block {
    right: 16px;
    top: 16px;
    padding: 6px 10px 4px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: var(--font-size-h2-mobile);
  }
  .quote-icon {
    font-size: 5rem;
    top: 0;
    left: 10px;
  }
  .testimonial-author-block {
    position: static;
    text-align: left;
    margin-bottom: 16px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .testimonial-card {
    min-height: 340px;
  }
 .testimonial-text {
  margin: 20px 0;
}
}








.faq-section {
background: linear-gradient(180deg, #ffffff 0%, var(--color-background) 100%);
padding: 0px 0;
position: relative;
overflow: hidden;
}

.faq-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-xl) var(--spacing-xxl);
margin: var(--spacing-xxl) 0;
}

.faq-column {
display: flex;
flex-direction: column;
gap: var(--spacing-lg);
}

.faq-item {
background: white;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
overflow: hidden;
transition: all 0.35s ease;
}

.faq-item:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-xl);
}

.faq-question {
width: 100%;
padding: 22px 28px;
text-align: left;
background: transparent;
border: none;
font-size: 1.15rem;
font-weight: 600;
color: var(--color-dark);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.25s;
}

.faq-question:hover {
background: rgba(0, 217, 225, 0.04);
}

.faq-toggle {
font-size: 1.8rem;
font-weight: 300;
color: var(--color-secondary);
transition: transform 0.35s ease;
}

.faq-item.open .faq-toggle {
transform: rotate(45deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
padding: 0 28px;
background: rgba(0, 217, 225, 0.02);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
max-height: 600px;
padding: 0 28px 28px;
}

.faq-answer p,
.faq-answer ul {
margin: 16px 0;
line-height: 1.65;
color: var(--color-gray);
}

.faq-answer ul {
padding-left: 24px;
}

.faq-answer li {
margin-bottom: 10px;
position: relative;
}

.faq-answer li::before {
content: "→";
position: absolute;
left: -20px;
color: var(--color-secondary);
}

.faq-cta {
text-align: center;
padding: var(--spacing-xl) var(--spacing-xxl);
background: rgba(0, 217, 225, 0.05);
border-radius: var(--radius-xl);
border: 1px solid rgba(0, 217, 225, 0.12);
}

.faq-cta p {
font-size: 1.3rem;
margin-bottom: var(--spacing-lg);
color: var(--color-dark);
}

.btn-large {
padding: 18px 48px;
font-size: 1.2rem;
min-width: 320px;
}

/* Адаптив */
@media (max-width: 1024px) {
.faq-grid {
grid-template-columns: 1fr;
gap: var(--spacing-xl);
}
}

@media (max-width: 768px) {
.faq-question {
font-size: 1.05rem;
padding: 18px 20px;
}
.faq-answer {
font-size: 0.96rem;
}
.btn-large {
width: 100%;
min-width: auto;
}
}









.contacts-section {
background: 
linear-gradient(rgba(255,255,255,0.80), rgba(255,255,255,0.80)),
url('/userfiles/images/angar/contacts-fon.webp') 
center / cover no-repeat;
padding: 70px 0 50px;
position: relative;
}

.contacts-section::before {
content: "";
position: absolute;
inset: 0;
background: rgba(255, 255, 255, 0.15); 
z-index: -1;
}

.section-subtitle {
text-align: center;
margin: 0 auto 32px;
font-size: 1.1rem;
color: var(--color-gray);
}

.contacts-main {
background: rgba(255,255,255,0.95);
backdrop-filter: blur(12px);
border-radius: var(--radius-xl);
border: 1px solid rgba(0,217,225,0.12);
box-shadow: var(--shadow-md);
padding: 28px 24px;
max-width: 1440px;
margin: 0 auto;
}

.contacts-header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 28px;
padding-bottom: 20px;
border-bottom: 1px solid rgba(0,217,225,0.1);
}

.company-logo-block {
display: flex;
align-items: center;
gap: 16px;
}

/*
.logo-icon {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.logo-icon img{
  border-radius: var(--radius-md);
}
*/

.company-name {
font-size: 1.7rem;
font-weight: 900;
}

.company-slogan {
font-size: 0.9rem;
color: var(--color-gray);
}

.btn-contact {
padding: 12px 28px;
font-size: 1.05rem;
display: flex;
align-items: center;
gap: 8px;
min-width: 240px;
justify-content: center;
}

.contacts-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px 28px;
}

.contact-col {
display: flex;
flex-direction: column;
gap: 16px;
}

.contact-card {
display: flex;
align-items: flex-start;
gap: 16px;
background: rgba(0,217,225,0.03);
border-radius: var(--radius-lg);
padding: 16px 18px;
border: 1px solid rgba(0,217,225,0.08);
transition: all 0.3s;
}

.contact-card:hover {
background: rgba(0,217,225,0.07);
transform: translateY(-3px);
}

.contact-icon-wrapper {
flex-shrink: 0;
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
}

.contact-icon {
font-size: 2.2rem;
color: var(--color-secondary);
}

.contact-text {
flex: 1;
}

.contact-text .h4 {
font-size: 1.18rem;
margin: 0 0 4px 0;
color: var(--color-dark);
}

.contact-text p {
font-size: 0.98rem;
line-height: 1.45;
margin: 0;
color: var(--color-gray);
}

.contact-text a {
font-size: 0.98rem;
line-height: 1.45;
margin: 0;
color: var(--color-gray);
}

.social-links {
display: flex;
gap: 12px;
margin-top: 6px;
}

.social-link {
width: 44px;
height: 44px;
background: rgba(0,217,225,0.12);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-secondary);
font-weight: bold;
text-decoration: none;
transition: all 0.3s;
}

.social-link:hover {
background: var(--color-secondary);
color: white;
transform: translateY(-2px);
}

.btn-whatsapp {
margin-top: 8px;
padding: 10px 24px;
font-size: 0.98rem;
background: #25D366;
color: white;
border: none;
}

.final-cta {
text-align: center;
margin-top: 32px;
}

.btn-large {
padding: 14px 40px;
font-size: 1.12rem;
min-width: 300px;
}

/* Адаптив */
@media (max-width: 1023px) {
.contacts-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.contacts-section { padding: 50px 0 40px; }
.contacts-main { padding: 20px 16px; }
.contacts-header { flex-direction: column; text-align: center; }
.btn-contact { min-width: 100%; }
.btn-large { width: 100%; min-width: auto; }
.contact-card { padding: 14px 16px; }
}

.pf-section {
background: #f4f5f7;
background-color: #f4f5f7;
padding: 72px 0 80px;
position: relative;
overflow: hidden;
}
.pf-section::before {
content: "";
position: absolute;
top: -100px; right: -100px;
width: 400px; height: 400px;
border-radius: 50%;
background: radial-gradient(circle, rgba(232,96,10,.055) 0%, transparent 70%);
pointer-events: none;
}
.pf-section::after {
content: "";
position: absolute;
bottom: -80px; left: -80px;
width: 320px; height: 320px;
border-radius: 50%;
background: radial-gradient(circle, rgba(44,62,80,.05) 0%, transparent 70%);
pointer-events: none;
}
.pf-wrap {
max-width: 1440px;
margin: 0 auto;
padding: 0 16px;
position: relative;
z-index: 1;
}
@media (min-width: 768px)  { .pf-wrap { padding: 0 24px; } }
@media (min-width: 992px)  { .pf-wrap { padding: 0 40px; } }
@media (min-width: 1440px) { .pf-wrap { padding: 0 60px; } }

.pf-head {
display: flex;
align-items: flex-end;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
margin-bottom: 20px;
animation: pf-fadeL .7s .1s ease forwards;
}

.pf-title {
display: inline-flex;
align-items: center;
gap: 14px;
font-size: 36px;
font-weight: 800;
color: #111417;
text-transform: uppercase;
letter-spacing: .4px;
line-height: 1.15;
margin: 0; padding: 0;
background: none; text-shadow: none;
}
.pf-title::before {
content: "";
display: inline-block;
width: 6px; min-width: 6px; height: 42px;
background: #E8600A;
border-radius: 3px;
flex-shrink: 0;
}

.pf-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 16px;
background: #dad3d2;
background-color: #dad3d2;
border-radius: 8px;
font-size: 13px;
font-weight: 700;
color: #E8600A;
white-space: nowrap;
}
.pf-badge svg {
width: 13px; height: 13px;
stroke: #E8600A; fill: none;
stroke-width: 1.8; stroke-linecap: round;
}

.pf-filters {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 28px;
opacity: 0;
animation: pf-fadeL .7s .2s ease forwards;
}
.pf-btn {
padding: 9px 20px;
border-radius: 6px;
font-size: 12px;
font-weight: 700;
letter-spacing: .8px;
text-transform: uppercase;
cursor: pointer;
border: 1px solid rgba(0,0,0,0.14);
background: #ffffff;
background-color: #ffffff;
color: #555555;
transition: all .25s ease;
user-select: none;
box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.pf-btn:hover {
border-color: #E8600A;
color: #E8600A;
box-shadow: 0 2px 8px rgba(232,96,10,0.15);
}
.pf-btn.active {
background: #E8600A;
background-color: #E8600A;
color: #fff;
border-color: #E8600A;
box-shadow: 0 4px 14px rgba(232,96,10,0.35);
}

.pf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
gap: 14px;
animation: pf-fadeUp .7s .3s ease forwards;
}

a.pf-card {
break-inside: avoid;
display: block;
margin-bottom: 14px;
border-radius: 14px;
overflow: hidden;
position: relative;
text-decoration: none;
border: 2px solid rgba(255,255,255,0.7);
background: #e8eaed;
background-color: #e8eaed;
box-shadow: 0 4px 18px rgba(0,0,0,0.12);
transition: transform .38s cubic-bezier(.22,1,.36,1),
          box-shadow .38s ease,
          border-color .38s ease;
}
a.pf-card.pf-hidden { display: none; }

a.pf-card:hover {
transform: translateY(-6px) scale(1.02);
box-shadow: 0 18px 48px rgba(0,0,0,0.20);
border-color: #E8600A;
}

a.pf-card img {
width: 100%;
height: 220px;
display: block;
object-fit: cover;
filter: brightness(.86) saturate(.84);
transition: transform 5s ease, filter .4s ease;
}
a.pf-card:hover img {
transform: scale(1.06);
filter: brightness(.95) saturate(.92);
}

a.pf-card::after {
content: "";
position: absolute;
bottom: 0; left: 0; right: 0;
height: 3px;
background: #E8600A;
transform: scaleX(0);
transform-origin: left;
transition: transform .4s ease;
z-index: 4;
}
a.pf-card:hover::after { transform: scaleX(1); }

.pf-tag {
position: absolute;
top: 12px; left: 12px;
padding: 4px 10px;
background: rgba(232,96,10,.90);
border-radius: 4px;
font-size: 10px;
font-weight: 700;
color: #fff;
letter-spacing: .9px;
text-transform: uppercase;
z-index: 3;
backdrop-filter: blur(4px);
opacity: 0;
transition: opacity .3s ease;
pointer-events: none;
}
a.pf-card:hover .pf-tag { opacity: 1; }

.pf-zoom {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%,-50%) scale(.6);
width: 48px; height: 48px;
border-radius: 50%;
background: rgba(232,96,10,.92);
display: flex; align-items: center; justify-content: center;
opacity: 0;
transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1);
z-index: 3;
pointer-events: none;
}
a.pf-card:hover .pf-zoom {
opacity: 1;
transform: translate(-50%,-50%) scale(1);
}
.pf-zoom svg {
width: 20px; height: 20px;
stroke: #fff; fill: none;
stroke-width: 2; stroke-linecap: round;
}

.pf-overlay {
position: absolute;
inset: 0;
background: linear-gradient(0deg, rgba(10,10,12,.88) 0%, transparent 58%);
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 16px;
opacity: 0;
transition: opacity .35s ease;
z-index: 2;
pointer-events: none;
}
a.pf-card:hover .pf-overlay { opacity: 1; }

.pf-overlay strong {
display: block;
font-size: 13px; font-weight: 800;
color: #fff;
text-shadow: 0 1px 6px rgba(0,0,0,.7);
line-height: 1.3;
}
.pf-overlay span {
font-size: 11px;
color: rgba(255,255,255,.60);
letter-spacing: .4px;
}

@media (hover: none) {
.pf-overlay { opacity: 1; }
.pf-tag     { opacity: 1; }
.pf-zoom    { opacity: 1; transform: translate(-50%,-50%) scale(.8); }
}

@media (max-width: 1100px) {
.pf-title { font-size: 30px; }
.pf-title::before { height: 36px; }
.pf-grid  { columns: 3; }
}
@media (max-width: 768px) {


:root{
  --section-padding-y: 40px;


}

.types-section {

  padding: 40px 0;
}
.pf-title { font-size: 24px; }
.pf-grid  {     grid-template-columns: 1fr 1fr; }
a.pf-card { margin-bottom: 10px; border-radius: 10px; }
}
@media (max-width: 540px) {
.pf-section { padding: 48px 0 56px; }
.pf-title   { font-size: 20px; gap: 10px; }
.pf-title::before { height: 26px; }
.pf-btn     { font-size: 11px; padding: 7px 13px; }
}
@media (max-width: 420px) {
.pf-title   { font-size: 17px; }
.pf-title::before { height: 22px; }
.pf-badge   { display: none; }
.pf-grid    {  gap: 8px; }
a.pf-card   { margin-bottom: 8px; border-radius: 8px; }
.pf-btn     { font-size: 10px; padding: 6px 10px; letter-spacing: .4px; }
.pf-filters { gap: 6px; }
}
@media (max-width: 360px) {
.pf-title   { font-size: 15px; gap: 8px; }
.pf-title::before { height: 20px; width: 4px; }
.pf-grid    {  gap: 6px; }
a.pf-card   { margin-bottom: 6px; }
.pf-filters { margin-bottom: 20px; }
}

.price-sec{
padding: 40px 0px;
}

.price-sec h2{
margin-bottom: 30px;
}

.price-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
padding: 20px 0;
}

.price-item {
background: white;
border-radius: 15px;
padding: 25px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.price-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: linear-gradient(to bottom, #667eea, #764ba2);
}

.price-item:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.price-item.highlight {
border: 2px solid #667eea;
transform: scale(1.02);
}

.service-name {
font-size: 1.2em;
font-weight: bold;
margin-bottom: 10px;
color: #2c3e50;
}

.price {
font-size: 1.5em;
font-weight: bold;
color: #e74c3c;
margin-bottom: 10px;
}

.description {
color: #7f8c8d;
font-size: 0.9em;
}


    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(26, 26, 26, 0.95);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }
    .header.scrolled {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-md);
    }
    .header-top {
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding: 12px 0;
      transition: all 0.4s ease;
      background: rgba(0, 0, 0, 0.3);
      opacity: 1;
      transform: translateY(0);
    }
    .header.scrolled .header-top {
      opacity: 0;
      transform: translateY(-100%);
      pointer-events: none;
      visibility: hidden;
      height: 0;
      padding: 0;
      margin: 0;
      border: none;
    }
    .header-top-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--spacing-lg);
    }
    .logo {
      display: flex;
      align-items: center;
      gap: var(--spacing-sm);
      font-size: var(--font-size-h4);
      font-weight: var(--font-weight-bold);
      color: var(--color-white);
      text-decoration: none;
      transition: var(--transition-base);
    }
    .header.scrolled .logo {
      color: var(--color-dark);
    }
    .logo-icon {
      height: 60px;
	  overflow: hidden;
      /*background: var(--gradient-secondary);
      border-radius: var(--radius-sm);*/
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: var(--font-weight-black);
      color: var(--color-white);
      font-size: 24px;
    }
	.logo-icon img{
	width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: var(--radius-md);
    }
    .header-info {
      display: flex;
      align-items: center;
      gap: var(--spacing-xl);
      flex: 1;
      justify-content: center;
    }
    .info-item {
      display: flex;
      align-items: center;
      gap: var(--spacing-xs);
      color: var(--color-white);
      font-size: var(--font-size-small);
      transition: var(--transition-base);
    }
    .header.scrolled .info-item {
      color: var(--color-dark);
    }
    .info-icon {
      font-size: 18px;
    }
    .info-text {
      font-weight: var(--font-weight-medium);
    }
    .social-links {
      display: flex;
      gap: var(--spacing-sm);
    }
    .social-link {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-white);
      text-decoration: none;
      font-size: 16px;
      transition: var(--transition-base);
    }
    .header.scrolled .social-link {
      background: rgba(0, 0, 0, 0.05);
      color: var(--color-dark);
    }
    .social-link:hover {
      background: var(--gradient-secondary);
      color: var(--color-white);
      transform: translateY(-3px);
    }
    .btn {
      padding: 10px 24px;
      border-radius: var(--radius-sm);
      font-weight: var(--font-weight-semibold);
      font-size: var(--font-size-small);
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--gradient-primary);
      color: var(--color-white);
    }
    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: var(--shadow-lg);
    }
    .header-bottom {
      padding: 0;
      background: rgba(0, 0, 0, 0.2);
      transition: var(--transition-base);
    }
    .header.scrolled .header-bottom {
      background: transparent;
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--spacing-sm);
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-link {
      color: var(--color-white);
      text-decoration: none;
      font-weight: var(--font-weight-medium);
      font-size: var(--font-size-small);
      padding: 18px 20px;
      position: relative;
      transition: var(--transition-base);
      display: block;
    }
    .header.scrolled .nav-link {
      color: var(--color-dark);
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--gradient-secondary);
      transition: width 0.3s ease;
    }
    .nav-link:hover,
    .nav-link.active {
      color: var(--color-secondary);
    }
    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }
    .mobile-menu-toggle {
      display: none;
      background: var(--gradient-primary);
      border: none;
      color: var(--color-white);
      font-size: 24px;
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: var(--transition-base);
    }
    .mobile-menu-toggle:hover {
      transform: scale(1.1);
    }
 
    .hero-section {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(0, 217, 225, 0.15) 0%, rgba(0, 168, 232, 0.1) 100%),
                  url('/userfiles/images/angar/angar-bg.webp') center/cover no-repeat;
    }
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--gradient-dark-overlay);
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 10;
      padding: 200px 0 80px;
    }
    .hero-main {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-xxl);
      align-items: center;
      margin-bottom: var(--spacing-xxl);
    }
    .hero-text {
      max-width: 100%;
      background: rgba(26, 26, 26, 0.85);
      backdrop-filter: blur(15px);
      padding: var(--spacing-xxl);
      border-radius: var(--radius-xl);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: var(--shadow-xl);
    }
    .hero-title {
      font-size: var(--font-size-h2);
      font-weight: var(--font-weight-black);
      line-height: var(--line-height-tight);
      color: var(--color-white);
      margin-bottom: var(--spacing-lg);
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }
    .hero-description {
      font-size: var(--font-size-large);
      color: var(--color-white);
      line-height: var(--line-height-relaxed);
      margin-bottom: 0;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
      opacity: 0.95;
    }
    .hero-image {
      width: 100%;
      height: 450px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      position: relative;
    }
    .hero-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 217, 225, 0.2) 0%, transparent 100%);
      z-index: 1;
    }
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .hero-image:hover img {
      transform: scale(1.05);
    }
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-lg);
      margin-bottom: var(--spacing-xxl);
    }
    .stat-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-lg);
      padding: var(--spacing-xl);
      transition: var(--transition-base);
    }
    .stat-card:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: var(--color-secondary);
    }

    .stat-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .stat-icon {
      font-size: 48px;
      flex-shrink: 0;
    }
    .stat-title {
      font-size: var(--font-size-h4);
      font-weight: var(--font-weight-bold);
      color: var(--color-white);
      margin: 0;
      line-height: 1.2;
    }
    .stat-text {
      font-size: var(--font-size-base);
      font-weight: var(--font-weight-normal);
      color: #fff;
      line-height: var(--line-height-relaxed);
    }
    .hero-cta {
      margin-bottom: 0;
      text-align: center;
    }
    .btn-cta {
      padding: 18px 40px;
      font-size: var(--font-size-large);
      border-radius: var(--radius-md);
      position: relative;
      overflow: hidden;
    }
    .btn-cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }
    .btn-cta:hover::before {
      width: 300px;
      height: 300px;
    }
    .geometric-triangle {
      position: absolute;
      width: 300px;
      height: 300px;
      opacity: 0.1;
      pointer-events: none;
      z-index: 5;
    }
    .triangle-1 {
      bottom: 10%;
      left: 5%;
      background: linear-gradient(135deg, var(--color-secondary) 0%, transparent 100%);
      clip-path: polygon(0 0, 100% 100%, 0 100%);
      animation: floating 6s ease-in-out infinite;
    }
    .triangle-2 {
      top: 20%;
      right: 10%;
      background: linear-gradient(225deg, var(--color-primary) 0%, transparent 100%);
      clip-path: polygon(100% 0, 100% 100%, 0 0);
      animation: floating 8s ease-in-out infinite reverse;
    }
    @keyframes floating {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(5deg);
      }
    }
    @media (max-width: 1200px) {
      .header-info {
        gap: var(--spacing-md);
      }
      .nav-link {
        padding: 18px 15px;
        font-size: 13px;
      }
    }
    @media (max-width: 1024px) {
      .header-top-content {
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 12px;
      }
      .header-info,
      .btn-primary:not(.btn-cta) {
        display: none;
      }
      .social-links {
        display: flex;
        margin-left: auto;
        gap: 12px;
      }
      .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 12px;
      }
      .header-bottom {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: rgba(26, 26, 26, 0.98);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
      }
      .header.scrolled .header-bottom {
        background: rgba(255, 255, 255, 0.98);
      }
      .header-bottom.active {
        display: block;
      }
      .nav {
        flex-direction: column;
        padding: var(--spacing-md) 0;
      }
      .nav-link {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 16px;
      }
      .hero-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
      }
      .hero-text {
        padding: var(--spacing-lg);
      }
      .hero-image {
        height: 300px;
      }
      .hero-title {
        font-size: var(--font-size-h2-tablet);
      }
      .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
      }
      .stat-card {
        padding: var(--spacing-lg);
      }
      .hero-cta {
        text-align: center;
      }
      .btn-cta {
        width: 100%;
        max-width: 400px;
      }
    }
    @media (max-width: 768px) {
      .container {
        padding: 0 16px;
      }
      .header-top-content {
        gap: 8px;
      }
      .logo {
        font-size: 20px;
      }
      .logo-icon {
        height: 48px;
      }
	  .logo-icon img{
	   width: 100%;
       height: 100%;
      }
      .social-links {
        gap: 10px;
      }
      .social-link {
        width: 32px;
        height: 32px;
        font-size: 14px;
      }
      .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 22px;
      }
      .hero-content {
        padding: 80px 0 60px;
      }
      .hero-text {
        padding: 24px;
      }
      .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
      }
      .hero-description {
        font-size: 16px;
      }
      .hero-image {
        height: 250px;
      }
      .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
      }
      .stat-card {
        padding: 20px 16px;
        text-align: left;
      }
      .stat-header {
        gap: 12px;
        margin-bottom: 12px;
      }
      .stat-icon {
        font-size: 42px;
      }
      .stat-title {
        font-size: 20px;
      }
      .stat-text {
        font-size: 14px;
      }
      .btn-cta {
        padding: 16px 30px;
        font-size: 16px;
        width: 100%;
      }
    }
    @media (max-width: 480px) {
      .hero-content {
        padding: 80px 0 40px;
      }
      .hero-title {
        font-size: 28px;
      }
      .hero-description {
        font-size: 15px;
      }
      .hero-image {
        height: 200px;
      }
      .stat-card {
        padding: 16px 14px;
      }
      .stat-header {
        gap: 10px;
      }
      .stat-icon {
        font-size: 36px;
      }
      .stat-title {
        font-size: 18px;
      }
      .stat-text {
        font-size: 13px;
      }
      .btn-cta {
        padding: 14px 24px;
        font-size: 15px;
      }
    }


    

.mob-tel-icon{
  display: none;

}


@keyframes pulse {
  0% {
    transform: scale(1); 
  }
  50% {
    transform: scale(0.9); 
  }
  100% {
    transform: scale(1); 
  }
}


@media (max-width: 768px) {
  .mob-tel-icon{
    display: block;
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 1000000;

  }

  .mob-tel-icon img{

    animation: pulse 3s infinite ease-in-out;
  }}
       


  .watermark {
    position: absolute;
    color: #fff;
    font-weight: 600;
    font-size: calc(150%);
    opacity: 0.3;
    left: 50%;
    top: 40%;
    transform: translate(-50%);
    text-align: center;
}

.catalog-item-image{
  position: relative;
}

.css-modal-target .modal-content {
  max-width: none;
}



.price-table {
  width: 100%;
  border-collapse: collapse;
  display: block;
}

.price-table thead {
  display: none; /* Скрываем шапку таблицы на мобильных */
}

.price-table tbody {
  display: block;
  width: 100%;
}

.price-table tr {
  display: block;
  background: white;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.price-table td {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border: none;
  border-bottom: 1px dashed #eee;
  font-size: 0.95rem;
}

/* Последний элемент (цена) делаем чуть крупнее и жирнее */
.price-table td:last-child {
  font-weight: bold;
  color: #0796cc;
  font-size: 1rem;
}

/* Добавляем визуальные заголовки внутри карточек через псевдоэлементы */
.price-table td:first-child::before {
  content: "Наименование:";
  font-weight: 600;
  color: #555;
  min-width: 45%;
}

.price-table td:last-child::before {
  content: "Цена:";
  font-weight: 600;
  color: #555;
  min-width: 25%;
}


/* Дополнительные мелкие правки для очень узких экранов (смартфоны в портрете) */
@media (max-width: 720px) {


  .materials-section{
display: none;
  }

  .price-table td {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    border-bottom: 1px solid #5555553b;
    padding-left: 16px;
    height: 100px;
    gap: 6px;
}

.price-table td::before {
  width: 100%;
  transform: translateY(-30px);
}

.price-table td:last-child {
  text-align: left;
}
}