/* ==================== ОСНОВНЫЕ СТИЛИ ==================== */
:root {
    /* Эко-палитра цветов */
    --primary-green: #4a7c59;
    --light-green: #7fb069;
    --accent-green: #90c695;
    --soft-beige: #f8f6f0;
    --cream-white: #fefefe;
    --warm-grey: #e8e6e0;
    --text-dark: #2c3e2d;
    --text-light: #6b7c6e;
    --shadow-light: rgba(74, 124, 89, 0.1);
    --shadow-medium: rgba(74, 124, 89, 0.2);
    --gradient-primary: linear-gradient(135deg, #4a7c59 0%, #7fb069 100%);
    --gradient-soft: linear-gradient(135deg, #f8f6f0 0%, #fefefe 100%);
    --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);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Alegreya', serif;
    background: var(--cream-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== BOOTSTRAP НАВИГАЦИЯ ==================== */

/* Основной navbar: стеклянный как на главной */
.navbar.ecodom-navbar {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: none;
    border-radius: 0 0 28px 28px;
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.08),
      0 2px 8px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1400px;
    z-index: 1030;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    min-height: auto;
  }
  
  .navbar.ecodom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.12),
      0 4px 12px rgba(0, 0, 0, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.25);
    margin-top: 4px;
    border-radius: 0 0 32px 32px;
  }
  
  /* Доп. стеклянный слой */
  .navbar.ecodom-navbar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0) 100%);
    border-radius: 0 0 28px 28px;
    pointer-events: none;
  }
  
  .navbar.ecodom-navbar.scrolled::before {
    background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0.02) 100%);
    border-radius: 0 0 32px 32px;
  }
  
  /* Container настройки (как на главной) */
  .navbar .container-fluid {
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Адаптивные настройки контейнера */
  @media (max-width: 991.98px) {
    .navbar .container-fluid { padding: 0 1.5rem; }
  }
  @media (max-width: 767.98px) {
    .navbar .container-fluid { padding: 0 1rem; }
  }
  @media (max-width: 575.98px) {
    .navbar .container-fluid { padding: 0 0.8rem; }
  }
  
  /* Простой логотип EcoDom */
  .navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    padding: 0;
    margin-right: 2rem;
  }
  
  .navbar-brand:hover {
    text-decoration: none !important;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  /* Анимация логотипа как на главной */
  .logo-svg .svg-elem-1 {
    stroke-dashoffset: 672.049560546875px;
    stroke-dasharray: 672.049560546875px;
    fill: var(--primary-green);
    stroke: var(--primary-green);
    stroke-width: 2;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s,
                fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  }
  .navbar-brand:hover .logo-svg .svg-elem-1 {
    stroke-dashoffset: 0;
    fill: var(--light-green);
    stroke: var(--light-green);
  }
  .logo-svg .svg-elem-2 {
    stroke-dashoffset: 248.2175750732422px;
    stroke-dasharray: 248.2175750732422px;
    fill: var(--text-dark);
    stroke: var(--text-dark);
    stroke-width: 2;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s,
                fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  }
  .navbar-brand:hover .logo-svg .svg-elem-2 {
    stroke-dashoffset: 0;
    fill: var(--text-light);
    stroke: var(--text-light);
  }
  
  .company-name {
    font-family: 'Alegreya', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    transition: color 0.3s ease;
  }
  
  .navbar-brand:hover .company-name {
    color: var(--light-green);
  }
  
  /* Navbar Toggle Button */
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: var(--gradient-primary);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 2px 8px var(--shadow-light);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
  }
  
  /* Navbar Collapse */
  .navbar-collapse {
    flex-grow: 1;
    justify-content: center;
  }
  
  /* Navbar Nav */
  .navbar-nav {
    align-items: center;
    gap: 0.25rem;
  }
  
  .navbar-nav .nav-item {
    margin: 0;
  }
  
  /* Кнопки навигации (стеклянные как на главной) */
  .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.8) !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1rem !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    margin: 0 0.2rem;
  }
  
  /* Эффект при наведении */
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    color: rgba(74, 124, 89, 0.9) !important;
    transform: translateY(-2px);
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  
  /* Анимация иконок */
  .navbar-nav .nav-link i {
    margin-right: 0.4rem;
    font-size: 0.75rem;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover i {
    transform: scale(1.1);
    color: var(--light-green);
  }
  
  /* Тонкая пульсация для каталога */
  .navbar-nav .nav-link[href*="catalog"] {
    animation: subtlePulse 4s ease-in-out infinite;
  }
  
  @keyframes subtlePulse {
    0%, 100% {
      background: transparent;
    }
    50% {
      background: rgba(127, 176, 105, 0.05);
    }
  }
  
  /* Right side items */
  .navbar-nav.ms-auto {
    flex-direction: row;
    gap: 1rem;
  }

  /* Дополнительные Bootstrap переопределения */
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }
  
  .navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
  }
  
  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link:focus {
    color: var(--primary-green);
  }
  
  .navbar-light .navbar-toggler {
    border-color: transparent;
  }
  
  /* Фиксация z-index для корректной работы */
  .navbar {
    z-index: 1030;
  }
  
  /* ==================== Glass Nav Overrides (as on Index) ==================== */
