/* ====================================================
   CLEARVIEW — стили (чёрно-салатовая палитра)
   Явно использованы CSS-переменные в начале, чтобы
   легко корректировать палитру.
   ==================================================== */

/* --- Цветовые переменные --- */
:root{
  --bg-dark: #000000;         /* основной чёрный фон */
  --panel-dark: #0f0f0f;      /* чуть светлее для панелей */
  --muted-dark: #111111;
  --accent: #7CFC00;          /* салатовый (LawnGreen) — основной акцент */
  --accent-dark: #58c200;     /* темный оттенок акцента для hover */
  --text-main: #dfffd6;       /* светло-салатовый для текста */
  --text-strong: #ffffff;     /* ярко-белый для заголовков/контраста */
  --muted: #9aa48b;           /* приглушённый салатовый для вспом. текста */
  --border: rgba(124,252,0,0.15);
  --shadow: rgba(0,0,0,0.5);
}

/* Общие стили */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: monospace;
  background-color: var(--bg-dark);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Навбар */
.navbar {
  background-color: var(--bg-dark);
  border-bottom: 1px solid rgba(124,252,0,0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--text-strong);
  margin-left: 0;
}

.logo img {
  width: 60px;
  height: auto;
  display: block;
}

/* Меню */
.nav-menu {
  margin-left: auto;
}

.nav-menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu ul li a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 15px;
  transition: color .2s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a:focus {
  color: var(--accent);
}

/* Кнопка контакта (если используется) */
.contact-btn {
  margin-left: 30px;
}

.contact-btn a {
  border: 1px solid var(--accent);
  padding: 10px 20px;
  text-decoration: none;
  color: var(--accent);
  font-weight: bold;
  transition: all 0.2s ease;
  background: transparent;
}

.contact-btn a:hover {
  background-color: var(--accent);
  color: var(--bg-dark);
}

/* Секции */
section {
  padding: 60px 0;
  background-color: transparent; /* сделаем фон секций прозрачным по умолчанию, внутри контролируем */
}

/* Для читаемости — дам нейтральные панели внутри секций */
section .container > * {
  color: var(--text-main);
}

/* Подвал */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-main);
  padding: 60px 0 20px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid rgba(124,252,0,0.08);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.footer-top h2 {
  font-size: 36px;
  max-width: 50%;
  color: var(--text-strong);
}

.newsletter {
  max-width: 400px;
}

.newsletter p {
  margin-bottom: 10px;
  color: var(--text-main);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 10px;
  flex: 1;
  background-color: transparent;
  border: 1px solid rgba(124,252,0,0.18);
  color: var(--text-main);
  min-width: 180px;
}

.newsletter-form button {
  padding: 10px 20px;
  border: 1px solid rgba(124,252,0,0.18);
  background-color: var(--accent);
  color: var(--bg-dark);
  cursor: pointer;
}

/* Footer columns */
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col h4 {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 10px;
}

.footer-col p {
  margin: 5px 0;
  color: var(--text-main);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: var(--muted);
}

/* Titles */
.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-strong);
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 5px;
}

/* Сетка услуг */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Карточки услуг */
.service-card {
  background: linear-gradient(180deg, var(--panel-dark), rgba(16,16,16,0.95));
  border: 2px solid rgba(124,252,0,0.12);
  border-radius: 12px;
  padding: 20px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.service-card:hover {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transform: translateY(-6px);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-strong);
}

.service-card p {
  font-size: 14px;
  color: var(--text-main);
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  align-items: stretch;
  justify-items: center;
}

.team-member {
  background: linear-gradient(180deg,#121212,#0f0f0f);
  border: 2px solid rgba(124,252,0,0.12);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  width: 100%;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.7);
}

.team-member img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.team-member .info {
  padding: 20px 15px;
  text-align: center;
  flex-grow: 1;
}

.team-member h3 {
  font-size: 20px;
  margin: 10px 0 5px;
  color: var(--text-strong);
  font-weight: bold;
}

.team-member p {
  font-size: 16px;
  color: var(--muted);
}

/* Responsive team */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Stats / Values */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.stat-box, .value-card {
  background: linear-gradient(145deg,#131313,#0f0f0f);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid rgba(124,252,0,0.08);
}

.stat-box:hover, .value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.stat-box .icon, .value-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--accent);
}

.stat-box strong {
  font-size: 22px;
  color: var(--text-strong);
}

.stat-box p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-strong);
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
}

/* Subtitles */
.section-subtitle {
  font-size: 22px;
  color: var(--text-strong);
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}

/* About text */
.about-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.6;
}

