
:root {
    --bg: #061625;
    --bg-soft: #0b2438;
    --accent: #28cfcf;
    --text: #ffffff;
    --text-muted: #b5c7d6;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, -apple-system, sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Header / Hero */
header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.logo {
    max-width: 160px;
    margin-bottom: 32px;
}

h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 36px;
}

.cta {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: 0.2s;
}

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

.btn-primary:hover {
    background: #1fb5b5;
}

.btn-secondary {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-secondary:hover {
    background: rgba(40, 207, 207, 0.1);
}

.hero-visual {
    background: radial-gradient(circle at center, #0f3b5a, transparent 70%);
    border-radius: 24px;
    padding: 80px;
    text-align: center;
    color: var(--text-muted);
}

/* Sections */
section {
    margin-top: 120px;
}

h2 {
    font-size: 32px;
    margin-bottom: 48px;
}

/* Problems / Solutions */
.comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--bg-soft);
    padding: 28px;
    border-radius: 16px;
}

.bad {
    color: #ff7a7a;
}

.good {
    color: #5cffc9;
}

/* Competencies */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.card p {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 15px;
}

/* USP */
.list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.list div {
    background: var(--bg-soft);
    padding: 24px;
    border-radius: 12px;
}

/* Tech stack */
.stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stack h3 {
    margin-bottom: 12px;
    color: var(--accent);
}

ul {
    list-style: none;
    color: var(--text-muted);
}

ul li {
    margin-bottom: 8px;
}

footer {
    margin-top: 120px;
    padding: 40px 24px;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid #0f2d44;
}

@media (max-width: 900px) {
    header,
    .comparison,
    .grid-4,
    .list,
    .stack {
    grid-template-columns: 1fr;
    }
}

.landscape {
    margin-top: 120px;
  }
  
  .landscape-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .landscape .card h3 {
    margin-bottom: 16px;
    font-size: 20px;
  }
  
  .landscape ul {
    list-style: none;
    padding: 0;
  }
  
  .landscape ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
  }
  
  .landscape .highlight {
    border: 2px solid var(--accent);
  }
  
  .landscape-note {
    margin-top: 32px;
    font-size: 16px;
    color: var(--text-muted);
    
  }
  
  .landscape-cta {
    margin-top: 40px;
    }

  @media (max-width: 900px) {
    .landscape-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .landscape-page .hero {
    margin-top: 40px;
  }
  
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

  .cta-final {
  margin-top: 160px; /* ключевая строка */
  text-align: center;
  }

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.landscape-video {
margin-top: 120px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.video-grid video {
  width: 100%;
  border-radius: 16px;
  background: #000;
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.equipment {
  margin-top: 120px;
}

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

.equipment-card {
  text-align: center;
}

.equipment-card img {
  max-width: 140px;
  margin-bottom: 16px;
}

.equipment-card p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .equipment-grid {
    grid-template-columns: 1fr;
  }
}

.tz-sample {
  margin-top: 120px;
}

.tz-sample-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.tz-sample h2 {
  margin-bottom: 24px;
}

.tz-text {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.tz-actions {
  margin-bottom: 64px;
}

/* Форма */
.tz-form {
  background: var(--bg-soft);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid rgba(40, 207, 207, 0.15);
}

.tz-form h3 {
  margin-bottom: 12px;
}

.tz-form-note {
  margin-bottom: 32px;
  color: var(--text-muted);
  font-size: 16px;
}

/* Поля */
.form-group {
  text-align: left;
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid rgba(40, 207, 207, 0.25);
  color: var(--text);
  font-size: 15px;
}

.form-group input::placeholder {
  color: #6f8fa6;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(40, 207, 207, 0.2);
}

/* Кнопка */
.tz-form button {
  margin-top: 16px;
  width: 100%;
}

.form-success {
  display: none;
  margin-top: 24px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(40, 207, 207, 0.15);
  color: var(--accent);
  font-weight: 500;
}