/* ==== ОБЩИЕ НАСТРОЙКИ ==== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  background: #121212;
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: #ffa726;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #ffc107;
}

/* ==== HEADER ==== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 42px;
}

.logo span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

nav a {
  margin-left: 28px;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #ffa726;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

/* ==== HERO ==== */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('/assets/bg-atlanta.jpg') center center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.dark-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 60px 20px;
  text-align: center;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.hero-text .highlight {
  color: #ffa726;
  text-shadow: 0 0 12px #ff6f00;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 36px;
  color: #ddd;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==== КНОПКИ ==== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(0,0,0,0.2);
}

.btn.primary {
  background: linear-gradient(135deg, #ff6f00, #ffa726);
  color: #fff;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #ff9100, #ffca28);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ffa726;
  color: #ffa726;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: #ffcc80;
}

/* ==== СЕКЦИИ ==== */
section {
  padding: 80px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

section h2 {
  font-size: 32px;
  color: #ffa726;
  margin-bottom: 20px;
}

section p {
  font-size: 18px;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto;
}

/* ==== КАРТОЧКИ ==== */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.15);
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card h3 {
  font-size: 20px;
  color: #ffa726;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: #ccc;
}

/* ==== МЕДИА ==== */
video {
  border-radius: 10px;
  max-width: 100%;
  box-shadow: 0 0 14px rgba(0,0,0,0.6);
}

/* ==== ФУТЕР ==== */
footer {
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 24px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==== АДАПТИВ ==== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 12px;
  }

  nav {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 10px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }
  .hero-text .highlight {
  color: #ffa726;
  text-shadow: 0 0 10px #ff6f00, 0 0 20px #ff6f00;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px #ff6f00, 0 0 20px #ff6f00;
  }
  50% {
    text-shadow: 0 0 20px #ff9100, 0 0 30px #ff9100;
  }
}
.about-section {
  background: #0e0e0e;
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #ffa726;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.about-block {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.about-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(255, 167, 38, 0.3);
}

.about-block h3 {
  font-size: 20px;
  color: #ffa726;
  margin-bottom: 12px;
}

.about-block p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
}
.why-best {
  background: #141414;
  padding: 100px 20px;
  text-align: center;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.why-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
}

.why-item i {
  font-size: 36px;
  color: #ffa726;
  margin-bottom: 16px;
}

.why-item h3 {
  color: #ffa726;
  font-size: 18px;
  margin-bottom: 10px;
}

.why-item p {
  color: #ccc;
  font-size: 14px;
}

/* ==== КАК ПОДКЛЮЧИТЬСЯ ==== */
.connect-section {
  background: #0e0e0e;
  padding: 100px 20px;
  text-align: center;
}

.connect-steps {
  list-style: none;
  padding: 0;
  margin: 30px 0 40px;
  font-size: 17px;
  color: #ccc;
}

.connect-steps li {
  margin: 12px 0;
}

.connect-steps code {
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: monospace;
  color: #ffa726;
}
}