/* FAQ layout */
.faq-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.faq-image {
  flex: 1;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.faq-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-items details {
  background: linear-gradient(180deg,#121212,#0f0f0f);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(124,252,0,0.06);
}

.faq-items details summary {
  font-size: 18px;
  font-weight: bold;
  list-style: none;
  position: relative;
  color: var(--text-strong);
}

.faq-items details[open] {
  background-color: rgba(124,252,0,0.04);
}

.faq-items details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-items details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

/* Contact */
.contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.contact-box {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-box img {
  width: 40px;
  height: 40px;
}

.contact-box p {
  margin: 0;
  font-size: 14px;
  color: var(--text-main);
}

.contact-main {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: stretch;
  margin-top: 40px;
}

.contact-photo, .contact-form {
  flex: 1;
  background: linear-gradient(180deg,#121212,#0f0f0f);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
  border: 1px solid rgba(124,252,0,0.06);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Поля формы */
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid rgba(124,252,0,0.14);
  border-radius: 6px;
  font-size: 16px;
  background-color: #0b0b0b;
  color: var(--text-main);
}

.contact-form button {
  width: 100%;
  background-color: var(--accent);
  color: var(--bg-dark);
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form button:hover {
  background-color: var(--accent-dark);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .contact-main {
    flex-direction: column;
  }
}

/* Reviews/Testimonials */
.review-card p {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--text-main);
}

.review-card strong {
  display: block;
  color: var(--text-strong);
}

/* Nav wrapper / burger */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.mobile-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--accent);
  margin-left: 10px;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
  }

  .nav-menu.active {
    display: block;
    margin-top: 10px;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .nav-menu ul li {
    padding: 5px 0;
  }

  .navbar-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

/* CTA block */
.cta-section {
  background: linear-gradient(180deg,var(--panel-dark),#080808);
  padding: 60px 20px;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1 1 500px;
}

.cta-text h1 {
  font-size: 32px;
  color: var(--text-strong);
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-text p {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--accent);
  color: var(--bg-dark);
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background-color 0.15s ease;
}

.cta-button:hover {
  background-color: var(--accent-dark);
}

.cta-list {
  list-style: none;
  padding: 0;
  color: var(--text-main);
  font-size: 15px;
}

.cta-list li {
  margin-bottom: 8px;
}

.cta-image {
  flex: 1 1 500px;
  text-align: center;
}

.cta-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* Smaller screens for CTA */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-text h1 {
    font-size: 26px;
  }

  .cta-button {
    width: 100%;
  }
}

/* Headings style */
.section-title,
.section-subtitle {
  text-align: center;
  color: var(--text-strong);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 26px;
  position: relative;
}

.section-subtitle::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 10px auto 0;
  border-radius: 3px;
}

/* about text adjustments */
.about-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.6;
}

/* reviews / modern testimonials */
#testimonials {
  background: linear-gradient(135deg,#0e0e0e, #121212);
  padding: 80px 20px;
}

.reviews-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
}

.review-card {
  flex: 0 0 100%;
  background: linear-gradient(180deg,#111,#0d0d0d);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.7);
  padding: 30px;
  opacity: 0;
  transform: scale(0.98);
  transition: all 0.5s ease;
  color: var(--text-main);
}

.review-card.active {
  opacity: 1;
  transform: scale(1);
}
.review-card:not(.active) {
  display: none;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--accent);
}

.review-info h4 {
  margin: 0;
  font-size: 18px;
  color: var(--text-strong);
}

.review-info p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.review-text {
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
}

.review-nav {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.review-nav button {
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.review-nav button:hover {
  background: var(--accent-dark);
}

/* tiny tweaks */
/* Стиль для кругляшков */
.icon {
  width: 40px;                /* Размер круга */
  height: 40px;               /* Размер круга */
  background-color: #7CFC00;  /* Цвет фона (салатовый) */
  border-radius: 50%;         /* Делаем круглый */
  margin: 0 auto 15px;        /* Центрируем и добавляем отступ снизу */
}
.values-grid-horizontal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}









/* Матрица для левой стороны */
.matrix-left {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: transparent;
  overflow: hidden;
  pointer-events: none;
  z-index: 9999; /* Чтобы была поверх всего */
}

.matrix-code-left {
  position: absolute;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #00ff00;
  white-space: nowrap;
  animation: fall-left 6s linear infinite;
}

/* Уникальная анимация для левой матрицы (символы падают сверху вниз) */
@keyframes fall-left {
  0% {
    transform: translateY(-100%); /* Начало сверху */
  }
  100% {
    transform: translateY(100vh); /* Конец внизу */
  }
}

/* Матрица для правой стороны */
.matrix-right {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: transparent;
  overflow: hidden;
  pointer-events: none;
  z-index: 9999; /* Чтобы была поверх всего */
}

.matrix-code-right {
  position: absolute;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: #00ff00;
  white-space: nowrap;
  animation: fall-right 6s linear infinite;  /* Здесь мы используем другую скорость */
}

/* Уникальная анимация для правой матрицы (символы падают снизу вверх) */
@keyframes fall-right {
  0% {
    transform: translateY(-100%); /* Начало снизу */
  }
  100% {
    transform: translateY(100vh); /* Конец наверху */
  }
}
