:root {
  --primary-color: #3498db;
  --accent-color: #e74c3c;
  --background-gradient-start: #1a3444;
  --background-gradient-end: #34495e;
  --card-bg: rgba(20, 20, 20, 0.9);
  --card-border: #0d4061;
  --btn-bg: var(--accent-color);
  --btn-bg-hover: #c0392b;
}

html, body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  line-height: 1.45;
}
body {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--background-gradient-start) 0%, var(--background-gradient-end) 100%);
  position: relative;
  overflow-x: hidden;
}



.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 0 15px;
}
@media (min-height: 900px) {
  .wrapper {
	justify-content: center;
  }
}

.container {
  margin: 20px 0;
  margin-top: 80px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.logo img {
  width: 85px;
  height: auto;
}
.brand-name {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}


.tagline {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ccc;
  max-width: 800px;
  line-height: 1.4;
}
.img-block {
display: block;
margin: 0 auto;
}
.img-browser:hover {
transform: scale(1.1);
}


.benefits-container {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 15px;
  margin: 0 auto 30px;
  max-width: 400px;
}
.benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  cursor: default;
}
.benefits li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.4;
  transition: color 0.3s;
}
.benefits li::before {
  content: "\2714\FE0E";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;

}
.benefits li:hover {
  color: var(--primary-color);
}


.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
    cursor: default;
}
.card, .card-main {
  background-color: rgba(42, 42, 42, 0.9);
  border: 1px solid #0d4061;
  border-radius: 12px;
  min-height: 240px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative; 
}
.card:hover, .card-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}
.card h3, .card-main h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.5px;
}
.card p, .card-main p {
  margin-bottom: 12px;
  color: #ccc;
  line-height: 1.3;
  font-size: 0.95rem;
}


.soon-btn, .pricing-button, .google-button {
  display: inline-block;
  background-color: #0d4061;
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 20px;
  transition: background-color 0.3s;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-top: auto;
  font-size: 0.9rem;
}
.soon-btn:hover, .pricing-button:hover, .google-button:hover {
  background-color: #ff8a00;
}

.pricing-button {
	cursor: pointer;
}



.telegram {
  margin-top: 15px;
  font-size: 20px;
  display: flex;
  align-items: center;
}
.telegram a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.telegram a:hover {
  color: #fff;
  text-decoration: underline;
}


footer {
  flex-shrink: 0;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 12px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}


@media (max-width: 480px) {
  .logo img {
	width: 60px;
  }
  .brand-name {
	font-size: 2rem;
  }
  .tagline {
	font-size: 1rem;
  }
  .benefits-container {
	padding: 10px;
	margin-bottom: 20px;
  }
  .benefits li {
	font-size: 1rem;
	padding-left: 24px;
  }
  .cards {
	gap: 10px;
	margin-bottom: 20px;
  }
  .card, .card-main {
	width: 90%;
	max-width: 320px;
	min-height: 220px;
	padding: 10px;
  }
  .card h3, .card-main h3 {
	margin-bottom: 6px;
	font-size: 1rem;
  }
  .card p, .card-main p {
	margin-bottom: 10px;
	font-size: 0.9rem;
  }
  .soon-btn, .pricing-button, .google-button {
	font-size: 0.85rem;
	padding: 8px 12px;
  }
}


@media (min-width: 1200px) {
  .container {
	max-width: 1400px;
	margin: 50px auto;
  }
  .brand-name {
	font-size: 3rem;
  }
  .tagline {
	font-size: 1.3rem;
  }
  .benefits li {
	font-size: 1.2rem;
  }
  .card {
	width: 320px;
  }
  .card h3, .card-main h3 {
	font-size: 1.3rem;
  }
  .card p, .card-main p {
	font-size: 1.05rem;
  }
  .soon-btn, .pricing-button, .google-button {
	font-size: 1rem;
	padding: 10px 16px;
  }
}


.flags {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 10px 0;
    z-index: 1000;
}

.text {
    font-size: 15px;
    white-space: nowrap;
}

.images {
    display: flex;
    gap: 10px;
}

.images img {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

.images img:hover {
    transform: scale(1.1);
}


@media (max-width: 600px) {
    .flags {
        flex-direction: column;
        text-align: center;
        padding: 5px 0;
		position: relative;
        box-shadow: none;
    }

    .images {
        flex-wrap: wrap;
        justify-content: center;
    }

    .text {
        font-size: 14px;
    }

    .images img {
        width: 30px;
    }
	
	.container {
        margin-top: 15px; /* Отступ больше не нужен */
    }
}


.dropdown {
	padding: 7px;
	font-size: 16px;
	border: 2px solid #dcdcdc;
	border-radius: 5px;
	background-color: white;
	cursor: pointer;
}