.navbar.ecodom-navbar {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }
  .navbar.ecodom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.82) !important;
    border-color: rgba(0, 0, 0, 0.12);
  }
  
  .navbar-nav .nav-link {
    background: rgba(255, 255, 255, 0.35) !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    color: rgba(0, 0, 0, 0.85) !important;
    box-shadow: none !important;
    animation: none !important;
    transform: none !important;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background: rgba(255, 255, 255, 0.45) !important;
    color: rgba(0, 0, 0, 0.85) !important;
    transform: none !important;
  }
  .navbar-nav .nav-link i {
    transition: none !important;
  }
  .navbar-nav .nav-link:hover i {
    transform: none !important;
    color: inherit !important;
  }
  .navbar-nav .nav-link[href*="catalog"] {
    animation: none !important;
  }
  
/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Матовый зелёный фон как на contact */
    background: rgba(74, 124, 89, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
    color: var(--text-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(74, 124, 89, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(127, 176, 105, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(144, 198, 149, 0.02) 0%, transparent 80%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-dark);
    padding-top: 80px;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Переопределение Bootstrap стилей для колонки */
.col-lg-8.hero-content {
    margin-left: auto;
    margin-right: auto;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .col-lg-8.hero-content {
        flex: 0 0 auto;
        width: 66.66666667%;
        max-width: 66.66666667%;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff !important;
    border: 1px solid #000 !important;
    box-shadow: none;
    color: #2F6F4E !important;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-badge i { display: none !important; }

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
    /* Subtle green outline + layered shadows for premium look */
    -webkit-text-stroke: 1px rgba(47, 111, 78, 0.30);
    text-shadow:
        0 1px 0 #ffffff,
        0 2px 8px rgba(74, 124, 89, 0.18),
        0 10px 28px rgba(74, 124, 89, 0.12);
    letter-spacing: 0.5px;
}

/* Убрать подчеркивание под заголовком */
.hero-title::after { display: none; }

.gradient-text {
    color: var(--text-dark) !important;
    font-weight: 700;
    -webkit-text-fill-color: var(--text-dark) !important;
    background: none !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #2F6F4E !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #000;
    border-radius: 14px;
    min-width: 140px;
    transition: var(--transition-smooth);
    animation: none !important;
}

.stat-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2F6F4E !important;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #2F6F4E !important;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
}

.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.8rem 2rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    box-sizing: border-box;
}

.btn-primary {
    background: white;
    color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 220px;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-green);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    min-width: 220px;
}

.btn-outline-primary:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-3px);
    color: white;
}

/* ==================== АНИМАЦИИ ==================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Анимационные классы */
.animate-slide-up {
    animation: fadeInUp 0.8s ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.slide-in-title {
    animation: none !important;
}

.slide-in-subtitle {
    animation: none !important;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ==================== SECTION STYLES ==================== */
.section-animate {
    opacity: 1;
    transform: none;
    transition: none !important;
}

.section-animate.animate-in {
    opacity: 1;
    transform: none;
}

#pallet-info {
    background: var(--eco-white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2F6F4E;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
    opacity: 1;
    transform: none;
    transition: none !important;
}

.section-title::after {
    display: none;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #2F6F4E;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
    opacity: 1;
    transform: none;
}

/* ==================== PALLET CARDS ==================== */
.pallet-card {
    background: #fff;
    border: 1px solid #000;
    border-radius: 25px;
    box-shadow: none;
    overflow: hidden;
    transition: none !important;
    height: 100%;
    opacity: 1;
    transform: none;
    padding: 0;
}

.pallet-card.animate-in {
    opacity: 1;
    transform: none;
}

.card-hover-effect:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #000;
}

.pallet-header {
    background: linear-gradient(135deg, rgba(47, 111, 78, 0.25) 0%, rgba(127, 176, 105, 0.2) 100%);
    color: #2F6F4E;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pallet-header::before {
    display: none;
}

.pallet-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: none !important;
    color: #2F6F4E;
}

