/*
Theme Name: neovision.by
Theme URI: https://neovision.by
Author: neovision.by
Author URI: https://neovision.by
Description: Современная минималистичная тема WordPress для сайта рекламной компании по производству объемных букв, лайтбоксов и LED-экранов.
Version: 1.0.0
Text Domain: neovision-by
*/

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

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #9eff77;
  background-color: #f3f4f6;
  line-height: 1.6;
}

html,
body {
  overflow-x: hidden;
}

a {
  color: #0f766e;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #115e59;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}

.single-hero-banner {
  position: relative;
  width: 100vw;
  height: 260px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 1.75rem;
  background-image: var(--mnd-dynamic-bg, radial-gradient(circle at top left, #22c55e 0, transparent 55%), radial-gradient(circle at bottom right, #0ea5e9 0, transparent 55%), #020617);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.single-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.9));
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .single-hero-banner {
    height: 200px;
    margin-bottom: 1.25rem;
  }
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 16px;display: contents;
}

/* Header & navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #030707;
  color: #e5e7eb;
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  height: 72px;
  max-width: 1300px;
  margin: auto;
  position: relative;
}

.header-start {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
  flex: 1;
}

@media (min-width: 769px) {
  .header-start {
    flex: 0 1 auto;
  }
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.25;
}

.header-contacts--drawer {
  display: none;
}

.header-contact-link {
  color: #cbd5e1;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}

.header-contact-link:hover {
  color: #38bdf8;
}

.header-nav-cluster {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.header-consult-btn {
  margin: 0;
  border: 1px solid #38bdf8;
  background: transparent;
  color: #38bdf8;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.header-consult-btn:hover {
  background: #38bdf8;
  color: #020617;
}

.mobile-nav-backdrop {
  display: none;
}

.site-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.site-description {
  display: none;
}

.custom-logo-link img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.primary-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.primary-navigation a {
  color: #e5e7eb;
  font-weight: 500;
  font-size: 0.9375rem;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
  color: #38bdf8;
}

/* Dropdowns */
.primary-navigation li {
  position: relative;
}

.submenu-toggle {
  display: none;
}

.primary-navigation .menu-item-has-children > a::after {
  content: "▾";
  font-size: 0.7em;
  margin-left: 0.35rem;
  opacity: 0.8;
}

.primary-navigation ul ul {
  position: absolute;
  top: calc(100% + 10px);
  left: -12px;
  min-width: 220px;
  padding: 0.75rem 0;
  margin: 0;
  display: block;
  gap: 0;
  background: #020617;
  border-radius: 0.9rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 40;
}

.primary-navigation ul ul li {
  width: 100%;
}

.primary-navigation ul ul a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.primary-navigation li:hover > ul,
.primary-navigation li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Burger button (mobile) */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.menu-toggle-box {
  width: 28px;
  height: 20px;
  position: relative;
}

.menu-toggle-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #f8fafc;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.menu-toggle-line:nth-child(1) {
  top: 0;
}

.menu-toggle-line:nth-child(2) {
  top: 9px;
}

.menu-toggle-line:nth-child(3) {
  bottom: 0;
}

.menu-toggle.is-active .menu-toggle-line:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle-line:nth-child(3) {
  bottom: 9px;
  transform: rotate(-45deg);
}

/* Mobile menu */
@media (max-width: 768px) {
  .primary-navigation .menu-item-has-children > a::after {
    display: none;
  }

  .site-header-inner {
    padding: 0 12px;
    justify-content: space-between;
  }

  .header-start {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-contacts--desktop {
    display: none;
  }

  .header-contacts--drawer {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  }

  .header-nav-cluster .header-contact-link {
    color: #0f172a;
    font-size: 0.9375rem;
  }

  .header-nav-cluster .header-contact-link:hover {
    color: #0284c7;
  }

  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(2, 6, 23, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
  }

  .mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-nav-cluster {
    position: fixed;
    top: 0;
    right: 0;
    order: 3;
    height: 100vh;
    height: 100dvh;
    width: min(100%, 320px);
    max-width: 86vw;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(72px + 1rem) 1.25rem 1.5rem;
    background: #ffffff;
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.18);
    z-index: 99;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s ease, visibility 0.28s ease;
    visibility: hidden;
  }

  .header-nav-cluster.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .primary-navigation {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    display: block;
    width: 100%;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    padding: 0;
    margin: 0;
    transition: none;
  }

  .primary-navigation.is-open,
  .primary-navigation:not(.is-open) {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .header-nav-cluster .primary-navigation a {
    color: #0f172a;
  }

  .header-nav-cluster .primary-navigation a:hover,
  .header-nav-cluster .primary-navigation .current-menu-item > a {
    color: #0284c7;
  }

  .primary-navigation ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .primary-navigation > ul > li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .primary-navigation > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
    padding: 0.75rem 0.5rem;
    border-radius: 0.75rem;
    background: transparent;
    text-align: left;
  }

  .primary-navigation > ul > li > a:hover {
    background: rgba(15, 23, 42, 0.05);
  }

  .primary-navigation ul ul {
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease, opacity 0.2s ease;
  }

  .primary-navigation li.is-submenu-open > ul {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 0.15rem 0 0.35rem 0.75rem;
  }

  .primary-navigation ul ul a {
    display: block;
    padding: 0.45rem 0.25rem;
    font-size: 0.875rem;
    opacity: 0.95;
    text-align: left;
  }

  .submenu-toggle {
    margin-left: 0.25rem;
    border: 0;
    background: none;
    padding: 0.15rem 0.15rem 0.15rem 0.35rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .submenu-toggle-icon {
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
  }

  .is-submenu-open > .submenu-toggle .submenu-toggle-icon {
    transform: rotate(225deg);
  }

  .header-consult-btn {
    margin-top: 1.25rem;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.65rem 1.25rem;
    border-radius: 0.75rem;
    border-width: 2px;
    color: #0369a1;
    border-color: #0ea5e9;
  }

  .header-consult-btn:hover {
    background: #0ea5e9;
    color: #fff;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    padding: 0.35rem 0.5rem;
    order: 2;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }
}

.main {
    background: linear-gradient(135deg, #fdfcfb 0%, #f2f6f8 100%);
}
.section {
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    box-sizing: border-box;
}

.site-main {
  padding-top: 40px;
}

/* Фиксируем скролл только на мобильных через body */
@media (max-width: 1329px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
@media (min-width: 992px) {
    .col-md-4 {
        width: 100%;
    }
}
.hestia-bottom-footer-content {
    position: relative;
    display: none;
}
.footer-big {
	padding: 0px 0 0px;}


/* Анимации */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(254, 135, 3, 0.5); }
    50% { box-shadow: 0 0 20px rgba(254, 135, 3, 0.8); }
    100% { box-shadow: 0 0 10px rgba(254, 135, 3, 0.5); }
}

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

/* Основные стили подвала */
.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.modern-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fe8703, #354395, #fe840c);
}

/* Сетка подвала */
.modern-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 0 30px;
}

/* Столбец 1: Контакты */
.contact-block {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: transform 0.3s, border-color 0.3s;
}

.contact-block:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 135, 3, 0.5);
}

.contact-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ebebeb;
}

.phone-highlight {
    margin: 25px 0;
    text-align: center;
}
.footerpan {
    background: 
        radial-gradient(circle at 10% 20%, rgb(3 151 254 / 15%) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(53, 67, 149, 0.15) 0%, transparent 50%), #1e1e1e;
    position: relative;
}
button {margin: 1px;}
.footerpan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(254, 135, 3, 0.05) 40px,
            rgba(254, 135, 3, 0.05) 41px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(53, 67, 149, 0.05) 40px,
            rgba(53, 67, 149, 0.05) 41px
        );
    pointer-events: none;
    animation: gridFade 10s ease-in-out infinite alternate;
}

@keyframes gridFade {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}
.phone-number {
    display: block;
    font-size: 1.4em !important;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(45deg, #f4934f, #fe4a20);
    padding: 15px 25px;
    border-radius: 15px;
    margin-bottom: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;box-shadow: 0px 0px 12px 2px #0000004f !important;
}

.phone-number:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s;
}

.phone-number:hover:before {
    transform: rotate(45deg) translateX(100%);
}

.glow-effect {
    animation: glow 3s infinite;
}

.call-text {
    display: block;
    color: #cccccc;
    font-size: 14px;
    margin-top: 5px;
}

.region-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgb(29 36 41 / 54%);
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
}

.badge-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.region-list {
    color: #dddddd;
    font-size: 15px;
    line-height: 1.4;
}

/* Столбец 2: Мессенджеры */
.messengers-block {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(53, 67, 149, 0.2);
}

.messengers-title {
    font-size: 22px;
    margin-bottom: 25px;
    color: #caeaff;
}

.messengers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.messenger-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 6px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.messenger-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.messenger-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.messenger-btn:hover:before {
    opacity: 1;
}

