:root {
  --bg-color: #ffffff;
  --bg-soft: #f9f9f7;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --accent: #7f9086; /* Sage Green */
  --accent-hover: #5f7066;
  --border-light: #e5e7eb;
  --font-family: "Manrope", sans-serif;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.03);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

.small-container {
  max-width: 700px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-main);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.large-text {
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--text-main);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(228, 228, 228);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  padding: 20px 0;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: 50px;
}

.logo:hover {
  color: var(--text-main);
}

.desktop-nav a {
  margin-left: 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.desktop-nav a:hover {
  color: var(--text-main);
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-btn span {
  width: 24px;
  height: 1px;
  background-color: var(--text-main);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 30px;
}

.mobile-links a {
  font-size: 1.5rem;
  color: var(--text-main);
}

.close-menu {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--text-main);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--text-main);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  background-color: var(--text-main);
  color: white;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-gray {
  background-color: var(--bg-soft);
}

/* Hero */
.hero {
  padding: 180px 0 100px;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-visual {
  flex: 1;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-block {
  width: 100%;
  height: 100%;
  background-image: url("./images/coworkers-team-brainstorming\ \(1\).jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

@keyframes softJump {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px); /* Высота прыжка */
  }
  100% {
    transform: translateY(0);
  }
}

/* Grids & Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.card {
  background-color: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.card:hover {
  transition: all 0.3s ease;
  animation: softJump 0.7s ease;
}

.icon-light {
  color: var(--accent);
  margin-bottom: 20px;
  width: 32px;
  height: 32px;
}

.row-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.clean-list li {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.step-num {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 500;
}

.placeholder-img {
  width: 100%;
  height: 500px;
  background-image: url("./images/71ecba93-e6e2-4ec1-8fa6-8d22c760fdff.jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

/* Banner */
.section-wide-banner {
  background-color: #edf2f0;
  text-align: center;
}

.banner-content {
  max-width: 800px;
}

.banner-links {
  margin-top: 30px;
}

/* Columns */
.columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.col-block {
  padding: 40px;
  background-color: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

/* Ecosystem */
.text-center-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mt-40 {
  margin-top: 40px;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
  background-color: var(--bg-soft);
  border-radius: var(--radius);
}

.info-item i {
  margin-bottom: 20px;
  color: var(--text-main);
}

/* FAQ */
.faq-wrapper {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-btn {
  width: 100%;
  padding: 24px 0;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-content p {
  padding-bottom: 24px;
}

.active .faq-content {
  max-height: 200px;
}

.active .faq-btn i {
  transform: rotate(180deg);
}

/* Form */
.form-box {
  background-color: var(--bg-soft);
  padding: 60px;
  border-radius: var(--radius);
}

.form-box h2 {
  margin-bottom: 40px;
}

.input-group {
  margin-bottom: 24px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.input-group input {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d1d5db;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-color: var(--text-main);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.checkbox-group input {
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.full-width {
  width: 100%;
}

/* Footer */
.footer {
  padding: 60px 0;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer h5 {
  margin-bottom: 20px;
  color: var(--text-main);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer p a {
  color: var(--text-muted);
}

.footer-nav a:hover,
.footer p a:hover {
  color: var(--text-main);
}

.copyright {
  color: #9ca3af;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  max-width: 400px;
  z-index: 5000;
  display: none;
}

.cookie-content p {
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  h1 {
    font-size: 2.5rem;
  }
  .hero-container,
  .row-layout,
  .columns-2,
  .grid-3,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .desktop-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .hero {
    padding: 120px 0 60px;
    background-image: url("./images/5594016\ \(1\).jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.9;
  }
  .hero-visual,
  .image-side {
    display: none;
  }
  .form-box {
    padding: 30px;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
}