.rotate-on-hover:hover {
    transform: none;
}

.pallet-header h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #2F6F4E;
}

.pallet-body {
    padding: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: none !important;
}

.spec-item:hover {
    background: transparent;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #2F6F4E;
}

.spec-value {
    font-weight: 700;
    color: #2F6F4E;
}

/* ==================== CONTAINER SECTION ==================== */
.container-section {
    background: var(--eco-white);
    position: relative;
}

.container-section::before {
    display: none;
}

.container-features {
    margin-top: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #000;
    border-radius: 25px;
    box-shadow: none;
    transition: none !important;
    opacity: 1;
    transform: none;
}

.feature-item:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #000;
}

.feature-icon {
    font-size: 1.5rem;
    color: #2F6F4E;
    background: #fff;
    border: 1px solid #000;
    padding: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
    transition: none !important;
}

.bounce-on-hover:hover {
    transform: none;
}

.feature-item h6 {
    font-weight: 600;
    color: #2F6F4E;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #2F6F4E;
    margin: 0;
    font-weight: 600;
}

.container-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 0;
    align-self: flex-start;
}

.container-graphic {
    background: var(--cream-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px var(--shadow-medium);
    width: 100%;
    max-width: 400px;
    border: 2px solid var(--light-green);
}

.container-base {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
}

.pallet-slot {
    background: var(--soft-beige);
    border: 2px dashed var(--light-green);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    min-height: 80px;
}

.pallet-slot:hover {
    background: var(--light-green);
    border-style: solid;
    transform: scale(1.05);
}

.floating-hover {
    transition: var(--transition-smooth);
}

.floating-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-medium);
}

.pallet-item {
    background: var(--primary-green);
    height: 40px;
    border-radius: 4px;
    position: relative;
    transition: var(--transition-smooth);
}

.pallet-slot:hover .pallet-item {
    background: white;
}

.container-stats {
    display: flex;
    gap: 1rem;
}

.stat-box {
    background: var(--cream-white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-light);
    min-width: 120px;
    border: 2px solid var(--accent-green);
    transition: var(--transition-smooth);
}

.scale-on-hover:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.stat-box .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==================== PACKAGING TABLE ==================== */
.packaging-table-section {
    background: var(--eco-white);
    position: relative;
}

.animated-table {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: none;
    margin: 0;
    border: 1px solid #000;
    background: #fff;
}

.packaging-table thead {
    background: linear-gradient(135deg, rgba(47, 111, 78, 0.25) 0%, rgba(127, 176, 105, 0.2) 100%);
    color: #2F6F4E;
    position: relative;
}

.packaging-table thead::after {
    display: none;
}

.packaging-table th,
.packaging-table td {
    padding: 1.2rem 0.8rem;
    text-align: center;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    vertical-align: middle;
    position: relative;
}

.packaging-table th {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2F6F4E;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.table-row-animate {
    transform: none;
    opacity: 1;
    transition: none !important;
}

.table-row-animate.animate-in {
    transform: none;
    opacity: 1;
}

.packaging-table tbody tr {
    transition: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
}

.packaging-table tbody tr:hover {
    background: #fff;
    transform: none;
    box-shadow: none;
}

.packaging-table tbody tr:nth-child(even) {
    background: #fff;
}

.packaging-table tbody tr:nth-child(even):hover {
    background: #fff;
}

.packaging-table td strong {
    color: #2F6F4E;
    font-weight: 700;
    font-size: 1.1rem;
}

.packaging-table td {
    position: relative;
    color: #2F6F4E;
}

.packaging-table td::before {
    display: none;
}

.packaging-table tbody tr:hover td::before {
    display: none;
}

/* ==================== CONTAINER DETAILS SECTION ==================== */
.container-details-section {
    background: var(--eco-white);
    position: relative;
}

.container-detail-card {
    background: #fff;
    border: 1px solid #000;
    border-radius: 25px;
    padding: 0;
    box-shadow: none;
    transition: none !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 1;
    transform: none;
}

.container-detail-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #000;
}

