/* Общие стили */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
  line-height: 1.5;
}

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

/* Header */
.site-header {
  width: 100%;
  box-sizing: border-box;
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.logo {
  display: block;
  float: left;
  width: 81px;
}

.logo img {
  width: 81px;
  margin-top: 20px;
}

.logo-image {
  height: 48px;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  display: none;
}

.nav {
  margin-left: auto;
  display: block;
  margin-top: 2.5em;
  float: left;
  margin-left: 3em;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
}

.nav-list li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 17px;
}

.nav-list li a:hover {
  color: red;
}

/* Тарифы */
.tariffs-block {
  padding: 60px 0;
}

.tariffs-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  margin-top: 1em;
}

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

.tariff-card {
  border: 2px dashed #dcdcdc;
  border-radius: 22px;
  padding: 40px;
  background: #fff;
}

.tariff-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
}

.tariff-badge span {
  color: #ff3e3e;
  font-size: 26px;
  font-weight: 700;
  margin-right: 10px;
}

.tariff-card p {
  margin: 0 0 15px;
  font-size: 18px;
}

.tariff-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 15px 30px;
  background-color: #8BC34A;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.tariff-btn:hover {
  background-color: #7cb342;
}

.tariff-card:hover {
  border-color: #0df4f4;
}

.prc {
  font-weight: 600;
  font-size: 1.5em !important;
  color: #df0606;
}

/* Footer */
.site-footer {
  background-color: #f5f5f5;
  padding: 40px 0;
}

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

.footer-section {
  /* можно свои стили */
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #111;
  text-decoration: none;
  font-size: 15px;
}

/* Адаптив */
@media (max-width: 900px) {
  .logo { display: none; }
	
  .tariffs-grid {
    grid-template-columns: 1fr;
  }

  .tariffs-title {
    font-size: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
	position: absolute;
    top: 55px;
    left: 0;
    background: #fff;
    width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
    margin: 0;
  }

  .nav-list {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .nav-list li a {
    font-size: 16px;
  }
  
  .tariff-badge {
	display: block;
  }
}

/*переключатель*/
.language-switcher {
  position: relative;
  display: inline-block;
  float: right;
  margin-top: 0em;
}

.lang-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.lang-btn:after {
  content: '';
}

.lang-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: none;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.lang-list li {
  padding: 10px;
  cursor: pointer;
}

.lang-list li:hover {
  background-color: #f0f0f0;
}

/* Активное состояние */
.language-switcher.active .lang-list {
  display: block;
}

/* Footer */
.site-footer {
  background-color: #f8f8f8;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #ddd;
}

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

.footer-logo img {
  height: 40px;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.footer-nav ul li {
  margin: 0 10px;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #000;
}

.footer-social a {
  margin: 0 5px;
}

.footer-copy {
  width: 100%;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* Адаптивность */
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    display: none;
    margin-top: 10px;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav ul li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav ul {
    flex-direction: column;
  }

  .footer-nav ul li {
    margin: 5px 0;
  }
}
