/*
Theme Name: ЭкоВторРесурс
Theme URI: https://resourc-eco.ru
Author: Ваше имя
Author URI: https://resourc-eco.ru
Description: Тема для компании по утилизации отходов.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecoresource
Template: twentytwentythree
*/

/* Вставьте сюда весь CSS из вашего файла */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Manrope:wght@400;600;700&display=swap');

:root {
      --primary: #4CAF50;
      --primary-dark: #388E3C;
      --secondary: #2E7D32;
      --accent: #FFC107;
      --accent-dark: #FFA000;
      --dark: #1A1A2E;
      --dark-light: #16213E;
      --gray: #6B7280;
      --gray-light: #F3F4F6;
      --white: #FFFFFF;
      --success: #10B981;
      --shadow: 0 10px 40px rgba(0,0,0,0.08);
      --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
      --radius: 16px;
      --radius-sm: 8px;
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Open Sans', sans-serif;
      line-height: 1.7;
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      line-height: 1.2;
    }

    a { text-decoration: none; color: inherit; transition: var(--transition); }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ========== PRELOADER ========== */
    .preloader {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      transition: opacity 0.5s, visibility 0.5s;
    }
    .preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .preloader-spinner {
      width: 50px; height: 50px;
      border: 4px solid var(--gray-light);
      border-top-color: var(--primary);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ========== TOP BAR ========== */
    .top-bar {
      background: var(--dark);
      color: var(--white);
      padding: 10px 0;
      font-size: 0.85rem;
    }
    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .top-bar-left { display: flex; align-items: center; gap: 24px; }
    .top-bar-left a { color: rgba(255,255,255,0.8); }
    .top-bar-left a:hover { color: var(--accent); }
    .top-bar-left i { margin-right: 6px; color: var(--primary); }
    .top-bar-right { display: flex; align-items: center; gap: 16px; }
    .top-bar-right .social-link {
      width: 30px; height: 30px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      color: var(--white);
      font-size: 0.8rem;
    }
    .top-bar-right .social-link:hover {
      background: var(--primary);
      transform: translateY(-2px);
    }

    /* ========== HEADER ========== */
    header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: var(--transition);
    }
    header.scrolled {
      box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    }
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.5rem;
      font-weight: 800;
      font-family: 'Manrope', sans-serif;
      color: var(--dark);
    }
    .logo-icon {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-size: 1.4rem;
    }
    .logo span { color: var(--primary); }

    nav ul { display: flex; gap: 8px; }
    nav a {
      color: var(--dark);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      position: relative;
    }
    nav a:hover, nav a.active {
      color: var(--primary);
      background: rgba(76,175,80,0.08);
    }

    .header-actions { display: flex; align-items: center; gap: 12px; }
    .header-phone {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      margin-right: 12px;
    }
    .header-phone a {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--dark);
      font-family: 'Manrope', sans-serif;
    }
    .header-phone a:hover { color: var(--primary); }
    .header-phone small { font-size: 0.75rem; color: var(--gray); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      font-family: 'Manrope', sans-serif;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      text-transform: none;
      letter-spacing: 0.02em;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      box-shadow: 0 8px 24px rgba(76,175,80,0.3);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(76,175,80,0.4);
    }
    .btn-accent {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: var(--dark);
      box-shadow: 0 8px 24px rgba(255,193,7,0.3);
    }
    .btn-accent:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(255,193,7,0.4);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid var(--white);
      color: var(--white);
    }
    .btn-outline:hover {
      background: var(--white);
      color: var(--primary);
    }
    .btn-white {
      background: var(--white);
      color: var(--primary);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .btn-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    }
    .btn-sm { padding: 10px 24px; font-size: 0.85rem; }
    .btn-lg { padding: 18px 40px; font-size: 1.05rem; }

    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--dark);
      font-size: 1.5rem;
      cursor: pointer;
      padding: 8px;
    }
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: var(--white);
      z-index: 9999;
      padding: 80px 24px 24px;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-nav.active { transform: translateX(0); }
    .mobile-nav-close {
      position: absolute;
      top: 20px; right: 24px;
      background: none;
      border: none;
      font-size: 1.8rem;
      color: var(--dark);
      cursor: pointer;
    }
    .mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
    .mobile-nav a {
      display: block;
      padding: 16px 20px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      color: var(--dark);
    }
    .mobile-nav a:hover { background: var(--gray-light); color: var(--primary); }
    .mobile-nav .btn { margin-top: 20px; width: 100%; }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, rgba(26,26,46,0.88), rgba(22,33,62,0.82)),
      url('https://resourc-eco.ru/wp-content/uploads/2026/06/50a403555c411f1bfeb6e393f60c0be_1.jpeg') center/cover no-repeat;
      color: var(--white);
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      bottom: -2px; left: 0;
      width: 100%; height: 120px;
      background: var(--white);
      clip-path: ellipse(55% 100% at 50% 100%);
    }
    .hero-particles {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      overflow: hidden;
    }
    .particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(76,175,80,0.15);
      animation: floatParticle 15s infinite ease-in-out;
    }
    @keyframes floatParticle {
      0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
      50% { transform: translateY(-80px) scale(1.2); opacity: 0.6; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      padding: 40px 0;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(76,175,80,0.2);
      border: 1px solid rgba(76,175,80,0.3);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
      animation: fadeInDown 0.8s ease;
    }
    .hero-badge i { color: var(--accent); }
    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.1;
      animation: fadeInUp 0.8s ease 0.2s both;
    }
    .hero h1 span {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero h1 span {
      background-clip: text;
    }

    .hero p {
      font-size: 1.2rem;
      color: rgba(255,255,255,0.85);
      margin-bottom: 36px;
      max-width: 550px;
      animation: fadeInUp 0.8s ease 0.4s both;
    }
    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      animation: fadeInUp 0.8s ease 0.6s both;
    }
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.15);
      animation: fadeInUp 0.8s ease 0.8s both;
    }
    .hero-stat h3 {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--accent);
    }
    .hero-stat p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0;
    }

    /* ========== SECTION COMMON ========== */
    .section { padding: 100px 0; }
    .section-gray { background: var(--gray-light); }
    .section-dark { background: var(--dark); color: var(--white); }

    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(76,175,80,0.1);
      color: var(--primary);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .section-header h2 {
      font-size: 2.8rem;
      margin-bottom: 16px;
    }
    .section-header h2 span { color: var(--primary); }
    .section-header p {
      font-size: 1.15rem;
      color: var(--gray);
      max-width: 600px;
      margin: 0 auto;
    }
    .section-dark .section-header p { color: rgba(255,255,255,0.6); }

    /* ========== SERVICES ========== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
      gap: 28px;
    }
    .service-card {
      background: var(--white);
      padding: 40px 32px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      border: 1px solid transparent;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(76,175,80,0.1);
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 72px; height: 72px;
      background: linear-gradient(135deg, rgba(76,175,80,0.1), rgba(76,175,80,0.05));
      border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 24px;
      transition: var(--transition);
    }
    .service-card:hover .service-icon {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      transform: scale(1.1) rotate(-5deg);
    }
    .service-card h3 {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: var(--dark);
    }
    .service-card p {
      color: var(--gray);
      font-size: 0.95rem;
      margin-bottom: 20px;
    }
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.9rem;
    }
    .service-link:hover { gap: 14px; color: var(--primary-dark); }

    /* ========== ABOUT ========== */
    .about-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about-images {
      position: relative;
    }
    .about-img-main {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-hover);
    }
    .about-img-main img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }
    .about-img-float {
      position: absolute;
      bottom: -30px; right: -30px;
      width: 200px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-hover);
      border: 5px solid var(--white);
    }
    .about-img-float img { width: 100%; height: 160px; object-fit: cover; }
    .about-experience {
      position: absolute;
      top: -20px; left: -20px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      padding: 20px 24px;
      border-radius: var(--radius);
      text-align: center;
      box-shadow: 0 10px 30px rgba(76,175,80,0.3);
    }
    .about-experience h3 {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1;
    }
    .about-experience p {
      font-size: 0.8rem;
      opacity: 0.9;
      margin-top: 4px;
    }

    .about-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }
    .about-content h2 span { color: var(--primary); }
    .about-content > p {
      color: var(--gray);
      font-size: 1.05rem;
      margin-bottom: 32px;
    }
    .about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
    .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .about-feature-icon {
      width: 48px; height: 48px;
      min-width: 48px;
      background: rgba(76,175,80,0.1);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--primary);
      font-size: 1.2rem;
    }
    .about-feature h4 { font-size: 1.05rem; margin-bottom: 4px; }
    .about-feature p { font-size: 0.9rem; color: var(--gray); }

    /* ========== STATS ========== */
    .stats {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .stats::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
  <path d="M17.7 7.7a2.5 2.5 0 0 0-3.47-.1l-.8.8-.8-.8a2.5 2.5 0 0 0-3.47 3.59l.8.8H5.5A2.5 2.5 0 0 0 3 14v3a2.5 2.5 0 0 0 2.5 2.5h3a2.5 2.5 0 0 0 2.5-2.5V14a2.5 2.5 0 0 0-2.5-2.5h-1.8l.8-.8a4.5 4.5 0 0 1 6.36 6.36l.8.8h3a2.5 2.5 0 0 1 2.5 2.5v3a2.5 2.5 0 0 1-2.5 2.5h-3a2.5 2.5 0 0 1-2.5-2.5V14a2.5 2.5 0 0 1 2.5-2.5h1.8l-.8-.8a2.5 2.5 0 0 0-3.47-3.59z"/>
</svg>
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      position: relative;
      z-index: 2;
    }
    .stat-item {
      text-align: center;
      color: var(--white);
    }
    .stat-number {
      font-size: 3.5rem;
      font-weight: 800;
      font-family: 'Manrope', sans-serif;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-number .accent { color: var(--accent); }
    .stat-item p {
      font-size: 1rem;
      opacity: 0.85;
    }
     /* ========== WHY US ========== */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .why-card {
      background: var(--white);
      padding: 36px 28px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
      text-align: center;
      border: 1px solid transparent;
    }
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(76,175,80,0.15);
    }
    .why-icon {
      width: 80px; height: 80px;
      background: linear-gradient(135deg, rgba(76,175,80,0.15), rgba(76,175,80,0.05));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem;
      color: var(--primary);
      margin: 0 auto 20px;
    }
    .why-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
    .why-card p { font-size: 0.9rem; color: var(--gray); }

    /* ========== CTA ========== */
    .cta-section {
      background: linear-gradient(135deg, var(--dark), var(--dark-light));
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%; right: -20%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(76,175,80,0.15), transparent 70%);
      border-radius: 50%;
    }
    .cta-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .cta-text h2 {
      font-size: 2.5rem;
      color: var(--white);
      margin-bottom: 16px;
    }
    .cta-text h2 span { color: var(--accent); }
    .cta-text p {
      color: rgba(255,255,255,0.7);
      font-size: 1.1rem;
      margin-bottom: 32px;
    }
    .cta-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }
    .cta-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,0.8);
    }
    .cta-feature i { color: var(--success); }

    .cta-form {
      background: var(--white);
      padding: 40px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-hover);
    }
    .cta-form h3 {
      font-size: 1.4rem;
      margin-bottom: 24px;
      text-align: center;
    }
    .form-group {
      margin-bottom: 16px;
    }
    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--dark);
    }
    .form-control {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid var(--gray-light);
      border-radius: var(--radius-sm);
      font-size: 1rem;
      font-family: inherit;
      transition: var(--transition);
      background: var(--gray-light);
    }
    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(76,175,80,0.1);
    }
    .form-control::placeholder { color: #aaa; }
    textarea.form-control { height: 100px; resize: vertical; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-submit { width: 100%; margin-top: 8px; }
    .form-note {
      text-align: center;
      font-size: 0.8rem;
      color: var(--gray);
      margin-top: 12px;
    }

    /* ========== CLIENTS ========== */
    .clients-slider {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 48px;
      opacity: 0.5;
      filter: grayscale(1);
      transition: var(--transition);
    }
    .clients-slider:hover { opacity: 0.8; filter: grayscale(0.5); }
    .client-logo {
      height: 50px;
      transition: var(--transition);
    }
    .client-logo:hover { transform: scale(1.1); }

    /* ========== BLOG ========== */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .blog-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }
    .blog-img {
      height: 220px;
      overflow: hidden;
      position: relative;
    }
    .blog-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .blog-card:hover .blog-img img { transform: scale(1.08); }
    .blog-date {
      position: absolute;
      bottom: 16px; left: 16px;
      background: var(--primary);
      color: var(--white);
      padding: 6px 14px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .blog-content { padding: 28px; }
    .blog-content h3 {
      font-size: 1.15rem;
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .blog-content h3:hover { color: var(--primary); }
    .blog-content p {
      font-size: 0.9rem;
      color: var(--gray);
      margin-bottom: 16px;
    }
    .blog-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.9rem;
    }
    .blog-link:hover { gap: 12px; }

    /* ========== FOOTER ========== */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      padding: 80px 0 0;
    }
    .footer-grid {
      display: grid;
      /* Правильно: 3 колонки с соотношением ширины */
      grid-template-columns: repeat(3, 2fr);
      gap: 48px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-about .logo {
      color: var(--white);
      margin-bottom: 20px;
    }
    .footer-about .logo-icon {
      background: linear-gradient(135deg, var(--primary), var(--accent));
    }
    .footer-about p {
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 24px;
    }
    .footer-socials { display: flex; gap: 12px; }
    .footer-socials a {
      width: 42px; height: 42px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 12px;
      background: rgba(255,255,255,0.08);
      color: var(--white);
      font-size: 1rem;
      transition: var(--transition);
    }
    .footer-socials a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 24px;
      position: relative;
      padding-bottom: 12px;
    }
    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 30px; height: 3px;
      background: var(--primary);
      border-radius: 2px;
    }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul a {
      color: rgba(255,255,255,0.6);
      font-size: 0.95rem;
      transition: var(--transition);
    }
    .footer-col ul a:hover { color: var(--primary); padding-left: 6px; }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
    }
    .footer-contact li i {
      color: var(--primary);
      margin-top: 4px;
      min-width: 20px;
    }
    .footer-contact li a:hover { color: var(--primary); }

    .footer-bottom {
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 0.85rem;
    }
    .footer-bottom a { color: var(--primary); }
    .footer-bottom a:hover { text-decoration: underline; }

    /* ========== SCROLL TO TOP ========== */
    .scroll-top {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 50px; height: 50px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      border: none;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(76,175,80,0.3);
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: var(--transition);
      z-index: 999;
    }
    .scroll-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .scroll-top:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(76,175,80,0.4);
    }

    /* ========== ANIMATIONS ========== */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-40px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .hero h1 { font-size: 2.8rem; }
      .section-header h2 { font-size: 2.2rem; }
      .about-container { gap: 40px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid::before { display: none; }
      .cta-content { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .top-bar { display: none; }
      .header-phone { display: none; }
      nav { display: none; }
      .mobile-menu-btn { display: block; }
      .mobile-nav { display: block; }

      .hero { min-height: auto; padding: 120px 0 140px; }
      .hero h1 { font-size: 2.2rem; }
      .hero p { font-size: 1.05rem; }
      .hero-stats { gap: 24px; flex-wrap: wrap; }
      .hero-stat h3 { font-size: 2rem; }

      .section { padding: 70px 0; }
      .section-header h2 { font-size: 1.8rem; }

      .about-container { grid-template-columns: 1fr; }
      .about-img-float { display: none; }
      .about-experience { top: 10px; left: 10px; padding: 14px 18px; }
      .about-experience h3 { font-size: 1.8rem; }

      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-number { font-size: 2.5rem; }

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

      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; text-align: center; }

      .cta-form { padding: 28px; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 1.8rem; }
      .hero-buttons { flex-direction: column; }
      .hero-buttons .btn { width: 100%; }
      .services-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr; }
    }
/* ... остальные стили из вашего файла ... */

@media (max-width: 992px) {
  .hero h1 { font-size: 2.5rem; }
  /* ... другие медиа-запросы ... */
}