@import 'media.css';

/* --- CSS Переменные --- */
:root {
  --black: rgba(0, 0, 0, 1.0);
  --white: #fff;
  --blue: #0000FF;
  --red: #E11A0C;
  --bg-dark: #B1B8E3;
  --bg-light: #F3F4FB;
}

/* --- Общие Стили --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.bg-title {
  background-image: linear-gradient(180deg, #B1B8E3,#F3F4FB,#B1B8E3);
  padding: 15px;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.4;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  background-color: var(--bg-light);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.mb-15 {margin-bottom: 15px;}
.mb-30 {margin-bottom: 30px;}
.mb-50 {margin-bottom: 50px;}
.text-center {text-align: center;}
h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}
.h1-subtitle {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
}
h2 {
  font-size: 32px;
  text-align: center;
  font-weight: 700;
  max-width: 1200px;
  margin: 0 auto;
}
.h2-subtitle {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}
h3 {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
ul li::before { 
  content: "\2714"; 
  color: var(--blue);
}
.row-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}
.col-2 {
  max-width: 570px;
  width: 100%;
}
.row-3 {
	display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  margin-bottom: 50px;
}
.col-3 {
  max-width: 350px;
  width: 100%;
}
.row-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}
.col-4 {
  max-width: 270px;
  width: 100%;
}
.card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}
.card img {
  margin-bottom: 15px;
}
.card h3 {
  margin-bottom: 15px;
}

/* --- Header --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  display: flex;
  align-items: center;
}
.logo-text {
  font-size: 28px;
  font-weight: 500;
  padding-left: 12px;
}
.language a {
  padding: 5px 12px;
  color: var(--blue);
}
.language a:hover {
  color: var(--black);
  background: var(--white);
  border-radius: 5px;
}

/* --- Hero --- */
.hero p::before {
  content: "\2022"; 
  color: var(--blue);
  font-size: 24px;
}
.features {
  display: flex;
  justify-content: space-around;
}
.features span {
  padding: 0 7px;
  border-left: 3px solid var(--blue);
  margin-bottom: 15px;
}

                                                        /* === Цены (Pricing) === */
.price-notice {
  background-color: #fff8e1;
  border-left: 4px solid #ffc107;
  font-size: 24px;
  padding: 15px;
  display: flex;
  align-items: center;
}
.price-notice span {
  font-size: 32px;
  font-weight: bold;
  color: var(--red);
  margin-right: 15px;
  width: 48px;
  height: 48px;
  border: 2px solid var(--red);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price-icon {
  width: 70px;
  margin-bottom: 20px;
}
.price-factors li {
  padding: 7px 0;
}
.price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed #666;
}
.price-note {
  color: var(--blue);
  font-weight: 500;
}

/* === Promotion === */
.promotion-icon {
  display: flex;
  width: 100px;
  height: 100px;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--blue);
  border-radius: 50px;
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 auto 15px;
}

/* === Контакты === */
.phone {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  
}
.phone-link {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  padding: 7px 15px;
  border: 2px solid var(--blue);
  border-radius: 15px;
  margin-bottom: 15px;
}
.phone-link:hover {
  text-decoration: underline;
}
.messenger img {
  width: 50px;
}
.messenger {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.messenger a {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--white);
  width: 225px;
  justify-content: center;
}
.messenger a:hover {
  color: var(--black);
}
.messenger div {
  margin-bottom: 15px;
  border-radius: 15px;
}
.whatsapp {
  background-color: #00AA00;
}
.telegram {
  background-color: #008BDF;
}
.viber {
  background-color: #7D3DAE;
}

/* === About === */
.about-icon {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto 15px;
}

/* === Footer === */
footer {
  background-color: var(--bg-dark);
  color: var(--black);
}
.footer {
  display: flex;
  justify-content: space-around;
  padding: 30px 0;
  flex-wrap: wrap;
}
.footer-title {
  margin-bottom: 15px;
}
.footer-link {
  color: var(--blue);
}
.footer-link:hover {
  text-decoration: underline;
}
.footer ul li {
  padding: 7px 12px;
}
.footer ul li::before { 
  content: ""; 
}
hr {
  opacity: 0.7;
  color: var(--white);
}
.copy {
  padding: 15px 0;
  text-align: center;
  color: var(--black);
}
.button-phone {
  z-index: 50;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
}