:root {
  --primary: #1e3a8a;
  --accent: #2563eb;
  --bg: #f8fafc;
  --header-bg: rgba(255, 255, 255, 0.9);
  --text: #0f172a;
  --footer-bg: #0f172a;
  --orange: #f59e0b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;

  display: flex;
  flex-direction: column;

  font-family: "Inter", sans-serif;
  line-height: 1.6;

  background: #1d54943a;
  color: var(--text);
}

.wrapper {
  flex: 1;

  display: flex;
  flex-direction: column;

  width: 100%;
  overflow-x: hidden;
}

/* ================= HEADER ================= */

header {
  position: sticky;
  top: 20px;
  z-index: 1000;

  width: 90%;
  max-width: 1500px;

  margin: 0 auto;
  padding: 25px 45px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);

  transition: all 0.45s ease;
}

header.scrolled {
  top: 8px;

  width: 80%;

  padding: 8px 30px;

  background: rgba(15, 23, 42, 0.88);

  backdrop-filter: blur(25px);

  border-radius: 14px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);

  transform: translateY(-8px);
}
header.scrolled .logo a,
header.scrolled .nav-links a {
  color: white;
}
header.scrolled .logo {
  font-size: 1.4rem;
}
header.scrolled .nav-links {
  gap: 20px;
}

header.scrolled .nav-links a {
  font-size: 0.9rem;
}
header.scrolled .btn-nav {
  padding: 8px 18px;
  border-radius: 20px;
  background: white;
  color: var(--primary) !important;
}

.name_logo {
  display: flex;
  align-items: start;
}
.logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 10px;
}

.logo a {
  color: var(--primary);
  text-decoration: none;
  transition: 0.25s;
}

.logo a:hover {
  color: var(--accent);
}

.logo:hover,
.logo:visited,
.logo:active {
  color: #0f172a;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  position: relative;

  color: var(--text);
  text-decoration: none;
  font-weight: 600;

  transition: 0.25s;
}
.nav-links a:hover {
  color: var(--accent);
}

.btn-nav {
  padding: 12px 24px;

  border-radius: 30px;

  background: linear-gradient(135deg, #2563eb, #1d4ed8);

  color: white !important;

  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);

  transition: 0.25s;
}

.btn-nav:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

header.scrolled {
  padding: 12px 40px;

  background: rgba(255, 255, 255, 0.85);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ================= HERO ================= */

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;

  padding: 100px 5%;

  background: linear-gradient(135deg, #f3f6fa, #1d549486);
}

.hero h1 {
  font-size: 3.5rem;
}

.hero-text {
  max-width: 800px;
  font-size: 1.2rem;
}
/* ================= ADVANTAGES ================= */

.advantages {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 50px;

  padding: 90px 5%;

  background: #fff;
}

.advantages h2 {
  font-size: 2.3rem;
  text-align: center;
  color: #000000;
}

.advantages-container {
  width: 100%;

  display: flex;
  justify-content: center;
  gap: 35px;

  flex-wrap: wrap;
}

.advantage-card {
  width: 280px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 20px;

  padding: 35px 25px;

  text-align: center;

  border-radius: 20px;

  background: #f8fafc;

  transition: 0.3s;
}

.advantage-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 15px 40px #0f172a;
}

.advantage-card img {
  width: 80px;
  height: 80px;

  object-fit: contain;
}

.advantage-card h3 {
  color: #000000;
}

.advantage-card p {
  color: #64748b;
}

.server-solutions {
  max-width: 1200px;

  margin: 100px auto;

  padding: 0 20px;
}

.solutions-title {
  text-align: center;

  max-width: 700px;

  margin: 0 auto 50px;
}

.solutions-title h2 {
  font-size: 40px;

  color: #111827;

  margin-bottom: 15px;
}

.solutions-title p {
  color: #6b7280;

  font-size: 18px;

  line-height: 1.6;
}

/* -------------КАРТОЧКИ-------------------- */