.container-detail-header {
    background: linear-gradient(135deg, rgba(47, 111, 78, 0.25) 0%, rgba(127, 176, 105, 0.2) 100%);
    color: #2F6F4E;
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.container-detail-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2F6F4E;
}

.container-detail-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: none !important;
}

.detail-item:hover {
    background: transparent;
    transform: none;
}

.detail-label {
    font-weight: 600;
    color: #2F6F4E;
    font-size: 0.95rem;
}

.detail-value {
    font-weight: 700;
    color: #2F6F4E;
    font-size: 1.1rem;
}

/* ==================== DOWNLOAD SECTION ==================== */
.download-section {
    background: var(--eco-white);
    position: relative;
}

.document-card {
    background: #fff;
    border: 1px solid #000;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: none;
    transition: none !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: none;
}

.document-card.animate-in {
    opacity: 1;
    transform: none;
}

.document-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #000;
}

.doc-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.doc-icon i {
    font-size: 3.5rem;
    color: #2F6F4E;
    transition: none !important;
}

.doc-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.doc-content h5 {
    font-weight: 600;
    color: #2F6F4E;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.doc-content p {
    color: #2F6F4E;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 600;
}

.doc-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.file-size,
.file-pages {
    color: #2F6F4E;
    background: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid #000;
    font-weight: 600;
}

.doc-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.doc-actions .btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    background: #fff;
    color: #2F6F4E;
    border: 1px solid #000;
    transition: none !important;
}

.doc-actions .btn:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #2F6F4E;
    border-color: #000;
}

/* Wave Effect для кнопок */
.wave-effect {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==================== PROTECTION SECTION ==================== */
.protection-section {
    background: var(--eco-white);
    padding: 6rem 0;
}

.protection-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.protection-section .protection-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 3rem !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.protection-section .protection-grid .protection-card {
    background: #fff !important;
    border: 1px solid #000 !important;
    border-radius: 25px !important;
    padding: 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    transition: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
    height: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    float: none !important;
    position: relative !important;
}

.protection-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #000;
}

@media (max-width: 992px) {
    .protection-section .protection-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .protection-section .protection-grid .protection-card {
        padding: 2rem !important;
    }
}

.protection-card-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 2px solid #2F6F4E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #2F6F4E;
    transition: none !important;
}

.protection-card-icon i {
    font-size: 2.5rem;
    color: #2F6F4E;
}

.protection-card-content {
    flex: 1;
    width: 100%;
}

.protection-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2F6F4E;
    margin-bottom: 1.5rem;
}

.protection-card-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.protection-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(47, 111, 78, 0.05) 0%, rgba(127, 176, 105, 0.03) 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-align: left;
}

.protection-spec-item .spec-label {
    font-weight: 600;
    color: #2F6F4E;
    font-size: 0.9rem;
}

.protection-spec-item .spec-value {
    font-weight: 600;
    color: #2F6F4E;
    font-size: 1rem;
    line-height: 1.5;
}

/* ==================== ЭКО-ФУТЕР ==================== */
.eco-footer {
  background: linear-gradient(135deg, 
    rgba(74, 124, 89, 0.15) 0%, 
    rgba(127, 176, 105, 0.12) 50%, 
    rgba(144, 198, 149, 0.1) 100%);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-top: 1px solid rgba(74, 124, 89, 0.2);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  box-shadow: 
    0 -8px 32px rgba(74, 124, 89, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.eco-footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.eco-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(127, 176, 105, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(144, 198, 149, 0.08) 0%, transparent 50%);
    opacity: 0.7;
}

.eco-leaves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20,20 Q30,10 40,20 Q30,30 20,20' fill='%23ffffff' opacity='0.03'/%3E%3Cpath d='M60,60 Q70,50 80,60 Q70,70 60,60' fill='%23ffffff' opacity='0.02'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    opacity: 0.5;
}

.eco-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 0 20px 60px;
    position: relative;
    z-index: 2;
}

.eco-footer-brand {
    grid-column: span 1;
}