.whatsapp-btn { background: linear-gradient(135deg, #25D366, #128C7E); }
.telegram-btn { background: linear-gradient(135deg, #0088cc, #005580); }
.viber-btn { background: linear-gradient(135deg, #7360F2, #5D4DE6); }
.instagram-btn { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.tiktok-btn { background: linear-gradient(135deg, #000000, #69C9D0, #EE1D52); }

.messenger-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.messenger-name {
    font-size: 14px;
    font-weight: 600;
}

/* Столбец 3: Быстрые действия */
.actions-block {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}
.hours-info {color: #ffffff;}

.actions-title {
    font-size: 22px;
    margin-bottom: 25px;
    color: #ffd7b0;
}

.actions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 20px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}
.copfootpa {padding-top:30px;}
.action-btn:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.callback-btn:hover { background: linear-gradient(90deg, rgba(254, 135, 3, 0.3), rgba(254, 135, 3, 0.1)); }
.calculate-btn:hover { background: linear-gradient(90deg, rgba(53, 67, 149, 0.3), rgba(53, 67, 149, 0.1)); }
.question-btn:hover { background: linear-gradient(90deg, rgba(254, 132, 12, 0.3), rgba(254, 132, 12, 0.1)); }

.btn-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.work-hours {
    margin-top: 20px;
}

.hours-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    animation: float 6s ease-in-out infinite;
}

.hours-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.hours-info {
    display: flex;
    flex-direction: column;
}

/* Нижняя часть подвала */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-decoration {
    text-align: center;
    padding-top: 20px;
}

.decoration-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #fe8703, transparent);
    margin: 0 auto 15px;
    max-width: 300px;
}

.decoration-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #fe8703;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.dot:nth-child(2) { animation-delay: 0.5s; }
.dot:nth-child(3) { animation-delay: 1s; }

/* Адаптивность */
@media (max-width: 1024px) {
    .modern-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .phone-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .modern-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .contact-block,
    .messengers-block,
    .actions-block {
        padding: 20px;
    }
    
    .phone-number {
        font-size: 24px;
        padding: 12px 20px;
    }
    
    .messengers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .modern-footer {
        padding: 40px 0 20px;
    }
    
    .phone-number {
        font-size: 20px;
    }
    
    .messengers-grid {
        grid-template-columns: 1fr;
    }
    
    .action-btn {
        padding: 15px 20px;
    }
}




/* Общие стили */
.contacts-three-columns {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Заголовок */
.contacts-header-three {
    text-align: center;
    margin-bottom: 60px;
}

.contacts-header-three h1 {
    font-size: 2.8rem;
    color: #354395;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.contacts-header-three p {
    color: #666;
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Трехколоночная сетка */
.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Общие стили для колонок */
.column-left,
.column-center,
.column-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Карточки в колонках */
.column-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: fit-content;
}

.column-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

/* Заголовок карточки */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-icon {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 12px;
    color: #354395;
    transition: transform 0.3s ease;
}

.column-card:hover .card-icon {
    transform: scale(1.1);
}

.card-header h3 {
    font-size: 1.4rem;
    color: #354395;
    font-weight: 500;
    margin: 0;
}

/* Телефон */
.main-phone {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4876ba;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.main-phone:hover {
    color: #354395;
}

.phone-note {
    color: #888;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Регионы в колонке */
.regions-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.region-tag {
    background: #f5f7ff;
    color: #354395;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 400;
    border: 1px solid #e6eaff;
    transition: all 0.3s ease;
    text-align: center;
}

.region-tag:hover {
    background: #354395;
    color: white;
    border-color: #354395;
    transform: translateX(5px);
}

/* Расписание */
.work-schedule {
    margin-bottom: 15px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-row:last-child {
    border-bottom: none;
}

.day {
    color: #666;
    font-weight: 400;
    font-size: 1.35rem;
}

.time {
    color: #3c62ab;
    font-weight: 600;
    font-size: 1rem;
}

.schedule-note {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

/* Мессенджеры в колонке */
.messengers-column-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.messenger-column-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.messenger-column-item:hover {
    transform: translateX(5px);
    border-color: transparent;
}

.whatsapp-column:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.telegram-column:hover {
    background: linear-gradient(135deg, #0088cc, #005580);
    color: white;
}

.viber-column:hover {
    background: linear-gradient(135deg, #7360F2, #5D4DE6);
    color: white;
}

.instagram-column:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584);
    color: white;
}

.messenger-emoji {
    font-size: 1.5rem;
}

.messenger-label {
    font-size: 1rem;
    font-weight: 500;
}

/* Форма в правой колонке */
.form-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-align: center;
}

.three-column-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group-three {
    margin-bottom: 0;
}

.form-input-three,
.form-textarea-three {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input-three:focus,
.form-textarea-three:focus {
    outline: none;
    border-color: #354395;
    background: white;
    box-shadow: 0 0 0 3px rgba(53, 67, 149, 0.1);
}

.form-textarea-three {
    min-height: 100px;
    resize: vertical;
}

.submit-btn-three {
    background: linear-gradient(135deg, #4876c9 0%, #a93c3c 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    margin-top: 10px;
}

.submit-btn-three:hover {
    background: linear-gradient(135deg, #354395 0%, #4a5bc0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 135, 3, 0.3);
}

/* Карта регионов */
.regions-map-three {
    background: #f8f9ff;
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
}

.regions-map-three h3 {
    font-size: 1.6rem;
    color: #354395;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}

.regions-map-three p {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
}

.map-visual {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e6eaff;
}

.map-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fe8703;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    animation: dotPulse 2s infinite;
}

.map-dot:hover {
    width: 16px;
    height: 16px;
    background: #354395;
}

.map-dot:hover::after {
    content: attr(data-city);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #354395;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 10;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(254, 135, 3, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(254, 135, 3, 0);
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.three-column-grid {
    animation: fadeIn 0.6s ease-out;
}

.column-left { animation-delay: 0.1s; }
.column-center { animation-delay: 0.2s; }
.column-right { animation-delay: 0.3s; }
.regions-map-three { animation-delay: 0.4s; }

/* Адаптивность */
@media (max-width: 1200px) {
    .three-column-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .column-right {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contacts-three-columns {
        padding: 20px 15px;
    }
    
    .contacts-header-three h1 {
        font-size: 2.2rem;
    }
    
    .three-column-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .column-right {
        grid-column: span 1;
    }
    
    .column-card {
        padding: 25px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .main-phone {
        font-size: 1.5rem;
    }
    
    .regions-map-three {
        padding: 25px 20px;
    }
    
    .map-visual {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .contacts-header-three h1 {
        font-size: 1.8rem;
    }
    
    .contacts-header-three p {
        font-size: 1rem;
    }
    
    .schedule-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .time {
        align-self: flex-end;
    }
}
/* Общие стили страницы */
.about-company-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

/* Герой-секция */
.about-hero-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 0 0 40px 40px;
    padding: 80px 40px;
    margin-bottom: 60px;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-main-title {
    font-size: 3.2rem;
    color: #354395;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.about-hero-text {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

/* Контент-обертка */
.about-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Блок миссии */
.about-mission-block {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.mission-visual {
    text-align: center;
}

.visual-icon {
    font-size: 5rem;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fe8703 0%, #ff9a3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mission-content {
    padding-left: 20px;
}

.mission-title {
    font-size: 2.2rem;
    color: #354395;
    margin-bottom: 25px;
    font-weight: 400;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

/* Ценности */
.about-values-section {
    padding: 0 20px;
}

.values-title {
    font-size: 2.5rem;
    color: #354395;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.value-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #f8f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #354395;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #354395;
    color: white;
    transform: scale(1.1);
}

.value-name {
    font-size: 1.4rem;
    color: #354395;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-description {
    color: #666;
    line-height: 1.6;
    font-size: 1.3rem;
}

/* История компании */
.company-history {
background: #f4fffe;
    border-radius: 30px;
    /* padding: 60px 40px; */
    box-shadow: 1px 0px 13px 1px #00000029;
}

.history-title {
font-size: 3.5rem;
    color: #454545;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.history-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #219350, #b8ff45);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #1fa86f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #354395;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    padding-top: 10px;
    flex-grow: 1;
}

.timeline-content h4 {
font-size: 1.6rem;
    color: #434343;
    margin-bottom: 10px;
    font-weight: 500;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Команда */
.team-section {
    padding: 0 20px;
}

.team-main-title {
font-size: 3.5rem;
    color: #454545;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.team-subtitle {
text-align: center;
    color: #666;
    /* font-size: 1.1rem; */
    margin-bottom: 50px;
    font-weight: 500;
}
.phone-number1 {max-width: fit-content !important;}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #354395;
}

.member-photo {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.member-name {
    font-size: 1.3rem;
    color: #354395;
    margin-bottom: 10px;
    font-weight: 500;
}

.member-role {
    color: #666;
    line-height: 1.5;
}

/* Технологии */
.tech-section {
    background: white;
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.tech-title {
    font-size: 2.5rem;
    color: #354395;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-item {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #f8f9ff;
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
}

.tech-item h3 {
    font-size: 1.3rem;
    color: #354395;
    margin-bottom: 15px;
    font-weight: 500;
}

.tech-item p {
    color: #666;
    line-height: 1.6;
}

/* Статистика */
.stats-section {
    background: linear-gradient(135deg, #35958e 0%, #197668 100%);
    border-radius: 30px;
    padding: 60px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-weight: 300;
    opacity: 0.9;
}

/* Призыв к действию */
.about-cta {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: #354395;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #fe8703 0%, #ff9a3d 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(135deg, #354395 0%, #4a5bc0 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(254, 135, 3, 0.3);
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-mission-block,
.about-values-section,
.company-history,
.team-section,
.tech-section,
.stats-section,
.about-cta {
    animation: fadeInUp 0.8s ease-out;
}

.about-mission-block { animation-delay: 0.1s; }
.about-values-section { animation-delay: 0.2s; }
.company-history { animation-delay: 0.3s; }
.team-section { animation-delay: 0.4s; }
.tech-section { animation-delay: 0.5s; }
.stats-section { animation-delay: 0.6s; }
.about-cta { animation-delay: 0.7s; }

/* Адаптивность */
@media (max-width: 992px) {
    .about-mission-block {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .mission-content {
        padding-left: 0;
    }
    
    .about-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 60px 20px;
        border-radius: 0 0 30px 30px;
    }
    
    .about-main-title {
        font-size: 2.2rem;
    }
    
    .about-hero-text {
        font-size: 1.2rem;
    }
    
    .about-mission-block,
    .company-history,
    .tech-section,
    .stats-section,
    .about-cta {
        padding: 40px 25px;
    }
    
    .mission-title,
    .values-title,
    .history-title,
    .team-main-title,
    .tech-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .about-company-page {
        padding: 0 15px;
    }
    
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .history-timeline::before {
        left: 20px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
        margin-right: 20px;
    }
}
/* Modern FAQ Accordion Styles */

.modern-faq-title {
    color: #595959;
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
}

.modern-faq-title:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f26e25 0%, #f95521 100%);
    border-radius: 2px;
}

.modern-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modern-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eef2ff;
    box-shadow: 0 5px 25px rgba(53, 67, 149, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-item:hover {
    box-shadow: 0 10px 30px rgba(53, 67, 149, 0.12);
    transform: translateY(-2px);
}

.modern-item.active {
    box-shadow: 0 10px 35px rgb(3 254 191 / 15%);;
}

.modern-item-header {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: all 0.3s ease;
}

.modern-item-header:hover {
    background: #f8faff;
}

.modern-number {
    font-size: 28px;
    font-weight: 800;
    color:#2d97fa;
    margin-right: 25px;
    min-width: 50px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.modern-item.active .modern-number {
    color: #354395;
    opacity: 1;
}

.modern-question {
    font-size: 20px;
    color: #505050;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.modern-item.active .modern-question {
    color: #57976d;
}

.modern-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f8faff;
    border: 2px solid #eef2ff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 20px;
    flex-shrink: 0;box-shadow: 2px 2px 6px 1px #22714400 !important;
    border: 1px dashed #dcdcdc;
}

.modern-toggle:hover {
    background: #aae7bf;
    border-color: #fe8703;
    transform: scale(1.05);
}

.modern-toggle:hover .modern-toggle-line {
    background: #fff;
}

.modern-toggle-line {
    position: absolute;
    background: #484848;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-toggle-line-1 {
    width: 20px;
    height: 2px;
}

.modern-toggle-line-2 {
    width: 2px;
    height: 20px;
}

.modern-item.active .modern-toggle-line-1 {
    transform: rotate(45deg);
}

.modern-item.active .modern-toggle-line-2 {
    transform: rotate(45deg);
}

.modern-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to bottom, #f8faff, #fff);
}

.modern-item.active .modern-content {
    max-height: 500px;
}

.modern-answer {
    padding: 0 30px 30px 105px;
    color: #555;
    line-height: 1.7;
    font-size: 17px;
}

.modern-answer p {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards;
}

.modern-answer p:nth-child(1) { animation-delay: 0.1s; }
.modern-answer p:nth-child(2) { animation-delay: 0.2s; }
.modern-answer p:nth-child(3) { animation-delay: 0.3s; }

.modern-answer strong {
    color: #155481;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.navbar .navbar-nav > li a {
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 3px;
    color: #575757;
    font-size: 17px;
    font-weight: 600;
}
/* Responsive Design */
@media (max-width: 768px) {
    .modern-faq {
        margin: 40px auto;
        padding: 0 15px;
    }
	.phone-number1 {max-width: initial !important;} h1{font-size: 1.7em;}
    .modern-faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .modern-item-header {
        padding: 20px;
        flex-wrap: wrap;
    }
    
    .modern-number {
        font-size: 24px;
        margin-right: 15px;
        min-width: 40px;
    }
    
    .modern-question {
        font-size: 18px;
        order: 1;
        flex: 1 0 100%;
        margin-top: 10px;
    }
    
    .modern-toggle {
        order: 0;
        margin-left: auto;
        width: 40px;
        height: 40px;
    }
    
    .modern-answer {
        padding: 0 20px 20px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modern-faq-title {
        font-size: 28px;
    }
    
    .modern-question {
        font-size: 17px;
    }
    
    .modern-item-header {
        padding: 18px;
    }
    
    .modern-number {
        font-size: 22px;
        min-width: 35px;
    }
}
/* Modern Reviews Section */
.reviews-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fe8703, transparent);
}

.section-title {
    text-align: center;
    font-size: 48px;
    color: #5d5d5d;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f26e25 0%, #f95521 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(53, 67, 149, 0.08);
    border: 1px solid #eef2ff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 100px;
    color: #fe8703;
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(53, 67, 149, 0.15);
    border-color: #37b884;
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #565656;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reviewer-name {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #354395;
    font-weight: 700;
}

.review-date {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.review-rating {
    color: #FFD700;
    font-size: 20px;
    letter-spacing: 2px;
    background: rgba(255, 215, 0, 0.1);
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 700;
}

/* Review Content */
.review-content {
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.review-content p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

/* Review Location */
.review-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    padding-top: 15px;
    border-top: 1px solid #eee;
    position: relative;
    z-index: 1;
}

.review-location svg {
    color: #fe8703;
    stroke-width: 2;
}

/* Leave Review Button */
.reviews-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eef2ff;
}

.leave-review-btn {
    background: linear-gradient(135deg, #ed7a26 0%, #fc4e20 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(53, 67, 149, 0.3);
    position: relative;
    overflow: hidden;
}

.leave-review-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.leave-review-btn:hover::before {
    left: 100%;
}

.leave-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(53, 67, 149, 0.4);
    background: linear-gradient(135deg, #fe8703 0%, #e67e00 100%);
}

.leave-review-btn svg {
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.leave-review-btn:hover svg {
    transform: scale(1.1);
}

.reviews-note {
    margin-top: 15px;
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .reviewer-name {
        font-size: 17px;
    }
    
    .leave-review-btn {
        padding: 16px 35px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 32px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .review-rating {
        align-self: flex-start;
    }
    
    .leave-review-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Floor Screed Calculation Form */
.floor-screed-calc {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.floor-calc-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title Styles */
.floor-calc-title {
    text-align: center;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.floor-calc-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 50px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Grid - 3 Columns */
.floor-calc-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floor-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    margin-bottom: 25px;
}

/* Form Fields */
.floor-form-field {
    position: relative;
}

.floor-input {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.floor-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.floor-input:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.floor-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fe8703;
    box-shadow: 0 0 0 3px rgba(254, 135, 3, 0.2);
}

/* Submit Button */
.floor-submit-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #fe8703 0%, #e67e00 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    height: 100%;
    min-height: 58px;
    position: relative;
    overflow: hidden;
}

.floor-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.floor-submit-btn:hover::before {
    left: 100%;
}

.floor-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(254, 135, 3, 0.4);
    background: linear-gradient(135deg, #ff9500 0%, #ff7700 100%);
}

.floor-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(254, 135, 3, 0.3);
}

/* Agreement Checkbox */
.floor-form-agreement {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floor-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #fe8703;
    flex-shrink: 0;
    margin: 0;
}

.floor-agreement-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.floor-agreement-text a {
    color: #fe8703;
    text-decoration: none;
    transition: color 0.3s ease;
}

.floor-agreement-text a:hover {
    color: #ff9500;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floor-screed-calc {
        padding: 60px 0;
    }
    
    .floor-calc-title {
        font-size: 32px;
    }
    
    .floor-calc-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .floor-calc-form {
        padding: 30px;
    }
    
    .floor-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .floor-input {
        padding: 16px 18px;
    }
    
    .floor-submit-btn {
        padding: 16px 25px;
        min-height: 54px;
    }
    
    .floor-agreement-text {
        font-size: 13px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1300px;
    }
}
@media (max-width: 480px) {
    .floor-calc-title {
        font-size: 28px;
    }
    
    .floor-calc-subtitle {
        font-size: 15px;
    }
    
    .floor-calc-form {
        padding: 25px 20px;
    }
    .floor-steps {
		padding: 10px 2px;}
    .floor-form-agreement {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
/* Основные настройки секции */
.floor-steps {
padding: 50px 20px;
    /* background-color: #fff; */
color: #ffffff;
    text-align: center;
}

/* Заголовки */
.steps-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 10px;color: #454545;
}

.steps-title b {
    font-weight: 700;
}

.steps-subtitle {
    font-size: 18px;
    color: #888;
    margin-bottom: 50px;
}

/* Сетка карточек */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки на ПК */
    gap: 30px 20px;
}

/* Карточка шага */
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Обертка картинки и номера */
.step-image-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.step-image-wrap img {
    width: 100%;
    height: 180px; /* Фиксированная высота для ровности */
    object-fit: cover;
    border-radius: 12px;
}

/* Желтый кружок с номером */
.step-number {
position: absolute;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ef7225;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    z-index: 2;
    border: 9px solid #f9fafa;
}

/* Текст под картинкой */
.step-text {
    font-size: 15px;
    line-height: 1.3;
    max-width: 220px;
    margin: 0 auto;color: #454545;
}

/* --- Адаптивность --- */

/* Планшеты (до 992px) */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки */
    }
    .steps-title {
        font-size: 26px;
    }
}

/* Мобильные телефоны (до 576px) */
@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr; /* 1 колонка */
        gap: 40px;
    }
    .steps-title {
        font-size: 22px;
    }
    .step-image-wrap img {
        height: 220px; /* Чуть выше на мобильных */
    }
}
.cost-calculator {
    background: linear-gradient(135deg, #3e9984 0%, #45a0d5 100%);
    border-radius: 20px;
    padding: 4px;
    box-shadow: 0 20px 40px rgb(0 0 0 / 15%);
    max-width: 1200px;
    margin: 0 auto;
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
    position: relative;
    overflow: hidden;
}

.cost-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00dbde, #fc00ff);
}

.calculator-title {
    text-align: center;
    color: #484848;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.calculator-subtitle {
    text-align: center;
    color:rgb(54 54 54 / 90%);
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 400;
}

.calculator-content {
    background: white;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.area-section {
    margin-bottom: 40px;
    text-align: center;
}

.area-label {
    display: block;
    margin-bottom: 25px;
    color: #2d3748;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.area-display {
font-size: 3.5em;
    font-weight: 800;
    color: #3ba185;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.area-unit {
    font-size: 24px;
    color: #718096;
    font-weight: 500;
    margin-left: 10px;
}

.slider-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.slider {
    position: relative;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 40px 0;
}

.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 4px solid #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.track {
    position: absolute;
    height: 8px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    top: 0;
    left: 0;
    transition: width 0.3s ease;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    color: #718096;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    padding: 0 5px;
}

.calculated-price {
    background: linear-gradient(135deg, #ff5e47 0%, #ffb147 100%);
    color: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 20px rgba(245, 87, 108, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.calculated-price:hover {
    transform: translateY(-5px);
}

.price-text {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    opacity: 0.9;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
}

.price-currency {
    font-size: 20px;
    font-weight: 500;
    margin-left: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 20px 25px;
    font-size: 17px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    font-weight: 500;
    color: #2d3748;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.submit-btn {
    width: 100%;
    padding: 22px;
    background: linear-gradient(135deg, #fd9827 0%, #df3535 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
}

.message {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    display: none;
    animation: slideIn 0.3s ease;
    font-weight: 500;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success {
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
    color: #22543d;
    border: none;
}

.error {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: #742a2a;
    border: none;
}

/* Декоративные элементы */
.decorative-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e0;
    animation: pulse 2s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        background: #667eea;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .cost-calculator {
        padding: 2px;
        margin: 0 1px;
    }
    
    .calculator-content {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .area-display {
        font-size: 48px;
    }
    
    .calculator-title {
        font-size: 28px;
    }
}
.topboxpo{    border: 2px dashed #57b6df;
    padding: 3px 7px;
    border-radius: 5px;
    font-weight: 600;
    /* background: linear-gradient(45deg, #51d587f5, #535353); */
    margin-bottom: 4px;
    color: #434343;display: table;}
.op14sk {    text-align: center;
    background: #ffffff;
    border-radius: 9px;
    padding: 5px 12px;
    box-shadow: 1px 1px 12px #d8d8d8;
    margin-top: -15px;}
.podrpota {background: linear-gradient(45deg, #1b58a1, #288fc7);
    color: #ffffff;
    font-weight: 600;
    padding: 3px 20px;
    border-radius: 6px;
    box-shadow: 1px 1px 8px #ffb2b2;}
.muna-transport-block {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.muna-transport__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.muna-transport__title {
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.muna-transport__title-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #48688a 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.muna-transport__title-sub {
    display: block;
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 1px;
}

.muna-transport__contact {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 91, 187, 0.1);
    border: 2px solid #e2e8f0;
    min-width: 280px;
}

.muna-transport__phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #005BBB;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 8px;
}

.muna-transport__phone:hover {
    color: #1e40af;
}

.muna-transport__phone-icon {
    color: #FFD500;
}

.muna-transport__call-text {
    color: #64748b;
    font-size: 1.25rem;
    margin: 0;
    font-weight: 500;
}

.muna-transport__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.muna-transport__column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.muna-transport__intro {
    color: #334155;
    font-size: 1.35rem;
    line-height: 1.7;
    margin: 0;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border-left: 4px solid #FFD500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.muna-transport__intro strong {
    color: #005BBB;
}

.muna-transport__feature-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.muna-transport__feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 91, 187, 0.15);
    border-color: #cbd5e1;
}

.muna-transport__feature-card--accent {
    border-top: 4px solid #FFD500;
}
.widget ul li {
	line-height: 1.6;}
.muna-transport__subtitle {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.muna-transport__icon {
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2590ff 0%, #64c2fb 100%);
    color: white;
    border-radius: 12px;
}

.muna-transport__list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.muna-transport__list-item {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1px;
    padding-left: 12px;
    position: relative;
    font-size: 1.5rem;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.muna-transport__list-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.muna-transport__list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #005BBB;
    border-radius: 50%;
}

.muna-transport__list-item strong {
    color: #1e293b;
    font-weight: 600;
    display: inline-block;
    margin-right: 4px;
}

.muna-transport__cta {
    background: linear-gradient(135deg, #245b94 0%, #1685c3 100%);
    padding: 28px;
    border-radius: 16px;
    color: white;
    text-align: center;
    margin-top: auto;
}

.muna-transport__cta-text {
    font-size: 1.4rem;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.muna-transport__cta-button {
    display: inline-block;
    background: white;
    color: #005BBB;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.muna-transport__cta-button:hover {
    background: #FFD500;
    color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 213, 0, 0.3);
}

.muna-transport__badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    border: 2px dashed #cbd5e1;
    margin-top: auto;
}

.muna-transport__badge-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 12px;
    flex-shrink: 0;
}

.muna-transport__badge-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.muna-transport__badge-content strong {
    color: #1e293b;
    font-size: 1.125rem;
}

.muna-transport__badge-content span {
    color: #64748b;
    font-size: 1.25rem;
}

@media (max-width: 992px) {
    .muna-transport__columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .muna-transport__header {
        flex-direction: column;
    }
    
    .muna-transport__contact {
        align-self: stretch;
        text-align: center;
    }
    
    .muna-transport__phone {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .muna-transport-block {
        padding: 24px 16px;
        border-radius: 20px;
    }
    
    .muna-transport__title-main {
        font-size: 2rem;
    }
    
    .muna-transport__title-sub {
        font-size: 1.125rem;
    }
    
    .muna-transport__phone {
        font-size: 1.25rem;
    }
    
    .muna-transport__feature-card,
    .muna-transport__intro,
    .muna-transport__cta {
        padding: 20px;
    }
    
    .muna-transport__subtitle {
        font-size: 1.25rem;
    }
}
.menu-item-200 {background:linear-gradient(45deg, #eb8027, #ff461f);color: white !important;border-radius: 12px;}
.navbar .navbar-nav > li.menu-item-200 a {
  color: white !important;
}
/* Основной контейнер формы */
.styazhka-contact-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.styazhka-form-wrapper {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 10px 40px;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.styazhka-form-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

/* Заголовок формы */
.styazhka-form-title {
    text-align: center;
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.styazhka-form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
}

.styazhka-form-description {
    text-align: center;
    color: #7f8c8d;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
    padding: 0 10px;
}

/* Стили для полей формы Contact Form 7 */
.styazhka-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 1px;
    position: relative;
}

.styazhka-form-wrapper label {
    display: block;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    padding-left: 5px;
}

.styazhka-form-wrapper label .wpcf7-form-control-wrap {
    margin-bottom: 0;
}

/* Стили для текстовых полей и телефона */
.styazhka-form-wrapper input[type="text"],
.styazhka-form-wrapper input[type="tel"] {
    width: 100%;
    padding: 18px 20px 18px 55px;
    font-size: 16px;
    color: #2c3e50;
    background: white;
    border: 2px solid #e3e9ef;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.styazhka-form-wrapper input[type="text"]:focus,
.styazhka-form-wrapper input[type="tel"]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.15);
    background: white;
}

.styazhka-form-wrapper input::placeholder {
    color: #a0aec0;
    font-size: 15px;
}

.styazhka-form-wrapper input:hover {
    border-color: #bdc3c7;
}

/* Иконки в полях ввода */
.styazhka-form-wrapper .wpcf7-form-control-wrap:before {
    position: absolute;
    left: 20px;
    top: 36%;
    transform: translateY(-50%);
    font-size: 18px;
    z-index: 2;
    pointer-events: none;
}

.styazhka-form-wrapper .wpcf7-form-control-wrap[data-name="text-354"]:before {
    content: '👤';
    color: #3498db;
}

.styazhka-form-wrapper .wpcf7-form-control-wrap[data-name="tel-968"]:before {
    content: '📱';
    color: #3498db;
}

/* Стили для кнопки отправки */
.styazhka-form-wrapper input[type="submit"] {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.styazhka-form-wrapper input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.styazhka-form-wrapper input[type="submit"]:active {
    transform: translateY(-1px);
}

/* Сообщения об ошибках */
.styazhka-form-wrapper .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -22px;
    left: 0;
    font-size: 13px;
    color: #e74c3c;
    font-weight: 500;
    padding-left: 5px;
}

.styazhka-form-wrapper .wpcf7-not-valid {
    border-color: #e74c3c !important;
    background-color: #fff5f5 !important;
}

/* Сообщения об успешной отправке/ошибке */
.styazhka-form-wrapper .wpcf7-response-output {
    padding: 20px !important;
    border-radius: 12px !important;
    margin: 20px 0 0 0 !important;
    font-weight: 600;
    text-align: center;
    border-width: 1px !important;
}

.styazhka-form-wrapper .wpcf7-mail-sent-ok {
    background: #d4edda !important;
    color: #155724 !important;
    border-color: #c3e6cb !important;
}

.styazhka-form-wrapper .wpcf7-validation-errors,
.styazhka-form-wrapper .wpcf7-mail-sent-ng {
    background: #f8d7da !important;
    color: #721c24 !important;
    border-color: #f5c6cb !important;
}

/* Спиннер загрузки */
.styazhka-form-wrapper .wpcf7-spinner {
    margin: 20px auto !important;
    display: block !important;
    background-color: #3498db !important;
}

/* Текст о конфиденциальности */
.styazhka-form-privacy {
    text-align: center;
    margin-top: 25px;
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.5;
    padding: 0 10px;
}

.styazhka-form-privacy a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px dotted #3498db;
    transition: all 0.2s ease;
}

.styazhka-form-privacy a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

/* Адаптивность */
@media (max-width: 576px) {
    .styazhka-form-wrapper {
        padding: 35px 25px;
        margin: 20px 10px;
    }
    
    .styazhka-form-title {
        font-size: 24px;
    }
    
    .styazhka-form-wrapper input[type="text"],
    .styazhka-form-wrapper input[type="tel"] {
        padding: 16px 15px 16px 50px;
        font-size: 15px;
    }
    
    .styazhka-form-wrapper input[type="submit"] {
        padding: 18px;
        font-size: 16px;
    }
    
    .styazhka-form-wrapper .wpcf7-form-control-wrap:before {
        left: 15px;
        font-size: 16px;
    }
}

/* Анимация появления формы */
@keyframes formAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.styazhka-form-wrapper {
    animation: formAppear 0.6s ease-out;
}

/* === Footer: ultramodern-footer (strongaz.by) === */
:root {
    --f-dark-bg: #0a0a0b;
    --f-orange: #ff7b00;
    --f-orange-glow: rgba(255, 123, 0, 0.4);
    --f-glass: rgba(255, 255, 255, 0.03);
    --f-glass-border: rgba(255, 255, 255, 0.08);
    --f-text-muted: #a0a0a0;
}

.ultramodern-footer {
    background-color: var(--f-dark-bg);
    padding: 60px 20px 40px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.ultramodern-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--f-orange-glow) 0%, transparent 70%);
    z-index: 0;
}

.footer-glass-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.footer-card {
    position: relative;
    padding: 30px;
    border-radius: 24px;
    background: var(--f-glass);
    border: 1px solid var(--f-glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.footer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 123, 0, 0.3);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.pulse-orange {
    position: relative;
}

.pulse-orange::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--f-orange);
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    box-shadow: 0 0 10px var(--f-orange);
    animation: f-pulse 2s infinite;
}

@keyframes f-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.main-phone-link {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #fff, var(--f-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s;
}

.phone-subtext {
    color: var(--f-orange);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.region-cloud {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--f-glass-border);
}

.region-header {
    font-size: 0.9rem;
    color: var(--f-text-muted);
    margin-bottom: 12px;
}

.region-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.region-links a,
.region-links span {
    font-size: 0.8rem;
    color: #ddd;
    text-decoration: none;
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    transition: 0.3s;
}

.region-links a:hover {
    background: var(--f-orange);
    color: #000;
}

.schedule-pill {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    margin-top: 20px;
}

.schedule-content {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.social-glass-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    border: 1px solid transparent;
}

.social-item img {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.social-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--f-glass-border);
    transform: translateX(10px);
}

.legal-disclaimer {
    margin-top: 25px;
    font-size: 0.75rem;
    color: var(--f-text-muted);
    line-height: 1.6;
}

.cta-button-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.glass-button {
    cursor: pointer;
    border: 1px solid var(--f-glass-border);
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: 0.3s;
    width: 100%;
}

.glass-button.orange-filled {
    background: var(--f-orange);
    color: #000;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px var(--f-orange-glow);
}

.glass-button:hover {
    background: #fff;
    color: #000;
}

.glass-button.orange-filled:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px var(--f-orange-glow);
}

.footer-identity {
    margin-top: auto;
    padding-top: 30px;
    text-align: center;
}

.copy-year {
    font-size: 0.85rem;
    font-weight: 600;
}

.safety-line {
    font-size: 0.75rem;
    color: var(--f-text-muted);
    margin-top: 5px;
}

.neon-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
}

.neon-dots span {
    width: 4px;
    height: 4px;
    background: var(--f-orange);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 5px var(--f-orange);
}

@media (max-width: 768px) {
    .ultramodern-footer {
        padding: 40px 15px;
    }
    .main-phone-link {
        font-size: 1.5rem;
    }
    .footer-card {
        padding: 20px;
    }
}

/* === Mobile fixed call button (footer phone) === */
.mnd-mobile-call-bar {
  display: none;
}

@media (max-width: 768px) {
  .mnd-mobile-call-bar {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 90%;
    max-width: 420px;
    padding: 14px 20px;
    border-radius: 999px;
    background: #ff9800;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 14px 30px rgba(255, 152, 0, 0.55);
    z-index: 9999;
  }

  .mnd-mobile-call-bar svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .mnd-mobile-call-bar:active {
    transform: translateX(-50%) translateY(1px);
    box-shadow: 0 10px 22px rgba(255, 152, 0, 0.45);
  }

  body {
    padding-bottom: 80px;
  }
}

/* === Strongaz map footer === */
#sa-footer-wrapper {
    --sa-dark-bg: #020617;
    --sa-glass-dark: rgba(15, 23, 42, 0.7);
    --sa-glass-border: rgba(255, 255, 255, 0.1);
    --sa-accent: #3b82f6;
    --sa-text-main: #e2e8f0;
    --sa-text-muted: #94a3b8;
    font-family: 'Manrope', sans-serif;
    color: var(--sa-text-main);
    overflow: hidden;
    position: relative;
    background: var(--sa-dark-bg);
}

#sa-footer-wrapper * {
    box-sizing: border-box;
}

.sa-map-section {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

.sa-map-frame {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: grayscale(30%);
}

.sa-map-overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.sa-glass-contact-card {
    pointer-events: auto;
    background: var(--sa-glass-dark);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--sa-glass-border);
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.sa-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sa-card-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--sa-accent);
    border-radius: 2px;
}

.sa-card-row {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.sa-card-icon {
    font-size: 1.2rem;
    color: var(--sa-accent);
    margin-top: 2px;
}

.sa-card-text {
    font-size: 1rem;
    color: var(--sa-text-muted);
    line-height: 1.5;
}

.sa-card-text strong {
    color: #fff;
    display: block;
    margin-bottom: 2px;
}

.sa-phone-link {
    color: #fff;
    text-decoration: none;
}

.sa-phone-link:hover {
    text-decoration: underline;
}

.sa-footer-section {
    position: relative;
    padding: 80px 20px 30px;
    background: radial-gradient(circle at 50% 0%, #1e293b 0%, #020617 70%);
}

.sa-glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

.glow-1 {
    top: -100px;
    left: 10%;
    width: 400px;
    height: 400px;
    background: var(--sa-accent);
}

.glow-2 {
    bottom: 0;
    right: 5%;
    width: 300px;
    height: 300px;
    background: #8b5cf6;
}

.sa-container-1300 {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sa-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.sa-footer-logo-col p {
    color: var(--sa-text-muted);
    margin: 20px 0;
    line-height: 1.6;
}

.sa-footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    max-width: 100%;
    height: auto;
}

.sa-footer-btn-glass {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid var(--sa-accent);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.sa-footer-btn-glass:hover {
    background: var(--sa-accent);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

/* Всплывающая форма консультации */
.sa-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9999;
}

.sa-popup-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.sa-popup-dialog {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px 26px 26px;
    max-width: 430px;
    width: calc(100% - 32px);
    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.35);
    position: relative;
    color: #0f172a;
}

.sa-popup-inner {
    position: relative;
    z-index: 1;
}

.sa-popup-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-top: -64px;
    margin-bottom: 10px;
}

.sa-popup-avatar-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.4);
    overflow: hidden;
}

.sa-popup-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sa-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.sa-popup-close:hover {
    background: rgba(15, 23, 42, 1);
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.9);
    transform: translateY(-1px);
}

.sa-popup-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 4px 0 14px;
    text-align: center;
    color: #0f172a;
}

.sa-popup-messengers {
    padding-top: 4px;
}

.sa-popup-messengers-title {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 12px;
    text-align: center;
}

.sa-popup-messengers-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sa-popup-messenger-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.1s ease;
}

.sa-popup-messenger-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.35);
    opacity: 0.96;
}

.sa-popup-messenger-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sa-popup-messenger-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-popup-messenger-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.sa-popup-messenger-icon-phone {
    color: #ffffff;
}

.sa-popup-messenger-text-main {
    white-space: nowrap;
}

.sa-popup-messenger-arrow {
    font-size: 1.1rem;
}

.sa-popup-messenger-telegram {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.sa-popup-messenger-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.sa-popup-messenger-viber {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.sa-popup-messenger-instagram {
    background: radial-gradient(circle at 10% 0%, #f97316 0, transparent 55%),
                radial-gradient(circle at 90% 100%, #22c55e 0, transparent 55%),
                linear-gradient(135deg, #ec4899, #6366f1);
}

.sa-popup-messenger-call {
    background: #0f172a;
}

@media (max-width: 480px) {
    .sa-popup-dialog {
        padding: 22px 18px 18px;
        max-width: 380px;
    }

    .sa-popup-title {
        font-size: 1.25rem;
    }
}

html.sa-popup-open {
    overflow: hidden;
}

.sa-footer-btn-block {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.sa-col-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.sa-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sa-footer-links li {
    margin-bottom: 12px;
}

.sa-footer-links a {
    color: var(--sa-text-muted);
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    display: inline-block;
}

.sa-footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.sa-glass-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.sa-glass-social-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.sa-glass-social-item img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    opacity: 0.7;
}

.sa-glass-social-item:hover {
    background: var(--sa-accent);
    border-color: var(--sa-accent);
    transform: translateY(-3px);
}

.sa-glass-social-item:hover img {
    opacity: 1;
}

.sa-help-text {
    color: #94a3b8;
    margin-bottom: 20px;
}

.sa-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.sa-footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sa-footer-contact-icon {
    color: var(--sa-accent);
    font-size: 1.05rem;
    line-height: 1.4;
}

.sa-footer-contact-text {
    color: var(--sa-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.sa-footer-contact-text strong {
    display: block;
    color: #fff;
    margin-bottom: 2px;
}

.sa-email-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #64748b;
}

.sa-email-link {
    color: #fff;
    text-decoration: none;
}

.sa-email-link:hover {
    text-decoration: underline;
}

.sa-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.sa-dev-link {
    color: #64748b;
    text-decoration: none;
    border-bottom: 1px dashed #64748b;
}

.sa-dev-link:hover {
    color: var(--sa-accent);
    border-color: var(--sa-accent);
}

@media (max-width: 1024px) {
    .sa-footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .sa-map-overlay-container {
        position: relative;
        left: 0;
        transform: none;
        height: auto;
        padding: 20px;
        margin-top: -60px;
        pointer-events: auto;
    }

    .sa-glass-contact-card {
        max-width: 100%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .sa-map-section {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .sa-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sa-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}  
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;800&display=swap');

#sa-hero-section {
    --sa-bg-color: #f8fafc;
    --sa-primary: #0f172a; 
    --sa-accent: #2563eb; 
    --sa-accent-soft: rgba(37, 99, 235, 0.1);
    --sa-glass-card: rgba(255, 255, 255, 0.5);
    --sa-glass-border: rgba(255, 255, 255, 0.7);
    --sa-glass-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    
    font-family: 'Manrope', sans-serif;
    color: var(--sa-primary);
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    box-sizing: border-box;
    background: radial-gradient(circle at 10% 20%, #f1f5f9 0%, #ffffff 100%);
}

#sa-hero-section * { box-sizing: border-box; }

/* Скрытие стандартных элементов WP на этой странице */
body.page-id-296 .inner-wrap,
body.page-id-296 .entry-cover-image.cover_fixed_height { display: none !important; }

/* Декоративные пятна */
.sa-blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.6;
}
.blob-blue { top: -100px; right: -50px; width: 500px; height: 500px; background: #dbeafe; }
.blob-gray { bottom: -100px; left: -50px; width: 400px; height: 400px; background: #f1f5f9; }

.sa-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr; /* Сузили правую колонку */
    gap: 40px;
    align-items: center;
}

/* --- ЛЕВАЯ КОЛОНКА --- */
.sa-badge {
    display: inline-block;
    background: var(--sa-accent-soft);
    color: var(--sa-accent);
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.sa-main-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 0 0 25px 0;
    color: #0f172a;
    letter-spacing: -1.5px;
}

.sa-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 35px;
    max-width: 550px;
}

.sa-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.sa-tag-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--sa-glass-card);
    border: 1px solid var(--sa-glass-border);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* СТИЛЬ ТЕЛЕФОНА */
.sa-phone-highlight {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    animation: saPhonePulse 2.5s infinite;
}

@keyframes saPhonePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4); }
    100% { transform: scale(1); }
}

.sa-tag-dot { width: 6px; height: 6px; background: var(--sa-accent); border-radius: 50%; }

.sa-main-btn {
    background: var(--sa-primary);
    color: #fff;
    padding: 18px 45px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
}

.sa-main-btn:hover {
    background: var(--sa-accent);
    transform: translateY(-3px);
}

/* --- ПРАВАЯ КОЛОНКА (Мини-карточки) --- */
.sa-right-col {
    position: relative;
    height: 500px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.sa-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: scrollVertical 30s linear infinite;
}

.sa-card {
    background: var(--sa-glass-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--sa-glass-border);
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--sa-glass-shadow);
}

.sa-card-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.03);
}

.sa-card-content h3 {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: #1e293b;
}

.sa-card-content p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.3;
}

@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* --- Адаптив --- */
@media (max-width: 1024px) {
    .sa-container { grid-template-columns: 1fr; gap: 50px; }
    .sa-right-col { height: 350px; }
    .sa-main-title { font-size: 2.8rem; }
}
:root {
    --sg-bg: #ffffff;
    --sg-text: #0f172a;
    --sg-accent: #2563eb;
    --sg-muted: #64748b;
    --sg-glass: rgba(255, 255, 255, 0.7);
    --sg-border: rgba(255, 255, 255, 0.8);
    --sg-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
}

.sg-services-section {
    background-color: var(--sg-bg);
    padding: 100px 20px;
    font-family: 'Inter', 'Manrope', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sg-container {
    max-width: 1200px;
    width: 100%;
}

.sg-section-header {
    margin-bottom: 60px;
    text-align: left;
}

.sg-section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--sg-text);
    margin: 0;
}

.sg-section-title span {
    color: var(--sg-accent);
}

/* Сетка карточек */
.sg-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sg-service-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 450px;
    background: #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: var(--sg-shadow);
    border: 1px solid transparent;
}

/* Фоновое изображение */
.sg-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.sg-service-card:hover .sg-card-bg {
    transform: scale(1.1);
}

/* Стеклянная панель с контентом */
.sg-card-content {
    position: relative;
    z-index: 2;
    background: var(--sg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    margin: 20px;
    padding: 35px;
    border-radius: 30px;
    border: 1px solid var(--sg-border);
    transition: all 0.4s ease;
}

.sg-service-card:hover .sg-card-content {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.sg-service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sg-text);
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.sg-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sg-accent);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sg-card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.sg-service-card:hover .sg-card-link::after {
    transform: translateX(5px);
}

/* Адаптив */
@media (max-width: 900px) {
    .sg-services-grid {
        grid-template-columns: 1fr;
    }
    .sg-service-card {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .sg-section-title { font-size: 2.2rem; }
    .sg-card-content { padding: 25px; }
    .sg-service-card h3 { font-size: 1.5rem; }
}
:root {
    --sg-bg: #ffffff;
    --sg-text: #0f172a;
    --sg-accent: #2563eb;
    --sg-muted: #64748b;
    --sg-glass: rgba(255, 255, 255, 0.7);
    --sg-border: rgba(226, 232, 240, 0.8);
    --sg-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}

.sg-gas-section {
    background-color: #f8fafc; /* Легкий серый фон для контраста с белым Hero */
    padding: 100px 20px;
    font-family: 'Inter', 'Manrope', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sg-container {
    max-width: 1200px;
    width: 100%;
}

.sg-header-left {
    margin-bottom: 50px;
}

.sg-title-main {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--sg-text);
    margin: 0;
}

.sg-title-main span {
    color: var(--sg-accent);
}

/* Сетка газов */
.sg-gas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sg-gas-card {
    background: var(--sg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--sg-border);
    border-radius: 24px;
    padding: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    box-shadow: var(--sg-shadow);
}

.sg-gas-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: var(--sg-accent);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

/* Фоновая формула */
.sg-gas-symbol {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--sg-accent);
    opacity: 0.05;
    transition: all 0.4s ease;
}

.sg-gas-card:hover .sg-gas-symbol {
    opacity: 0.12;
    transform: scale(1.1) rotate(-5deg);
}

.sg-gas-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--sg-text);
    margin: 0 0 10px 0;
    line-height: 1.3;
    z-index: 2;
}

.sg-gas-formula-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sg-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.sg-gas-action {
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--sg-muted);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.sg-gas-card:hover .sg-gas-action {
    color: var(--sg-accent);
}

/* Адаптив */
@media (max-width: 1024px) {
    .sg-gas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .sg-gas-grid { grid-template-columns: 1fr; }
    .sg-gas-card { min-height: 160px; padding: 25px; }
    .sg-title-main { font-size: 2.2rem; }
}
:root {
    --sg-bg: #ffffff;
    --sg-text: #0f172a;
    --sg-accent: #2563eb;
    --sg-muted: #64748b;
    --sg-glass: rgba(255, 255, 255, 0.7);
    --sg-border: rgba(226, 232, 240, 0.8);
    --sg-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}

.sg-benefits-section {
    background-color: var(--sg-bg);
    padding: 100px 20px;
    font-family: 'Inter', 'Manrope', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sg-container {
    max-width: 1200px;
    width: 100%;
}

.sg-header-center {
    margin-bottom: 60px;
    text-align: left;
}

.sg-title-main {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--sg-text);
    margin: 0;
}

.sg-title-main span {
    color: var(--sg-accent);
}

/* Сетка преимуществ */
.sg-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sg-benefit-card {
    background: #f8fafc;
    border: 1px solid transparent;
    border-radius: 32px;
    padding: 35px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sg-benefit-card:hover {
    background: #ffffff;
    border-color: var(--sg-accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.sg-benefit-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.sg-benefit-card:hover .sg-benefit-icon {
    background: var(--sg-accent);
    color: #ffffff;
}

.sg-benefit-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--sg-text);
    line-height: 1.3;
}

.sg-benefit-text {
    font-size: 0.95rem;
    color: var(--sg-muted);
    line-height: 1.5;
    margin: 0;
}

/* Адаптив */
@media (max-width: 1100px) {
    .sg-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .sg-benefits-grid { grid-template-columns: 1fr; }
    .sg-title-main { font-size: 2.2rem; }
    .sg-benefit-card { padding: 30px; }
}
:root {
    --sg-dark-bg: #0f172a; /* Глубокий синий */
    --sg-accent: #3b82f6;  /* Голубой акцент */
    --sg-glass-white: rgba(255, 255, 255, 0.05);
    --sg-glass-border: rgba(255, 255, 255, 0.1);
}

.sg-how-we-work {
    background-color: var(--sg-dark-bg);
    padding: 100px 0;
    font-family: 'Inter', 'Manrope', sans-serif;
    color: #ffffff;
    width: 100%;
    overflow: hidden;
}

.sg-work-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовок секции */
.sg-work-header {
    margin-bottom: 60px;
}

.sg-work-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1.1;
}

.sg-work-title span {
    color: var(--sg-accent);
}

/* Сетка шагов */
.sg-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.sg-step-card {
    background: var(--sg-glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--sg-glass-border);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.sg-step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--sg-accent);
}

.sg-step-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--sg-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.sg-step-text {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Нижний блок: Компетентность и Контакты */
.sg-footer-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding-top: 60px;
    border-top: 1px solid var(--sg-glass-border);
}

.sg-competence-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.sg-comp-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sg-comp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.sg-comp-item i {
    color: var(--sg-accent);
    font-size: 1.2rem;
}

/* Контакты */
.sg-cta-dark {
    background: var(--sg-accent);
    padding: 40px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.sg-cta-dark h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.sg-phone-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sg-phone-link {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.sg-phone-link:hover {
    transform: scale(1.05);
}

/* Адаптив */
@media (max-width: 1024px) {
    .sg-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .sg-footer-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .sg-steps-grid { grid-template-columns: 1fr; }
    .sg-comp-list { grid-template-columns: 1fr; }
    .sg-work-title { font-size: 2rem; }
}
:root {
    --sg-bg: #ffffff;
    --sg-text: #0f172a;
    --sg-accent: #2563eb;
    --sg-muted: #64748b;
    --sg-tg: #229ED9;
    --sg-viber: #7360f2;
    --sg-border: #e2e8f0;
}

.sg-reviews-section {
    background-color: var(--sg-bg);
    padding: 100px 0;
    font-family: 'Inter', 'Manrope', sans-serif;
    color: var(--sg-text);
    width: 100%;
}

.sg-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sg-rev-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.sg-rev-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0;
}

.sg-rev-title span { color: var(--sg-accent); }

/* Кнопки "Оставить отзыв" */
.sg-leave-actions {
    display: flex;
    gap: 12px;
}

.sg-leave-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    transition: transform 0.3s ease;
}

.sg-leave-btn.tg { background: var(--sg-tg); }
.sg-leave-btn.vb { background: var(--sg-viber); }
.sg-leave-btn.em { background: var(--sg-text); }

.sg-leave-btn:hover { transform: translateY(-3px); }

/* Карусель */
.sg-carousel-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.sg-reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 20px 5px 40px 5px;
    scrollbar-width: none; /* Firefox */
}

.sg-reviews-carousel::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.sg-rev-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid var(--sg-border);
    border-radius: 32px;
    padding: 35px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease;
}

.sg-rev-card:hover { border-color: var(--sg-accent); }

.sg-rev-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sg-rev-avatar {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--sg-accent);
    font-size: 1.1rem;
}

.sg-rev-name {
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0;
}

.sg-rev-geo {
    font-size: 0.85rem;
    color: var(--sg-muted);
    margin: 2px 0 0 0;
}

.sg-rev-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 25px;
    flex-grow: 1;
}

.sg-rev-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.sg-rev-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 2px; }
.sg-rev-time { font-size: 0.85rem; color: var(--sg-muted); font-weight: 500; }