.solutions-cards {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.solution-card {
  position: relative;

  padding: 35px 30px;

  background: #ffffff;

  border-radius: 24px;

  border: 1px solid #e5e7eb;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);

  transition: 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.solution-card.featured {
  color: rgb(0, 0, 0);

  border: none;
}

.solution-icon {
  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 16px;

  background: #fef3c7;

  color: #d97706;

  font-size: 28px;

  margin-bottom: 25px;
}

.solution-card h3 {
  font-size: 25px;

  margin-bottom: 15px;

  color: #111827;
}

.featured h3 {
  color: rgb(0, 0, 0);
}

.solution-description {
  color: #6b7280;

  line-height: 1.6;

  min-height: 75px;
}

.featured .solution-description {
  color: #000000;
}

.solution-card ul {
  list-style: none;

  padding: 0;

  margin: 25px 0;
}

.solution-card li {
  margin-bottom: 12px;

  color: #374151;
}

.featured li {
  color: #000000;
}

.price {
  font-size: 17px;

  margin: 25px 0;
}

.price strong {
  font-size: 30px;

  color: #f59e0b;
}

.solution-card button {
  width: 100%;

  padding: 15px;

  border: none;

  border-radius: 14px;

  background: #f59e0b;

  color: #111827;

  font-weight: 700;

  cursor: pointer;
}

.solution-card button:hover {
  background: #d97706;
}

.popular {
  position: absolute;

  top: -15px;

  right: 20px;

  background: #f59e0b;

  color: #111827;

  padding: 7px 15px;

  border-radius: 30px;

  font-size: 13px;

  font-weight: 700;
}

/* адаптив */

@media (max-width: 900px) {
  .solutions-cards {
    grid-template-columns: 1fr;
  }

  .solutions-title h2 {
    font-size: 32px;
  }
  /* -------------МЫ В ЦИФРАХ-------------------- */
}
.stats {
  width: 100%;
  padding: 80px 0;
  background: #f8fafc;
  text-align: center;
}

.stats h2 {
  margin-bottom: 40px;
}

.stats-grid {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stats-grid div {
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.stats-grid h3 {
  margin-bottom: 10px;
  font-size: 38px;
  color: #f59e0b;
}

.stats-grid p {
  color: #6b7280;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .stats-grid {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.steps {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.steps h2,
.steps-subtitle,
.steps-line {
  width: 80%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.steps-subtitle {
  margin-top: 15px;
  margin-bottom: 60px;
}

.steps h2 {
  margin-bottom: 15px;
}

.steps-subtitle {
  color: #6b7280;
  margin-bottom: 60px;
}

/* -----------ЛИНИЯ----------- */

.steps-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;

  position: relative;
}

.steps-line::before {
  content: "";

  position: absolute;

  top: 30px;
  left: 10%;
  right: 10%;

  height: 2px;

  background: #e5e7eb;

  z-index: 0;
}

.step {
  position: relative;

  z-index: 1;
}

.step span {
  width: 60px;
  height: 60px;

  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f59e0b;

  color: white;

  font-size: 24px;
  font-weight: bold;

  transition: 0.35s;
}

.step:hover span {
  transform: scale(1.15) rotate(10deg);

  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  color: #6b7280;

  line-height: 1.6;
}

@media (max-width: 900px) {
  .steps-line {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .steps-line::before {
    display: none;
  }
}
/* ================= FAQ ================= */

.faq-section {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
}
.faq-header,
.faq-list {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 50px;
}
/* Левая часть */

.faq-header {
  position: sticky;
  top: 40px;
  height: fit-content;
}

.faq-header h2 {
  margin: 20px 0;

  font-size: 42px;
  line-height: 1.2;

  color: #111827;
}

.faq-header p {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.7;
}

/* Правая часть */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 20px;

  overflow: hidden;

  transition: 0.3s;
}

.faq-item:hover {
  border-color: #f59e0b;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item input {
  display: none;
}

.faq-item label {
  cursor: pointer;

  display: flex;

  justify-content: space-between;
  align-items: center;

  padding: 25px 30px;

  font-size: 17px;
  font-weight: 600;

  color: #111827;
}

.faq-item label span {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #fef3c7;

  color: #d97706;

  font-size: 22px;

  transition: 0.3s;
}

/* Ответ */

.faq-answer {
  max-height: 0;

  overflow: hidden;

  padding: 0 30px;

  color: #6b7280;

  line-height: 1.7;

  transition: 0.35s ease;
}

.faq-item input:checked ~ .faq-answer {
  max-height: 200px;

  padding-bottom: 25px;
}

.faq-item input:checked + label span {
  transform: rotate(45deg);

  background: #f59e0b;

  color: white;
}
.contact-form select {
  width: 100%;

  padding: 16px 20px;

  border: 1px solid #e5e7eb;

  border-radius: 14px;

  background: #f9fafb;

  color: #374151;

  font-size: 15px;

  cursor: pointer;

  appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #f59e0b 50%),
    linear-gradient(135deg, #f59e0b 50%, transparent 50%);

  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%;

  background-size:
    6px 6px,
    6px 6px;

  background-repeat: no-repeat;

  transition: 0.3s ease;
}

.contact-form select:hover {
  border-color: #f59e0b;
}

.contact-form select:focus {
  outline: none;

  background: #ffffff;

  border-color: #f59e0b;

  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

/* Чтобы placeholder у select выглядел как у input */

.contact-form select option {
  color: #111827;
}
/* Мобильная версия */

@media (max-width: 900px) {
  .faq-section {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .faq-header {
    position: static;
  }

  .faq-header h2 {
    font-size: 32px;
  }
}

/* ================= CONTACT ================= */

.contact {
  max-width: 800px;

  margin: 100px auto;

  padding: 50px;

  background: #ffffff;

  border-radius: 28px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact h2 {
  margin-bottom: 15px;

  font-size: 36px;

  color: #111827;
}

.contact p {
  margin-bottom: 35px;

  color: #6b7280;

  font-size: 17px;

  line-height: 1.6;
}

.contact-form {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;

  padding: 16px 20px;

  box-sizing: border-box;

  border: 1px solid #e5e7eb;

  border-radius: 14px;

  background: #f9fafb;

  font-size: 16px;

  font-family: inherit;

  color: #111827;

  transition: 0.3s ease;
}

.contact-form textarea {
  min-height: 130px;

  resize: vertical;
}

/* Выпадающий список */

.contact-form select {
  cursor: pointer;

  appearance: none;

  -webkit-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #f59e0b 50%),
    linear-gradient(135deg, #f59e0b 50%, transparent 50%);

  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;

  background-size:
    7px 7px,
    7px 7px;

  background-repeat: no-repeat;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;

  background: #ffffff;

  border-color: #f59e0b;

  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.contact-form select option {
  color: #111827;

  background: #ffffff;
}

/* Кнопка */

.btn-submit {
  margin-top: 10px;

  padding: 17px 30px;

  border: none;

  border-radius: 14px;

  background: #f59e0b;

  color: #111827;

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s ease;
}

.btn-submit:hover {
  background: #d97706;

  transform: translateY(-2px);
}

/* Мобильная версия */

@media (max-width: 700px) {
  .contact {
    margin: 50px 20px;

    padding: 30px 20px;
  }

  .contact h2 {
    font-size: 28px;
  }
}

/* ================= FOOTER ================= */

.footer {
  background: #0f172a;
  color: #dbe5f1;
}
.footer-container {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  max-width: 1400px;
  margin: 0 auto;

  padding: 70px 5%;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;

  flex: 0 0 auto;
}

.footer-column h3 {
  color: #fff;
  font-size: 1.2rem;
}

.footer-column p,
.footer-column a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

/* ---------- Бренд ---------- */

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-circle {
  width: 60px;
  height: 60px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;

  background: var(--accent);

  color: #fff;
  font-size: 28px;
  font-weight: 700;

  flex-shrink: 0;
}

.brand-title h3 {
  font-size: 1.7rem;
}

.brand-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ---------- Меню ---------- */

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;

  list-style: none;
}

/* ---------- Соцсети ---------- */

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.social {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;
  background: #ffffff;

  color: #fff;
  text-decoration: none;
  font-size: 22px;

  transition: 0.25s;
}
.social img {
  width: 24px;
  height: 24px;

  object-fit: contain;

  display: block;
}
.social:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.social:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ================= ADAPTIVE ================= */

@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-column {
    width: 100%;
  }
}

/* ================= PAGE HERO ================= */

.page-hero {
  display: flex;
  flex-direction: column;

  justify-content: center;

  gap: 20px;

  padding: 120px 5% 90px;

  background: linear-gradient(135deg, #f3f6fa, #1d549486);
}

.breadcrumbs {
  display: flex;
  align-items: center;

  gap: 10px;

  font-size: 0.95rem;
}

.breadcrumbs a {
  color: #000000;

  text-decoration: none;
}

.breadcrumbs span {
  color: #696e77;
}

.page-hero h1 {
  font-size: 3.6rem;

  color: #000000;
}

.page-hero p {
  max-width: 760px;

  color: #000000;

  font-size: 1.2rem;

  line-height: 1.8;
}

/* ================= COMPANY ================= */

.company {
  padding: 100px 5%;

  background: white;
}

.company-content {
  max-width: 1400px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 80px;
}

.company-text {
  flex: 1;

  display: flex;

  flex-direction: column;

  gap: 28px;
}

.section-label {
  width: fit-content;
  padding: 8px 18px;

  border-radius: 30px;

  background: #fff8eb;

  color: #f59e0b;

  font-weight: 700;

  letter-spacing: 0.08em;
}

.company-text h2 {
  font-size: 2.6rem;

  color: #1f2937;
}

.company-text p {
  color: #4b5563;

  font-size: 1.08rem;

  line-height: 1.9;
}

.company-features {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}

.feature {
  padding: 14px 22px;

  background: #f8fafc;

  border: 1px solid #e5e7eb;

  border-radius: 14px;

  font-weight: 600;

  color: #374151;
}

.company-image {
  flex: 1;

  display: flex;

  justify-content: center;
}

.company-image img {
  width: 100%;

  max-width: 560px;

  border-radius: 28px;

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);

  object-fit: cover;
}

/* ================= HISTORY ================= */

.history {
  padding: 110px 5%;

  background: #f8fafc;
}

.history-header {
  max-width: 800px;

  margin: 0 auto 80px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 25px;

  text-align: center;
}

.history-header h2 {
  font-size: 2.7rem;

  color: #1f2937;
}

.history-header p {
  color: #6b7280;

  line-height: 1.8;
}

.timeline {
  position: relative;

  max-width: 1100px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;

  gap: 45px;
}

.timeline::before {
  content: "";

  position: absolute;

  left: 105px;
  top: 0;
  bottom: 0;

  width: 4px;

  background: linear-gradient(#fbbf24, #f59e0b);

  border-radius: 20px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;

  gap: 40px;

  position: relative;
}

.timeline-year {
  min-width: 90px;

  font-size: 1.5rem;
  font-weight: 800;

  color: #f59e0b;

  text-align: right;
}

.timeline-card {
  position: relative;

  flex: 1;

  padding: 30px;

  background: white;

  border-radius: 20px;

  border: 1px solid #e5e7eb;

  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);

  transition: 0.35s;
}

.timeline-card::before {
  content: "";

  position: absolute;

  left: -34px;
  top: 35px;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  background: #f59e0b;

  border: 5px solid white;

  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.timeline-card:hover {
  transform: translateX(12px);

  border-color: #f59e0b;

  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.timeline-card h3 {
  margin-bottom: 15px;

  color: #1f2937;

  font-size: 1.35rem;
}

.timeline-card p {
  color: #6b7280;

  line-height: 1.8;
}

/* ================= STATS ================= */

.stats {
  padding: 110px 5%;

  background: white;
}

.stats-header {
  max-width: 800px;

  margin: 0 auto 70px;

  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 22px;

  text-align: center;
}

.stats-header h2 {
  font-size: 2.7rem;

  color: #1f2937;
}

.stats-header p {
  color: #6b7280;

  line-height: 1.8;
}

.stats-container {
  max-width: 1400px;

  margin: 0 auto;

  display: flex;

  justify-content: center;

  gap: 30px;

  flex-wrap: wrap;
}

.stat-card {
  width: 290px;

  padding: 45px 35px;

  display: flex;
  flex-direction: column;

  gap: 18px;

  border-radius: 22px;

  background: #fff;

  border: 1px solid #e5e7eb;

  transition: 0.35s;
}

.stat-card:hover {
  transform: translateY(-10px);

  border-color: #f59e0b;

  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.stat-number {
  font-size: 4rem;

  font-weight: 900;

  color: #f59e0b;

  line-height: 1;
}

.stat-card h3 {
  color: #1f2937;

  font-size: 1.35rem;
}

.stat-card p {
  color: #6b7280;

  line-height: 1.7;
}

/* ================= VALUES ================= */

.values {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 80px;

  padding: 120px 5%;

  background: rgba(29, 84, 148, 0.062);
}

.values-left {
  flex: 1;

  display: flex;
  flex-direction: column;

  gap: 28px;
}

.values-left h2 {
  font-size: 2.8rem;

  color: #1f2937;

  line-height: 1.2;
}

.values-left p {
  font-size: 1.08rem;

  line-height: 1.9;

  color: #6b7280;
}

.values-right {
  flex: 1;

  display: flex;
  flex-wrap: wrap;

  gap: 25px;
}

.value-card {
  flex: 1 1 calc(50% - 15px);

  min-width: 260px;

  display: flex;
  flex-direction: column;

  gap: 20px;

  padding: 35px;

  background: white;

  border-radius: 20px;

  border: 1px solid #e5e7eb;

  transition: 0.35s;
}
.value-card h3 {
  position: relative;

  margin-bottom: 18px;

  padding-top: 18px;
}

.value-card h3::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 110px;
  height: 4px;

  border-radius: 20px;

  background: #f59e0b;
}
.value-card:hover {
  transform: translateY(-10px);

  border-color: #f59e0b;

  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.value-icon {
  width: 70px;
  height: 70px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 2rem;

  border-radius: 18px;

  background: #fff8eb;

  color: #f59e0b;
}

.value-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;

  display: block;
}

.value-card h3 {
  color: #1f2937;

  font-size: 1.35rem;
}

.value-card p {
  color: #6b7280;

  line-height: 1.7;
}

/* ================= что мы предлагаем      (о компании) ================= */

.services-section {
  padding: 90px 20px;
  background: #f7f9fc;
}

.services-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-label {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #eef4ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.services-header h2 {
  margin: 20px 0 15px;
  font-size: 44px;
  color: #111827;
}

.services-header p {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.7;
}

.services-grid {
  width: 85%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 35px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.service-number {
  min-width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #f59e0b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 22px;
}

.service-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    width: 92%;
  }

  .services-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 70px 15px;
  }

  .service-card {
    padding: 24px;
    gap: 18px;
  }

  .service-number {
    min-width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .service-card h3 {
    font-size: 20px;
  }
}

/* ================= TEAM ================= */

/* =======================
   НАША КОМАНДА
======================= */

.team {
  width: 100%;
  padding: 90px 0;
  background: #f8fafc;
}

.team-content {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.team-content h2 {
  margin: 15px 0 20px;
}

.team-content > p {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #6b7280;
  line-height: 1.7;
}

/* Карточки */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  padding: 25px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.team-icon {
  width: 60px;
  height: 60px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: #fef3c7;

  color: #d97706;

  font-size: 28px;
}

.team-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.team-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 15px;
}

/* Адаптив */

@media (max-width: 992px) {
  .team-content {
    width: 90%;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= contacts ================= */
.contacts {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  max-width: 1200px;
  margin: 80px auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  background: #ffffff;
  font-family: Arial, sans-serif;
}

/* Левая часть - форма */
.contacts-form {
  padding: 60px;
}

.section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #d97706;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.contacts-form h2 {
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1.2;
  color: #111827;
}

.contacts-form > p {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.6;
  max-width: 450px;
  margin-bottom: 35px;
}

/* Поля формы */
.contacts-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contacts-form input,
.contacts-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font-size: 15px;
  color: #0f172a;
  background: #f9fafb;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
  outline: none;
  border-color: #f59e0b;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.contacts-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* Кнопка */
.contacts-form button {
  margin-top: 10px;
  padding: 17px 30px;
  border: none;
  border-radius: 14px;
  background: #f59e0b;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.contacts-form button:hover {
  background: #d97706;
  transform: translateY(-2px);
}

/* Правая часть */
.contacts-info {
  background: #0f172a;
  color: #d1d5db;
  padding: 60px 45px;
}

.contacts-info h3 {
  margin: 0 0 28px;
  color: #fbbf24;
  font-size: 24px;
}

/* Контакты */
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
}

.contact-item span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 191, 36, 0.12);
  border-radius: 50%;
  color: #fbbf24;
  font-size: 20px;
}

.contact-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* Разделитель */
.contacts-info hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 35px 0;
}

/* Реквизиты */
.requisites p {
  margin: 12px 0;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.6;
}

.requisites strong {
  color: #ffffff;
  font-size: 17px;
}

/* Адаптив */
@media (max-width: 900px) {
  .contacts {
    grid-template-columns: 1fr;
    margin: 40px 20px;
  }

  .contacts-form {
    padding: 40px 25px;
  }

  .contacts-info {
    padding: 40px 25px;
  }

  .contacts-form h2 {
    font-size: 28px;
  }
}
/* -----------REMOTE----------- */

.hero-rdp {
  width: 80%;
  max-width: 1200px;

  margin: 90px auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 60px;
}

.hero-rdp h1 {
  font-size: 52px;

  line-height: 1.2;

  margin: 20px 0;
}

.hero-rdp p {
  color: #6b7280;

  line-height: 1.8;

  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;

  gap: 20px;
}

.hero-image img {
  width: 100%;
}

.btn-primary {
  padding: 15px 32px;
  border-radius: 14px;
  background: #f59e0b;
  color: white;
  text-decoration: none;
}

.btn-secondary {
  padding: 15px 32px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  background-color: white;
  text-decoration: none;

  color: #111827;
}

@media (max-width: 900px) {
  .hero-rdp {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
}

/* -----------ДЛЯ КОГО ПОДХОДИТ----------- */
.use-cases {
  background-color: white;
  padding: 70px;
}
.table-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px;
  overflow-x: auto;
}

.use-table {
  width: fit-content; /* размер по содержимому */
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  margin: 40px auto 0;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04);
}
.use-table thead th {
  padding: 20px 24px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
}

.use-table thead th:first-child {
  border-top-left-radius: 20px;
}

.use-table thead th:last-child {
  border-top-right-radius: 20px;
}

.use-table tbody tr {
  transition: all 0.25s ease;
}

.use-table tbody tr:hover {
  background: #f8fbff;
  transform: scale(1.005);
}

.use-table td {
  padding: 22px 24px;
  border-bottom: 1px solid #edf2f7;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
  vertical-align: middle;
}

.use-table tbody tr:last-child td {
  border-bottom: none;
}

/* Название */
.use-table td:nth-child(2) {
  width: 900px;
  font-weight: 700;
  color: #0f172a;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.section-title {
  max-width: 850px; /* чтобы текст не становился слишком длинным */
  text-align: center;
  width: fit-content;
  margin: 0 auto 40px;
}

.use-table {
  width: fit-content;
  margin: 10px auto;
}
/* Закругления снизу */
.use-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}

.use-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}

/* Адаптив */
@media (max-width: 768px) {
  .use-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .use-table th,
  .use-table td {
    padding: 16px;
  }

  .use-table td:first-child {
    font-size: 24px;
    width: 60px;
  }

  .use-table td:nth-child(2) {
    width: 220px;
    font-size: 15px;
  }
}
/* -----------ЧТО ВХОДИТ----------- */
.included {
  width: 100%;

  padding: 90px 0;

  background: #f8fafc;
}

.included-content {
  width: 80%;

  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.included-text h2 {
  margin: 18px 0;
}

.included-text p {
  color: #6b7280;

  line-height: 1.8;
}

.included-list {
  display: grid;

  gap: 18px;
}

.included-item {
  padding: 18px 22px;

  background: #fff;

  border-radius: 14px;

  border-left: 5px solid #f59e0b;

  transition: 0.3s;
}

.included-item:hover {
  transform: translateX(8px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
  .included-content {
    grid-template-columns: 1fr;

    gap: 40px;

    width: 90%;
  }
}
/* -----------remote faq----------- */

/* -----------remote выгодные цены----------- */
.discounts {
  width: 100%;

  padding: 100px 0;

  background: #f8fafc;
}

.discounts-header {
  width: 80%;

  max-width: 900px;

  margin: 0 auto 60px;

  text-align: center;
}

.discounts-header p {
  color: #6b7280;

  margin-top: 20px;

  line-height: 1.7;
}

.discount-grid {
  width: 80%;

  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.discount-card {
  position: relative;

  padding: 40px;

  background: #fff;

  border-radius: 22px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.discount-card:hover {
  transform: translateY(-8px);
}

.popular {
  border: 2px solid #f59e0b;
}

.badge {
  position: absolute;

  top: -27px;

  left: 50%;

  transform: translateX(-50%);

  background: #f59e0b;

  color: #fff;

  padding: 3px 16px;

  border-radius: 30px;

  font-size: 16px;
}

.discount-card h3 {
  margin-bottom: 25px;
  font-size: 19px;
}

.old-price {
  color: #9ca3af;

  text-decoration: line-through;

  font-size: 22px;
}

.new-price {
  font-size: 42px;

  font-weight: 700;

  color: #111827;

  margin: 12px 0;
}

.discount-card p {
  color: #16a34a;
  font-size: 17px;
}

@media (max-width: 900px) {
  .discount-grid {
    grid-template-columns: 1fr;

    width: 90%;
  }
}
/* -----------remote форма----------- */
.rdp-contact {
  width: 100%;

  padding: 100px 0;
}

.rdp-contact-box {
  width: 80%;

  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  background: #1f2937;

  border-radius: 30px;

  overflow: hidden;
}

/* Левая часть */

.rdp-contact-left {
  padding: 60px;

  color: white;

  display: flex;

  flex-direction: column;
  background-color: #ffffff;

  justify-content: center;
}

.rdp-contact-left h2 {
  font-size: 38px;

  line-height: 1.25;
  color: #000000;
  margin: 20px 0;
}

.rdp-contact-left p {
  color: #000000;

  line-height: 1.8;
}

/* тарифы */

.contact-features {
  margin-top: 35px;

  display: grid;

  gap: 12px;
}

.contact-features div {
  padding: 15px 20px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.15);

  color: #000000;
}

.contact-features b {
  color: #f59e0b;
}

/* контакты */

.contact-data {
  margin-top: 35px;

  padding-top: 25px;

  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

/* Правая часть */

.rdp-contact-right {
  padding: 60px;

  background: #0f172a;

  display: flex;

  align-items: center;
}

.rdp-form {
  width: 100%;

  display: flex;

  flex-direction: column;

  gap: 18px;
}

.rdp-form input,
.rdp-form select,
.rdp-form textarea {
  width: 100%;

  padding: 17px 20px;

  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  background: #1f2937;

  color: white;

  font-size: 16px;
}

.rdp-form input::placeholder,
.rdp-form textarea::placeholder {
  color: #9ca3af;
}

.rdp-form select {
  color: #9ca3af;
}

.rdp-form textarea {
  height: 130px;

  resize: none;
}

.rdp-form button {
  margin-top: 10px;

  padding: 17px;

  border: none;

  border-radius: 12px;

  background: #f59e0b;

  color: white;

  font-size: 17px;

  cursor: pointer;

  transition: 0.3s;
}

.rdp-form button:hover {
  background: #d97706;
}

@media (max-width: 900px) {
  .rdp-contact-box {
    width: 90%;

    grid-template-columns: 1fr;
  }

  .rdp-contact-left,
  .rdp-contact-right {
    padding: 35px;
  }
}
/*  -------------------VPS--------------------- */
.vps-hero {
  width: 100%;

  padding: 90px 0;
}

.vps-hero-content {
  width: 80%;

  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 60px;
}

.vps-hero-text h1 {
  margin: 20px 0;

  font-size: 48px;

  line-height: 1.2;
}

.vps-hero-text p {
  color: #6b7280;

  line-height: 1.8;

  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;

  gap: 20px;

  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 28px;

  background: #f59e0b;

  color: #fff;

  border-radius: 14px;

  text-decoration: none;

  transition: 0.3s;
}

.btn-primary:hover {
  background: #d97706;
}

.btn-secondary {
  padding: 16px 28px;

  border: 2px solid #f59e0b;

  color: #111827;

  border-radius: 14px;

  text-decoration: none;

  transition: 0.3s;
}

.btn-secondary:hover {
  background: #f59e0b;

  color: #fff;
}

.vps-hero-image {
  text-align: center;
}

.vps-hero-image img {
  width: 100%;

  max-width: 520px;

  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .vps-hero-content {
    grid-template-columns: 1fr;

    width: 90%;

    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/*  -------------------VPS-кгонфигурация-------------------- */
.vps-pricing {
  width: 100%;

  padding: 50px 0;

  background: #f8fafc;
}

.vps-pricing-header {
  width: 80%;

  max-width: 900px;

  margin: 0 auto 60px;

  text-align: center;
}

.vps-pricing-header h2 {
  margin: 20px 0;

  font-size: 42px;

  color: #111827;
}

.vps-pricing-header p {
  max-width: 700px;

  margin: auto;

  color: #6b7280;

  line-height: 1.8;
}

/* ---------- таблица ---------- */

.vps-pricing-table {
  width: 90%;

  max-width: 1500px;

  margin: auto;

  overflow-x: auto;

  border-radius: 22px;

  background: #fff;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.vps-pricing-table table {
  width: 100%;

  min-width: 1450px;

  border-collapse: collapse;
}

/* ---------- шапка ---------- */

.vps-pricing-table thead {
  background: #1f2937;
}

.vps-pricing-table th {
  padding: 20px 16px;

  color: #fff;

  font-size: 15px;

  font-weight: 600;

  text-align: center;

  white-space: nowrap;
}

.vps-pricing-table th small {
  display: block;

  margin-top: 6px;

  font-size: 13px;

  color: #fbbf24;
}

/* ---------- строки ---------- */

.vps-pricing-table td {
  padding: 20px 16px;

  text-align: center;

  border-bottom: 1px solid #edf2f7;

  color: #374151;

  vertical-align: middle;
}

.vps-pricing-table tbody tr {
  transition: 0.3s;
}

.vps-pricing-table tbody tr:hover {
  background: #fff8eb;
}

/* ---------- первый столбец ---------- */

.vps-pricing-table td:first-child {
  font-weight: 700;

  color: #111827;
}

/* ---------- колонка с ценой ---------- */

.price {
  color: #f59e0b;

  font-weight: 700;

  font-size: 18px;
}

/* ---------- цены за периоды ---------- */

.vps-pricing-table td strong {
  display: block;

  color: #111827;

  font-size: 16px;
}

.vps-pricing-table td span {
  display: block;

  margin-top: 5px;

  font-size: 13px;

  color: #9ca3af;

  text-decoration: line-through;
}

/* ---------- кнопки ---------- */

.vps-pricing-table a {
  display: inline-block;

  padding: 12px 22px;

  border-radius: 10px;

  text-decoration: none;

  background: #e5e7eb;

  color: #111827;

  font-weight: 600;

  transition: 0.3s;
}

.vps-pricing-table a:hover {
  background: #d1d5db;
}

.vps-pricing-table a.primary {
  background: #f59e0b;

  color: #fff;
}

.vps-pricing-table a.primary:hover {
  background: #d97706;
}

/* ---------- рекомендуемый тариф ---------- */

.vps-popular {
  background: #fff8eb;
}

.popular td {
  border-top: 2px solid #f59e0b;

  border-bottom: 2px solid #f59e0b;
}

.popular td:first-child {
  color: #f59e0b;
}

/* ---------- примечание ---------- */

.pricing-note {
  width: 90%;

  max-width: 1500px;

  margin: 25px auto 0;
}

.pricing-note p {
  color: #6b7280;

  font-size: 14px;

  margin-top: 8px;
}

/* ---------- адаптив ---------- */

@media (max-width: 992px) {
  .vps-pricing {
    padding: 80px 0;
  }

  .vps-pricing-header {
    width: 90%;
  }

  .vps-pricing-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .vps-pricing-table {
    width: 95%;
  }

  .vps-pricing-header h2 {
    font-size: 30px;
  }
}

/* ---------- вторая таблица VPS ---------- */

.vps-tasks {
  padding: 90px 20px;

  background: #f7f9fc;
}

.vps-tasks-header {
  max-width: 760px;

  margin: 0 auto 50px;

  text-align: center;
}

.vps-tasks-header h2 {
  font-size: 42px;

  margin: 20px 0;

  color: #111827;
}

.vps-tasks-header p {
  color: #64748b;

  font-size: 18px;

  line-height: 1.6;
}

.vps-tasks-table {
  max-width: 1100px;

  margin: auto;

  background: white;

  border-radius: 26px;

  overflow: hidden;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.vps-task-head {
  display: grid;

  grid-template-columns: 35% 65%;

  background: #202b3c;

  color: white;

  padding: 22px 35px;

  font-weight: 700;
}

.vps-task-row {
  display: grid;

  grid-template-columns: 35% 65%;

  padding: 28px 35px;

  align-items: center;

  border-bottom: 1px solid #edf1f5;

  color: #475569;

  line-height: 1.6;
}

.vps-task-row:last-child {
  border-bottom: none;
}

.task-name {
  display: flex;

  align-items: center;

  gap: 14px;

  font-size: 18px;

  color: #111827;
}

.task-name strong {
  font-size: 17px;
}

@media (max-width: 768px) {
  .vps-task-head {
    display: none;
  }

  .vps-task-row {
    display: block;

    padding: 25px;
  }

  .task-name {
    margin-bottom: 15px;
  }
}

/* Небольшой акцент слева */
.vps-task-row {
  position: relative;
  transition: all 0.25s ease;
}

.vps-task-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  background: #2563eb;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Эффект наведения */
.vps-task-row:hover {
  background: #f8fbff;
}

.vps-task-row:hover::before {
  opacity: 1;
}

/* Заголовок немного выразительнее */
.task-name strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Более приятный цвет текста */
.vps-task-row div:last-child {
  color: #64748b;
}

/* ---------- ВОЗМОЖНОСТИ VPS ---------- */

.vps-features-grid {
  width: 80%;
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vps-feat {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
}

.vps-feat::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -60px;
  right: -60px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 50%;
}

.vps-feat:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: #dbeafe;
}

.vps-feat .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #ffffff;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.vps-feat h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  color: #111827;
}

.vps-feat p {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.65;
}

/* Центрирование заголовка блока */
.section-head {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head h2 {
  color: #111827;
}

/* Планшет */
@media (max-width: 992px) {
  .vps-features-grid {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head {
    width: 90%;
  }
}

/* Мобильные устройства */
@media (max-width: 600px) {
  .vps-features-grid {
    width: 94%;
    grid-template-columns: 1fr;
  }

  .section-head {
    width: 94%;
  }

  .vps-feat {
    padding: 25px;
  }
}

/* ---------- АКЦИИИИИИИИ ---------- */
/* HERO */

.promo-hero {
  width: 85%;
  max-width: 1280px;
  margin: 60px auto;
  padding: 70px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f3f6fa, #1d5494b2);
  overflow: hidden;
  position: relative;
}

.promo-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  top: -180px;
  right: -120px;
}

.promo-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -120px;
  right: 180px;
}

.promo-hero__content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.promo-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #fff8eb;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f59e0b;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-hero h1 {
  margin: 22px 0 18px;
  color: #000000;
  font-size: 52px;
  line-height: 1.1;
}

.promo-hero p {
  margin: 0 0 35px;
  color: rgba(0, 0, 0, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.promo-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Используем ваши кнопки */

.promo-buttons .primary-btn,
.promo-buttons .secondary-btn {
  margin: 0;
}

/* Только небольшой эффект */

.promo-buttons .primary-btn:hover,
.promo-buttons .secondary-btn:hover {
  transform: translateY(-2px);
}

/* адаптив */

@media (max-width: 768px) {
  .promo-hero {
    width: 92%;
    padding: 40px 28px;
  }

  .promo-hero h1 {
    font-size: 36px;
  }

  .promo-hero p {
    font-size: 16px;
  }
}

/* ===== Акции ===== */

.promo-pricing {
  width: 80%;
  max-width: 1200px;
  margin: 70px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.price-block {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 35px;
  border: 1px solid #e8edf5;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
  transition: 0.3s ease;
  overflow: hidden;
}

.price-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.price-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
}

.price-block-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.price-badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.price-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.price-value {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 700;
}

.price-note {
  padding: 13px 0;
  border-bottom: 1px solid #edf2f7;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.price-note:last-child {
  border-bottom: none;
}

.price-note del {
  color: #94a3b8;
  margin-right: 8px;
}

.price-note strong {
  color: #111827;
  font-size: 17px;
}

@media (max-width: 992px) {
  .promo-pricing {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .promo-pricing {
    width: 95%;
    gap: 20px;
  }

  .price-block {
    padding: 28px;
  }

  .price-title {
    font-size: 18px;
  }

  .price-badge {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
}

/* -----приведи друга------- */

.container {
  max-width: 1500px;
}

.referral-card {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.referral-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -120px;
  right: -120px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
}

.spark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
}

.referral-card h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin: 20px 0;
  font-weight: 700;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

.primary-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 34px;
  border-radius: 14px;
  background-color: #f59e0b;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.primary-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .referral-card {
    padding: 35px 25px;
    border-radius: 18px;
  }

  .lead {
    font-size: 16px;
  }

  .primary-btn {
    width: 100%;
    text-align: center;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  margin: 20px;
}

.breadcrumb span {
  color: #696e77;
}