.eco-footer-logo {
    margin-bottom: 20px;
}

.eco-footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.eco-footer-logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.eco-footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4a7c59;
  margin-bottom: 15px;
}

.eco-mission {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.eco-certifications {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.eco-cert {
    background: linear-gradient(135deg, #7fb069, #90c695);
    color: #2c3e2d;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(127, 176, 105, 0.3);
}

.eco-footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4a7c59;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eco-footer-section h4 i {
    font-size: 1.1rem;
}

.eco-locations,
.eco-contacts,
.eco-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Локации */
.eco-locations {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.eco-location {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(74, 124, 89, 0.15);
  box-shadow: 0 2px 8px rgba(74, 124, 89, 0.05);
}

.eco-location:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-dark);
  text-decoration: none;
  transform: translateX(5px);
  border-color: rgba(74, 124, 89, 0.3);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.1);
}

.eco-location i {
  color: #4a7c59;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Контакты */
.eco-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.eco-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(74, 124, 89, 0.15);
  box-shadow: 0 2px 8px rgba(74, 124, 89, 0.05);
}

.eco-contact:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-dark);
  text-decoration: none;
  transform: translateX(5px);
  border-color: rgba(74, 124, 89, 0.3);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.1);
}

.eco-contact i {
  color: #4a7c59;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Социальные сети */
.eco-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.eco-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(74, 124, 89, 0.15);
  box-shadow: 0 2px 8px rgba(74, 124, 89, 0.05);
}

.eco-social-link:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-dark);
  text-decoration: none;
  transform: translateX(5px);
  border-color: rgba(74, 124, 89, 0.3);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.1);
}

.eco-social-link i {
  color: #4a7c59;
  font-size: 1.3rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.eco-social-icon-image {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: contain;
}

.eco-promise {
    margin-top: 25px;
}

.eco-promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.eco-promise-item i {
    color: #4a7c59;
    font-size: 1rem;
}

.eco-footer-bottom {
    background: rgba(74, 124, 89, 0.05);
    border-top: 1px solid rgba(74, 124, 89, 0.15);
    padding: 25px 0;
    position: relative;
    z-index: 2;
}

.eco-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.eco-footer-bottom p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.eco-footer-links {
    display: flex;
    gap: 25px;
}

.eco-footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.eco-footer-links a:hover {
    color: #4a7c59;
    text-decoration: none;
}

/* ==================== STAGGER ANIMATIONS ==================== */
.stagger-animation {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.stagger-animation.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        margin-top: 2rem;
    }
    
    .btn {
        text-align: center;
        justify-content: center;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 250px;
    }
    
    .hero-content {
        padding-bottom: 2rem;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .container-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .packaging-table {
        font-size: 0.8rem;
    }
    
    .packaging-table th,
    .packaging-table td {
        padding: 0.8rem 0.4rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .protection-card {
        padding: 2rem;
    }
    
    .doc-actions {
        flex-direction: column;
    }
    
    .doc-actions .btn {
        width: 100%;
    }
    
    .eco-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .eco-footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .eco-footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 100px;
        padding-bottom: 3rem;
        text-align: center;
    }
    
    .hero-section {
        min-height: 110vh;
        padding: 1rem 0;
    }
    
    .hero-buttons {
        gap: 1rem;
        margin-top: 2.5rem;
    }
    
    .btn {
        padding: 1.2rem 1rem;
        font-size: 0.85rem;
        border-radius: 8px;
        min-width: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .packaging-table {
        font-size: 0.7rem;
    }
    
    .packaging-table th,
    .packaging-table td {
        padding: 0.5rem 0.2rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 120vh;
        padding: 0.5rem 0;
    }
    
    .hero-content {
        padding-top: 80px;
        padding-bottom: 4rem;
    }
    
    .hero-buttons {
        gap: 1.2rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    
    .btn {
        padding: 1.4rem 1.2rem;
        font-size: 0.8rem;
        min-height: 54px;
        border-radius: 10px;
        word-wrap: break-word;
        white-space: normal;
        line-height: 1.3;
        min-width: 250px;
    }
    
    .btn i {
        margin-right: 0.5rem;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar,
    .hero-section,
    .download-section,
    .eco-footer {
        display: none;
    }
    
    .packaging-table {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .pallet-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}