/* Кнопка Смотреть все */
.sg-view-all-wrap { text-align: center; }
.sg-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #f1f5f9;
    color: var(--sg-text);
    text-decoration: none;
    border-radius: 18px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.sg-view-all-btn:hover {
    background: var(--sg-text);
    color: #fff;
}

/* Адаптив */
@media (max-width: 850px) {
    .sg-rev-header { flex-direction: column; align-items: flex-start; }
    .sg-rev-card { flex: 0 0 85%; }
    .sg-leave-actions { width: 100%; overflow-x: auto; padding-bottom: 10px; }
}

:root {
    --sg-bg: #ffffff;
    --sg-text: #0f172a;
    --sg-accent: #2563eb;
    --sg-muted: #64748b;
    --sg-border: #e2e8f0;
}

.sg-seo-faq-section {
    background-color: var(--sg-bg);
    padding: 100px 0;
    font-family: 'Inter', 'Manrope', sans-serif;
    color: var(--sg-text);
    overflow: hidden;
}

.sg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SEO БЛОК */
.sg-seo-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.sg-seo-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    text-align: justify;
}

.sg-seo-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--sg-text);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.sg-seo-text p {
    margin-bottom: 20px;
}

/* ЛЕВИТИРУЮЩИЕ ФОТО */
.sg-photo-scene {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-levitate-img {
    position: absolute;
    border-radius: 30px;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.15);
    border: 8px solid #fff;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.img-1 {
    width: 320px;
    height: 400px;
    z-index: 2;
    left: 0;
    animation: sgFloat1 6s ease-in-out infinite;
}

.img-2 {
    width: 300px;
    height: 350px;
    z-index: 1;
    right: 0;
    top: 50px;
    animation: sgFloat2 8s ease-in-out infinite;
}

@keyframes sgFloat1 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-25px) rotate(-1deg); }
}

@keyframes sgFloat2 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(30px) rotate(2deg); }
}

/* FAQ АККОРДЕОН */
.sg-faq-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.sg-faq-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
}

.sg-faq-item {
    background: #f8fafc;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sg-faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    user-select: none;
}

.sg-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b;
    line-height: 1.6;
}

.sg-faq-item.active {
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--sg-accent);
}

.sg-faq-item.active .sg-faq-answer {
    padding-bottom: 25px;
    max-height: 300px;
}

.sg-faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.sg-faq-icon::before, .sg-faq-icon::after {
    content: '';
    position: absolute;
    background: var(--sg-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sg-faq-icon::before { width: 14px; height: 2px; }
.sg-faq-icon::after { width: 2px; height: 14px; transition: opacity 0.3s; }

.sg-faq-item.active .sg-faq-icon { transform: rotate(180deg); }
.sg-faq-item.active .sg-faq-icon::after { opacity: 0; }

/* Адаптив */
@media (max-width: 1024px) {
    .sg-seo-grid { grid-template-columns: 1fr; }
    .sg-photo-scene { height: 450px; margin-top: 40px; }
    .img-1 { width: 250px; height: 320px; }
    .img-2 { width: 220px; height: 280px; }
}

@media (max-width: 600px) {
    .sg-levitate-img { border-width: 4px; border-radius: 20px; }
    .img-1 { width: 180px; height: 240px; }
    .img-2 { width: 160px; height: 200px; top: 100px; }
    .sg-seo-text h2 { font-size: 1.8rem; }
    .sg-faq-question { padding: 20px; font-size: 1rem; }
}

/* === Neovision main footer === */
.main-footer {
    background-color: #050505;
    color: #ffffff;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 242, 255, 0.1);
    font-family: 'Inter', sans-serif;
}

.footer-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 25px;
    filter: brightness(1.2);
}

.footer-text {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #00f2ff;
    transform: translateX(5px);
}

.footer-contacts .contact-link {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #00f2ff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-contacts .address {
    color: #888;
    font-size: 14px;
    margin: 15px 0 25px;
}

.footer-form {
    margin-top: 20px;
}

.input-group {
    display: flex;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 50px;
    transition: 0.3s;
}

.input-group:focus-within {
    border-color: #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.input-group input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 20px;
    flex: 1;
    outline: none;
    font-size: 14px;
}

.input-group button {
    background: #00f2ff;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.input-group button:hover {
    background: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 13px;
}

.social-icon {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.social-icon:hover {
    color: #00f2ff;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

        .hero-lightboxes {
            position: relative;
            background: #050505;
            min-height: 60vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            color: #ffffff;
            padding: 80px 20px;
        }

        /* Фоновое свечение */
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 80% 20%, rgba(0, 242, 255, 0.15) 0%, transparent 40%),
                        radial-gradient(circle at 20% 80%, rgba(0, 242, 255, 0.05) 0%, transparent 40%);
            z-index: 1;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        /* Текст */
        .hero-subtitle {
            text-transform: uppercase;
            letter-spacing: 4px;
            font-size: 14px;
            color: #00f2ff;
            font-weight: 700;
            display: block;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 900;
            line-height: 1.1;
            margin: 0 0 30px 0;
        }

        .accent-text {
            color: #00f2ff;
            text-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
        }

        /* Телефон с анимацией */
        .hero-phone-wrapper {
            margin-bottom: 40px;
        }

        .hero-phone {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            animation: phoneGlow 3s infinite alternate;
        }

        @keyframes phoneGlow {
            0% { text-shadow: 0 0 5px rgba(255,255,255,0.2); transform: scale(1); }
            100% { text-shadow: 0 0 20px rgba(0, 242, 255, 0.8); transform: scale(1.02); }
        }

        .hero-subtext {
            color: #888;
            font-size: 16px;
            margin-top: 10px;
        }

        /* Кнопка */
        .hero-btn {
            background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
            border: none;
            padding: 20px 40px;
            color: #fff;
            font-weight: 900;
            font-size: 16px;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 60px;
        }

        .hero-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 210, 255, 0.6);
            letter-spacing: 1px;
        }

        /* Преимущества снизу */
        .hero-features {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-icon {
            color: #00f2ff;
            font-size: 18px;
        }

        .feature-text {
            font-size: 14px;
            color: #ccc;
        }

        /* Правая часть: анимация плашек */
        .hero-visual {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .floating-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 30px;
            border-radius: 15px;
            font-weight: 700;
            position: absolute;
            white-space: nowrap;
            animation: float 6s infinite ease-in-out;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        .card-1 { top: 10%; right: 10%; border-left: 4px solid #00f2ff; animation-delay: 0s; }
        .card-2 { top: 40%; right: -5%; border-left: 4px solid #fff; animation-delay: 2s; }
        .card-3 { bottom: 20%; right: 15%; border-left: 4px solid #00f2ff; animation-delay: 4s; }

        .glow-sphere {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 242, 255, 0.2) 0%, transparent 70%);
            filter: blur(40px);
            z-index: -1;
        }

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

        /* Адаптивность */
        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-visual {
                height: 300px;
                order: -1;
            }
            .floating-card {
                position: relative;
                margin: 10px;
                top: auto !important;
                right: auto !important;
                bottom: auto !important;
                display: inline-block;
            }
            .hero-features {
                justify-content: center;
            }
            .hero-phone {
                font-size: 28px;
            }
        }
 .portfolio-section {
            background: #ffffff;
            padding-bottom: 100px;
            position: relative;
            font-family: 'Inter', sans-serif;
            overflow: hidden;
        }

        /* Исправленная волна: убираем щели */
        .wave-container {
            width: 100%;
            line-height: 0;
            margin-top: -2px; /* Накладываем на предыдущий блок */
            position: relative;
            z-index: 10;
        }

        .wave-container svg {
            width: 100%;
            height: auto;
        }

        .portfolio-content {
            padding-top: 50px;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .portfolio-tag {
            background: #f0faff;
            color: #3a7bd5;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .portfolio-title {
            font-size: 48px;
            font-weight: 900;
            margin-top: 20px;
            color: #111;
        }

        .accent-blue { color: #3a7bd5; }

        /* Стили карусели */
        .swiper {
            width: 100%;
            padding: 50px 0 80px 0 !important;
        }

        .swiper-slide {
            width: 500px; /* Ширина одного слайда */
            transition: all 0.5s ease;
            filter: grayscale(100%);
            opacity: 0.4;
            transform: scale(0.85);
        }

        .swiper-slide-active {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
            z-index: 2;
        }

        .slide-card {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            cursor: pointer;
        }

        .slide-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(58, 123, 213, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.3s;
        }

        .plus-icon {
            font-style: normal;
            font-size: 40px;
            color: white;
            width: 60px;
            height: 60px;
            border: 2px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .swiper-slide:hover .slide-overlay { opacity: 1; }

        /* Навигация */
        .swiper-button-next, .swiper-button-prev {
            color: #111 !important;
            background: #fff;
            width: 60px !important;
            height: 60px !important;
            border-radius: 50%;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .swiper-button-next::after, .swiper-button-prev::after { font-size: 20px !important; font-weight: bold; }

        .swiper-pagination-bullet-active { background: #3a7bd5 !important; }

        /* Лайтбокс */
        .lightbox-modal {
            display: none;
            position: fixed;
            z-index: 99999;
            padding-top: 50px;
            left: 0; top: 0; width: 100%; height: 100%;
            background-color: rgba(0,0,0,0.95);
            backdrop-filter: blur(10px);
        }
        .lightbox-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 85vh;
            border-radius: 15px;
            animation: zoom 0.3s ease;
        }
        .close-lightbox {
            position: absolute;
            top: 20px; right: 35px;
            color: #fff;
            font-size: 50px;
            cursor: pointer;
        }

        @keyframes zoom { from {transform:scale(0.9); opacity:0} to {transform:scale(1); opacity:1} }

        @media (max-width: 768px) {
            .swiper-slide { width: 85%; }
            .portfolio-title { font-size: 32px; }
            .slide-card { height: 300px; }
        }
.cta-dark-section {
        background-color: #050505;
        padding: 120px 0;
        position: relative;
        overflow: hidden;
        font-family: 'Inter', sans-serif;
    }

    .cta-bg-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
        filter: blur(80px);
        pointer-events: none;
        z-index: 1;
    }

    .site-container-1400 {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        z-index: 2;
    }

    /* Стеклянная карточка */
    .cta-glass-card {
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 60px;
        padding: 80px;
        box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    }

    .cta-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    /* Текст */
    .cta-tag {
        color: #00f2ff;
        text-transform: uppercase;
        letter-spacing: 4px;
        font-weight: 700;
        font-size: 13px;
        display: block;
        margin-bottom: 20px;
    }

    .cta-title {
        font-size: 56px;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 30px;
    }

    .cta-desc {
        font-size: 18px;
        color: #888;
        line-height: 1.7;
        margin-bottom: 40px;
    }

    .cta-features {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .cta-f-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        font-weight: 600;
        color: #eee;
    }

    .f-dot {
        width: 8px;
        height: 8px;
        background: #00f2ff;
        border-radius: 50%;
        box-shadow: 0 0 10px #00f2ff;
    }

    /* Форма */
    .main-cta-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .input-wrap input, 
    .input-wrap textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 25px;
        border-radius: 20px;
        color: #fff;
        font-family: inherit;
        font-size: 16px;
        outline: none;
        transition: 0.3s;
    }

    .input-wrap textarea {
        height: 120px;
        resize: none;
    }

    .input-wrap input:focus, 
    .input-wrap textarea:focus {
        border-color: #00f2ff;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
    }

    .cta-submit {
        background: #00f2ff;
        color: #000;
        border: none;
        padding: 22px;
        border-radius: 20px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .cta-submit:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 242, 255, 0.4);
        background: #fff;
    }

    .btn-icon {
        font-size: 20px;
        transition: 0.3s;
    }

    .cta-submit:hover .btn-icon {
        transform: translateX(5px);
    }

    .form-privacy {
        font-size: 12px;
        color: #444;
        text-align: center;
        margin-top: 10px;
    }

    /* Адаптивность */
    @media (max-width: 1100px) {
        .cta-glass-card { padding: 40px; border-radius: 40px; }
        .cta-grid { grid-template-columns: 1fr; gap: 50px; }
        .cta-title { font-size: 40px; }
    }

    @media (max-width: 768px) {
        .cta-dark-section { padding: 60px 0; }
        .site-container-1400 { padding: 0 20px; }
    }
 /* Волновые разделители */
    .wave-top, .wave-bottom {
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .wave-top { background-color: #ffffff; }
    .wave-bottom { background-color: #050505; }

    .wave-top svg, .wave-bottom svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);display: none;
        height: 100px;
    }

    .wave-top .shape-fill { fill: #050505; }
    .wave-bottom .shape-fill { fill: #ffffff; }

    /* Секция контента */
    .steps-light-section {
        background-color: #ffffff;
        padding: 40px 0 80px;
        font-family: 'Inter', sans-serif;
        color: #1a1a1a;
    }

    .site-container-1400 {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .steps-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .steps-tag {
        color: #00b4d8;
        text-transform: uppercase;
        letter-spacing: 4px;
        font-weight: 800;
        font-size: 13px;
        display: block;
        margin-bottom: 15px;
    }

    .steps-title {
        font-size: 48px;
        font-weight: 900;
        line-height: 1.1;
        color: #050505;
    }

    /* Сетка этапов */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .step-card {
        position: relative;
        background: #f8f9fa;
        padding: 50px 30px;
        border-radius: 30px;
        border: 1px solid #eee;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
        z-index: 1;
    }

    .step-num-bg {
        position: absolute;
        top: -20px;
        right: -10px;
        font-size: 120px;
        font-weight: 900;
        color: rgba(0, 0, 0, 0.03);
        line-height: 1;
        z-index: -1;
        transition: 0.4s;
    }

    .step-icon {
        font-size: 40px;
        margin-bottom: 25px;
        display: block;
    }

    .step-card h3 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 15px;
        color: #1a1a1a;
        transition: 0.3s;
    }

    .step-card p {
        font-size: 15px;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

    /* Эффект свечения как у лайтбокса */
    .step-glow {
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
        background: #00f2ff;
        filter: blur(60px);
        opacity: 0;
        transition: 0.5s;
        pointer-events: none;
    }

    .step-card:hover {
        transform: translateY(-15px);
        background: #fff;
        border-color: #00f2ff;
        box-shadow: 0 20px 40px rgba(0, 242, 255, 0.1);
    }

    .step-card:hover .step-num-bg {
        color: rgba(0, 242, 255, 0.1);
        transform: scale(1.1);
    }

    .step-card:hover h3 {
        color: #00b4d8;
    }

    .step-card:hover .step-glow {
        opacity: 0.4;
        bottom: -20px;
    }

    /* Адаптивность */
    @media (max-width: 1200px) {
        .steps-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
        .steps-grid { grid-template-columns: 1fr; }
        .steps-title { font-size: 32px; }
        .site-container-1400 { padding: 0 25px; }
    }
 .reviews-white-section {
        background-color: #ffffff;
        color: #1a1a1a;
        padding: 100px 0;
        font-family: 'Inter', sans-serif;
    }

    .site-container-1400 {
        max-width: 1400px;
        margin: 0 auto;

    }

    /* SEO Блок */
    .seo-block {
        margin-bottom: 100px;
        padding-bottom: 60px;
        border-bottom: 1px solid #f0f0f0;
    }

    .seo-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 60px;
        align-items: start;
    }

    .seo-badge {
        color: #00b4d8;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 800;
        font-size: 13px;
        display: block;
        margin-bottom: 15px;
    }

    .seo-h2 {
        font-size: 36px;
        font-weight: 900;
        line-height: 1.2;
        color: #050505;
    }

    .seo-text-content p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }

    .seo-text-content strong { color: #1a1a1a; }

    /* Отзывы */
    .reviews-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
    }

    .reviews-h3 { font-size: 32px; font-weight: 800; }
    .stars { color: #ffc107; font-size: 20px; letter-spacing: 2px; }
    .rating-summary span { color: #888; font-size: 14px; margin-top: 5px; display: block; }

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 80px;
    }

    .review-item {
        background: #fcfcfc;
        padding: 40px;
        border-radius: 30px;
        border: 1px solid #f0f0f0;
        transition: 0.3s;
    }

    .review-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        border-color: #00f2ff;
    }

    .r-top {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .r-avatar {
        width: 50px;
        height: 50px;
        background: #00f2ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        color: #000;
    }

    .av-purple { background: #7b2cbf; color: #fff; }
    .av-cyan { background: #00b4d8; color: #fff; }

    .r-name { display: block; font-weight: 700; color: #1a1a1a; }
    .r-date { font-size: 13px; color: #888; }

    .r-text {
        font-size: 15px;
        line-height: 1.7;
        color: #444;
        margin-bottom: 25px;
        font-style: italic;
    }

    .r-stars { color: #ffc107; font-size: 14px; }

    /* Блок "Оставить отзыв" */
    .leave-review-box {
        background: #050505;
        color: #fff;
        padding: 60px;
        border-radius: 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .leave-review-box h4 { font-size: 28px; font-weight: 800; margin-bottom: 15px; }
    .leave-review-box p { color: #888; margin-bottom: 40px; }

    .lr-social-btns {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .lr-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        color: #fff;
        font-weight: 700;
        transition: 0.3s;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .lr-icon {
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
    }

    .lr-btn.telegram:hover { background: #0088cc; border-color: #0088cc; }
    .lr-btn.viber:hover { background: #732f91; border-color: #732f91; }
    .lr-btn.email:hover { background: #fff; color: #000; }

    @media (max-width: 1024px) {
        .seo-grid, .reviews-grid { grid-template-columns: 1fr; }
        .reviews-header { flex-direction: column; align-items: flex-start; gap: 20px; }
        .leave-review-box { padding: 40px 20px; }
    }
.faq-section {
            background: #050505;
            padding-bottom: 120px;
            position: relative;
            font-family: 'Inter', sans-serif;
            color: #fff;
            overflow: hidden;
        }

        .wave-top {
            width: 100%;
            line-height: 0;
            margin-bottom: 80px;display: none;
        }

        .wave-top svg {
            width: 100%;
            height: 80px;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;padding-top: 50px;
    padding-bottom: 60px;
            z-index: 2;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-subtitle {
            color: #00f2ff;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 13px;
            font-weight: 700;
        }

        .faq-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 900;
            margin-top: 15px;
        }

        .neon-text {
            color: #00f2ff;
            text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
        }

        /* Список вопросов */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item:hover {
            border-color: rgba(0, 242, 255, 0.4);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 242, 255, 0.05);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: 700;
            user-select: none;
        }

        /* Иконка Плюс/Минус */
        .faq-icon {
            width: 30px;
            height: 30px;
            position: relative;
            flex-shrink: 0;
            margin-left: 20px;
        }

        .faq-icon::before, .faq-icon::after {
            content: '';
            position: absolute;
            background: #00f2ff;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        /* Горизонтальная линия */
        .faq-icon::before { width: 18px; height: 2px; }
        /* Вертикальная линия */
        .faq-icon::after { width: 2px; height: 18px; }

        /* Состояние когда открыто */
        .faq-item.active {
            border-color: #00f2ff;
            background: rgba(0, 242, 255, 0.02);
        }

        .faq-item.active .faq-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }

        /* Анимация ответа */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: #aaa;
            line-height: 1.7;
        }

        .faq-answer-content {
            padding: 0 30px 30px 30px;
            font-size: 16px;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .faq-item.active .faq-answer-content {
            transform: translateY(0);
            opacity: 1;
        }

        @media (max-width: 768px) {
            .faq-question { font-size: 16px; padding: 20px; }
            .faq-answer-content { padding: 0 20px 20px 20px; }
        }
 .cta-light-section {
            background: #ffffff;
            padding: 0 20px 10px 20px;
            position: relative;
        }

        /* Волна для перехода */
        .wave-transition {
            width: 100%;
            line-height: 0;
            margin-top: -100px; /* Чтобы волна "наползала" на темный FAQ */
            margin-bottom: 50px;display: none;
        }

        .wave-transition svg {
            width: 100%;
            height: 100px;
        }

        .cta-light-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8f9fb;
            padding: 40px 60px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.05);
        }

        .cta-light-title {
            font-size: 32px;
            font-weight: 900;
            color: #111;
            margin: 0 0 10px 0;
        }

        .cta-light-desc {
            font-size: 16px;
            color: #666;
            margin: 0;
            max-width: 450px;
        }

        /* Стили телефона */
        .phone-box {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .phone-icon-animate {
            width: 60px;
            height: 60px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(58, 123, 213, 0.15);
            animation: phoneShake 2s infinite ease-in-out;
        }

        .phone-icon-animate svg {
            width: 30px;
            height: 30px;
        }

        .phone-link {
            font-size: 28px;
            font-weight: 800;
            color: #111;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
        }

        .phone-link:hover {
            color: #3a7bd5;
        }

        .phone-label {
            font-size: 12px;
            color: #3a7bd5;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
        }

        /* Анимация вибрации трубки */
        @keyframes phoneShake {
            0%, 100% { transform: rotate(0); }
            10%, 30%, 50% { transform: rotate(-10deg); }
            20%, 40%, 60% { transform: rotate(10deg); }
            70% { transform: rotate(0); }
        }

        /* Адаптивность */
        @media (max-width: 992px) {
            .cta-light-container {
                flex-direction: column;
                text-align: center;
                padding: 40px 20px;
                gap: 30px;
            }
            .phone-box {
                flex-direction: column;
                gap: 10px;
            }
            .cta-light-title {
                font-size: 26px;
            }
            .phone-link {
                font-size: 24px;
            }
        }
   .lb-portfolio-wrapper {
            background: #ffffff;
            padding-bottom: 100px;
            position: relative;
            font-family: 'Inter', sans-serif;
            overflow: hidden;
        }

        .lb-wave-divider {
            width: 100%;
            line-height: 0;
            margin-top: -2px;
            position: relative;
            z-index: 10;
        }

        .lb-wave-divider svg { width: 100%; height: auto; }

        .lb-portfolio-inner { padding-top: 50px; }

        .lb-header-block { text-align: center; margin-bottom: 50px; }

        .lb-tag-info {
            background: #f0faff;
            color: #3a7bd5;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .lb-section-title {
            font-size: 48px;
            font-weight: 900;
            margin-top: 20px;
            color: #111;
        }

        .lb-accent-color { color: #3a7bd5; }

        /* Карусель */
        .lb-main-slider {
            width: 100%;
            padding: 50px 0 80px 0 !important;
        }

        .lb-slide-item {
            width: 500px;
            transition: all 0.5s ease;
            filter: grayscale(100%);
            opacity: 0.4;
            transform: scale(0.85);
        }

        .lb-portfolio-wrapper .swiper-slide-active {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
            z-index: 2;
        }

        .lb-work-card {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            cursor: pointer;
        }

        .lb-work-card img { width: 100%; height: 100%; object-fit: cover; }

        .lb-card-mask {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(58, 123, 213, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.3s;
        }

        .lb-icon-plus {
            font-style: normal; font-size: 40px; color: white;
            width: 60px; height: 60px; border: 2px solid white;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
        }

        .lb-slide-item:hover .lb-card-mask { opacity: 1; }

        /* Кнопки навигации */
        .lb-next, .lb-prev {
            color: #111 !important;
            background: #fff;
            width: 60px !important;
            height: 60px !important;
            border-radius: 50%;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .lb-next::after, .lb-prev::after { font-size: 20px !important; }

        .lb-portfolio-wrapper .swiper-pagination-bullet-active { background: #3a7bd5 !important; }

        /* Лайтбокс */
        .lb-modal-overlay {
            display: none;
            position: fixed;
            z-index: 999999;
            padding-top: 50px;
            left: 0; top: 0; width: 100%; height: 100%;
            background-color: rgba(0,0,0,0.95);
            backdrop-filter: blur(10px);
        }
        .lb-modal-img {
            margin: auto; display: block;
            max-width: 90%; max-height: 85vh;
            border-radius: 15px;
            animation: lb-zoom 0.3s ease;
        }
        .lb-modal-close {
            position: absolute; top: 20px; right: 35px;
            color: #fff; font-size: 50px; cursor: pointer;
        }

        @keyframes lb-zoom { from {transform:scale(0.9); opacity:0} to {transform:scale(1); opacity:1} }

        @media (max-width: 768px) {
            .lb-slide-item { width: 85%; }
            .lb-section-title { font-size: 32px; }
            .lb-work-card { height: 300px; }
        }
  /* Специфичные селекторы для защиты от влияния темы */
        .lb-portfolio-wrapper {
            background: #ffffff !important;
            padding-bottom: 80px !important;
            position: relative !important;
            font-family: 'Inter', sans-serif !important;
            overflow: hidden !important;
            width: 100% !important;
            display: block !important;
        }

        .lb-portfolio-wrapper .lb-wave-divider {
            width: 100% !important;
            line-height: 0 !important;
            margin-top: -2px !important; /* Убирает щель сверху */
            position: relative !important;
            z-index: 10 !important;
        }

        .lb-portfolio-wrapper .lb-wave-divider svg {
            width: 100% !important;
            height: auto !important;
            display: block !important;
        }

        .lb-portfolio-wrapper .lb-portfolio-inner {
            padding-top: 40px !important;
        }

        .lb-portfolio-wrapper .lb-header-block {
            text-align: center !important;
            margin-bottom: 40px !important;
        }

        .lb-portfolio-wrapper .lb-tag-info {
            background: #f0faff !important;
            color: #3a7bd5 !important;
            padding: 6px 18px !important;
            border-radius: 50px !important;
            font-size: 13px !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            display: inline-block !important;
        }

        .lb-portfolio-wrapper .lb-section-title {
            font-size: clamp(30px, 5vw, 48px) !important;
            font-weight: 900 !important;
            margin: 20px 0 0 0 !important;
            color: #111 !important;
            line-height: 1.2 !important;
        }

        .lb-portfolio-wrapper .lb-accent-color {
            color: #3a7bd5 !important;
        }

        /* Настройки карусели */
        .lb-portfolio-wrapper .lb-main-slider {
            width: 100% !important;
            padding: 40px 0 80px 0 !important;
            overflow: visible !important; /* Чтобы боковые слайды были видны */
        }

        .lb-portfolio-wrapper .lb-slide-item {
            width: 500px !important; /* Ширина слайда для десктопа */
            height: auto !important;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
            filter: grayscale(100%) !important;
            opacity: 0.3 !important;
            transform: scale(0.8) !important;
            cursor: pointer !important;
        }

        .lb-portfolio-wrapper .swiper-slide-active {
            filter: grayscale(0%) !important;
            opacity: 1 !important;
            transform: scale(1.05) !important;
            z-index: 5 !important;
        }

        .lb-portfolio-wrapper .lb-work-card {
            position: relative !important;
            border-radius: 30px !important;
            overflow: hidden !important;
            height: 420px !important;
            width: 100% !important;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
            background: #eee !important;
        }

        .lb-portfolio-wrapper .lb-work-card img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            display: block !important;
            transition: transform 0.5s ease !important;
        }

        .lb-portfolio-wrapper .lb-slide-item:hover img {
            transform: scale(1.05) !important;
        }

        /* Оверлей при наведении */
        .lb-portfolio-wrapper .lb-card-mask {
            position: absolute !important;
            top: 0 !important; left: 0 !important; 
            width: 100% !important; height: 100% !important;
            background: rgba(58, 123, 213, 0.45) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            opacity: 0 !important;
            transition: opacity 0.3s ease !important;
        }

        .lb-portfolio-wrapper .lb-icon-plus {
            font-style: normal !important;
            font-size: 36px !important;
            color: #fff !important;
            width: 64px !important;
            height: 64px !important;
            border: 2px solid #fff !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .lb-portfolio-wrapper .lb-slide-item:hover .lb-card-mask {
            opacity: 1 !important;
        }

        /* Кнопки навигации */
        .lb-portfolio-wrapper .lb-next, 
        .lb-portfolio-wrapper .lb-prev {
            color: #111 !important;
            background: #fff !important;
            width: 56px !important;
            height: 56px !important;
            border-radius: 50% !important;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
            top: 50% !important;
            margin-top: -28px !important;
        }

        .lb-portfolio-wrapper .lb-next::after, 
        .lb-portfolio-wrapper .lb-prev::after {
            font-size: 18px !important;
            font-weight: 900 !important;
        }

        .lb-portfolio-wrapper .lb-dots .swiper-pagination-bullet-active {
            background: #3a7bd5 !important;
            width: 24px !important;
            border-radius: 5px !important;
        }

        /* Лайтбокс */
        .lb-modal-overlay {
            display: none;
            position: fixed !important;
            z-index: 999999 !important;
            padding: 40px 20px !important;
            left: 0 !important; top: 0 !important; 
            width: 100% !important; height: 100% !important;
            background-color: rgba(0,0,0,0.92) !important;
            backdrop-filter: blur(8px) !important;
            -webkit-backdrop-filter: blur(8px) !important;
            cursor: zoom-out !important;
        }

        .lb-modal-img {
            margin: auto !important;
            display: block !important;
            max-width: 95% !important;
            max-height: 90vh !important;
            border-radius: 12px !important;
            box-shadow: 0 0 50px rgba(0,0,0,0.5) !important;
            animation: lb-zoom-anim 0.3s ease !important;
        }

        .lb-modal-close {
            position: absolute !important;
            top: 25px !important; right: 35px !important;
            color: #fff !important;
            font-size: 50px !important;
            font-weight: 300 !important;
            cursor: pointer !important;
        }

        @keyframes lb-zoom-anim {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        /* Мобильная адаптация */
        @media (max-width: 768px) {
            .lb-portfolio-wrapper .lb-slide-item {
                width: 290px !important;
            }
            .lb-portfolio-wrapper .lb-work-card {
                height: 320px !important;
                border-radius: 20px !important;
            }
            .lb-portfolio-wrapper .lb-next, 
            .lb-portfolio-wrapper .lb-prev {
                display: none !important; /* Прячем стрелки на мобилках */
            }
        }