/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
  color: #2d3748;
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, #fef9f4 0%, #f8f4f0 100%);
}

a {
  text-decoration: none;
  color: inherit;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #deb887;
  color: white;
  border: 2px solid #deb887;
}

.btn-primary:hover {
  background-color: #d4a574;
  border-color: #d4a574;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(222, 184, 135, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #deb887;
  border: 2px solid #deb887;
}

.btn-secondary:hover {
  background-color: rgba(222, 184, 135, 0.1);
  transform: translateY(-2px);
}

/* Шапка */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #deb887;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 10px;
}

.nav-links li {
  margin: 0 8px;
}

.nav-links a {
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 15px;
}

.nav-links a:hover {
  color: #deb887;
  background: rgba(222, 184, 135, 0.1);
}

/* Кнопки авторизации */
.auth-buttons {
  display: flex;
  gap: 12px;
  margin-left: 20px;
}

.btn-login {
  background: transparent;
  color: #deb887;
  border: 2px solid #deb887;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: rgba(222, 184, 135, 0.1);
  transform: translateY(-2px);
}

.btn-register {
  background: #deb887;
  color: white;
  border: 2px solid #deb887;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-register:hover {
  background: #d4a574;
  border-color: #d4a574;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(222, 184, 135, 0.3);
}

/* Переключатель языка */
.language-switcher {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.lang-btn {
  background: rgba(222, 184, 135, 0.1);
  border: 2px solid #deb887;
  border-radius: 20px;
  padding: 8px 16px;
  color: #deb887;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: #deb887;
  color: white;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #deb887;
}

/* Герой-секция с изображением */
.hero-80-width {
  width: 100%;
  margin: 100px 0 0 0;
  padding: 0;
  background: transparent;
  display: flex;
  justify-content: center;
}

.image-container-80 {
  width: 80%;
  max-width: 80%;
}

.image-80-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.rounded-corners {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Секция с текстом */
.text-section {
  padding: 80px 0;
  background: transparent;
  text-align: center;
}

.text-content {
  max-width: 800px;
  margin: 0 auto;
}

.bold-text {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3748;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #deb887, #c19a6b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bold-text:last-child {
  margin-bottom: 0;
}

/* Секция с двумя изображениями и текстом */
.images-text-section {
  padding: 80px 0;
  background: transparent;
}

.images-text-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.images-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 300px;
}

.image-item {
  display: flex;
  justify-content: center;
}

.feature-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.text-right {
  padding-left: 40px;
}

.text-right h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2d3748;
  line-height: 1.3;
}

.subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #deb887;
  margin-bottom: 25px;
}

.description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

/* Секция с текстом слева и тремя изображениями справа */
.text-images-section {
  padding: 80px 0;
  background: rgba(222, 184, 135, 0.05);
  border-radius: 30px;
  margin: 40px 20px;
}

.text-images-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.text-left {
  max-width: 500px;
}

.text-left h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2d3748;
  line-height: 1.3;
}

.text-left .subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #deb887;
  margin-bottom: 25px;
}

.text-left .description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.images-right {
  display: flex;
  justify-content: center;
}

.images-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
}

.image-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.image-bottom-row {
  display: flex;
  justify-content: center;
}

.image-bottom-row .feature-image {
  max-width: 380px;
}

/* Секция с изображением слева и текстом справа */
.image-text-section {
  padding: 80px 0;
  background: transparent;
}

.image-text-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.image-left {
  display: flex;
  justify-content: center;
}

.support-section {
  padding: 80px 0;
  background: rgba(222, 184, 135, 0.05);
  border-radius: 30px;
  margin: 40px 20px;
}

.support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.support-image {
  display: flex;
  justify-content: center;
}

.support-text {
  padding-left: 40px;
}

.support-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2d3748;
  line-height: 1.3;
}

.support-text .description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.support-text .description:last-child {
  margin-bottom: 0;
}

/* Секция "Все, что вам нужно" */
.features-list-section {
  padding: 80px 0;
  background: transparent;
}

.features-list-section .section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #2d3748;
  background: linear-gradient(135deg, #deb887, #c19a6b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(222, 184, 135, 0.2);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: rgba(222, 184, 135, 0.4);
}

.check-icon {
  width: 28px;
  height: 28px;
  background: #deb887;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item span {
  font-size: 15px;
  line-height: 1.5;
  color: #2d3748;
  font-weight: 500;
}

/* Секция "Рейтинг" */
.rating-section {
  padding: 80px 0;
  background: rgba(222, 184, 135, 0.05);
  border-radius: 30px;
  margin: 40px 20px;
}

.rating-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.rating-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2d3748;
  line-height: 1.3;
}

.rating-subtitle {
  font-size: 18px;
  color: #deb887;
  font-weight: 600;
  margin-bottom: 25px;
}

.rating-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.rating-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rating-image .feature-image {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Секция "Ничего лишнего" */
.no-extras-section {
  padding: 80px 0;
  background: transparent;
}

.no-extras-section .section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #2d3748;
  background: linear-gradient(135deg, #deb887, #c19a6b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.no-extras-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.no-extras-section .features-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.no-extras-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(222, 184, 135, 0.2);
}

.no-extras-section .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: rgba(222, 184, 135, 0.4);
}

.cross-icon {
  width: 28px;
  height: 28px;
  background: #a0aec0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.no-extras-section .feature-item span {
  font-size: 15px;
  line-height: 1.5;
  color: #2d3748;
  font-weight: 500;
}

/* Секция с призывом к действию */
.cta-application-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(222, 184, 135, 0.1) 0%,
    rgba(222, 184, 135, 0.05) 100%
  );
  text-align: center;
  border-radius: 30px;
  margin: 40px 20px;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2d3748;
  line-height: 1.3;
  background: linear-gradient(135deg, #deb887, #c19a6b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-description {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  font-size: 18px;
  padding: 16px 45px;
  border-radius: 30px;
  background: #deb887;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(222, 184, 135, 0.3);
}

.cta-button:hover {
  background: #d4a574;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(222, 184, 135, 0.4);
}

/* Подвал */
footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 60px;
}

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

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #deb887;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e0;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: #deb887;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #4a5568;
  color: #a0aec0;
  font-size: 14px;
}

/* Кнопка помощи */
.help-floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.help-btn {
  background: #deb887;
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(222, 184, 135, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.help-btn:hover {
  background: #d4a574;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(222, 184, 135, 0.5);
}

.help-btn:active {
  transform: translateY(0);
}

/* Стили для модальных окон */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.4s ease;
}

.modal-content {
  background: white;
  margin: 3% auto;
  border-radius: 25px;
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.4s ease;
  border: 1px solid rgba(222, 184, 135, 0.2);
}

.modal-header {
  background: linear-gradient(135deg, #deb887, #d4a574);
  color: white;
  padding: 25px;
  text-align: center;
  position: relative;
  border-radius: 25px 25px 0 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-btn:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 30px;
}

.registration-form,
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Строка с двумя полями */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  color: #2d3748;
  font-size: 13px;
  margin-bottom: 2px;
}

.form-group input {
  padding: 14px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f8fafc;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #deb887;
  background: white;
  box-shadow: 0 0 0 3px rgba(222, 184, 135, 0.1);
}

.form-group input::placeholder {
  color: #a0aec0;
  font-size: 14px;
}

.form-group input.error {
  border-color: #e53e3e;
  background: #fed7d7;
}

/* Стили для поля пароля */
.password-group {
  position: relative;
}

.password-input-container {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px;
  border-radius: 3px;
}

.toggle-password:hover {
  opacity: 1;
}

/* Требования к паролю */
.password-requirements {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.requirement {
  font-size: 11px;
  color: #a0aec0;
  transition: all 0.3s ease;
}

.requirement.valid {
  color: #38a169;
  font-weight: 600;
}

.requirement.invalid {
  color: #e53e3e;
}

/* Сложность пароля */
.password-strength {
  margin-top: 12px;
}

.strength-text {
  font-size: 11px;
  color: #718096;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#strengthLevel {
  font-weight: 600;
}

.strength-bar {
  height: 5px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.strength-weak {
  background: #e53e3e;
  width: 25%;
}

.strength-medium {
  background: #dd6b20;
  width: 50%;
}

.strength-good {
  background: #d69e2e;
  width: 75%;
}

.strength-strong {
  background: #38a169;
  width: 100%;
}

/* Сообщения об ошибках */
.error-message {
  color: #e53e3e;
  font-size: 11px;
  margin-top: 3px;
  min-height: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-message.show {
  opacity: 1;
}

/* ЧЕКБОКС */
.checkbox-group {
  margin: 8px 0 5px 0;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  color: #2d3748;
  cursor: pointer;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
}

.checkbox-group a {
  color: #deb887;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-btn {
  background: #deb887;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #d4a574;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(222, 184, 135, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: #a0aec0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.modal-footer {
  padding: 20px 30px;
  text-align: center;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-radius: 0 0 25px 25px;
}

.modal-footer p {
  margin: 0;
  color: #718096;
  font-size: 13px;
}

.modal-footer a {
  color: #deb887;
  text-decoration: none;
  font-weight: 600;
}

.modal-footer a:hover {
  text-decoration: underline;
}

/* Стили для формы входа */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #2d3748;
  cursor: pointer;
}

.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.forgot-password {
  color: #deb887;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Стили для страницы "О нас" */
.about-page-section {
  padding: 120px 0 80px;
}

.about-main-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3748;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #deb887, #c19a6b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #666;
}

.about-description h2 {
  font-size: 28px;
  color: #2d3748;
  margin: 40px 0 20px 0;
  border-bottom: 2px solid #deb887;
  padding-bottom: 10px;
}

.about-description ul {
  margin: 20px 0;
  padding-left: 20px;
}

.about-description li {
  margin-bottom: 10px;
  position: relative;
}

.about-description li:before {
  content: "•";
  color: #deb887;
  font-weight: bold;
  margin-right: 10px;
}
/* Стили для сетки страницы "О нас" */
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.about-text {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
}

.about-text p {
  margin-bottom: 25px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image .feature-image {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Адаптивность для сетки "О нас" */
@media (max-width: 992px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-content-grid {
    gap: 30px;
    margin-top: 30px;
  }

  .about-text {
    font-size: 16px;
  }
}
/* Стили для секции с изображением слева и текстом справа */
.about-image-text-section {
  padding: 80px 0;
  background: rgba(222, 184, 135, 0.05);
  border-radius: 30px;
  margin: 40px 20px;
}

.about-image-text-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image-left {
  display: flex;
  justify-content: center;
}

.about-image-left .feature-image {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-text-right {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
}

.about-text-right p {
  margin-bottom: 25px;
}

.about-text-right p:last-child {
  margin-bottom: 0;
}

/* Адаптивность для секции с изображением слева */
@media (max-width: 992px) {
  .about-image-text-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text-right {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-image-text-section {
    padding: 60px 0;
    margin: 30px 15px;
  }

  .about-text-right {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-image-text-section {
    padding: 50px 0;
    margin: 20px 10px;
    border-radius: 20px;
  }
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@media (max-width: 992px) {
  .features-grid,
  .no-extras-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .images-text-content,
  .text-images-content,
  .image-text-content,
  .support-content,
  .rating-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .text-right,
  .support-text {
    padding-left: 0;
    text-align: center;
  }

  .images-left {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    gap: 40px;
  }

  .text-left {
    max-width: none;
    text-align: center;
  }

  .rating-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    gap: 15px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0;
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .auth-buttons {
    flex-direction: column;
    margin-left: 0;
    width: 100%;
    gap: 10px;
  }

  .btn-login,
  .btn-register {
    text-align: center;
    width: 100%;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-80-width {
    margin: 90px 0 0 0;
  }

  .image-container-80 {
    width: 90%;
    max-width: 90%;
  }

  .rounded-corners {
    border-radius: 15px;
  }

  .text-section,
  .images-text-section,
  .text-images-section,
  .image-text-section,
  .support-section,
  .features-list-section,
  .no-extras-section,
  .cta-application-section,
  .rating-section,
  .about-page-section {
    padding: 60px 0;
  }

  .bold-text,
  .features-list-section .section-title,
  .no-extras-section .section-title,
  .cta-content h2,
  .about-main-title {
    font-size: 32px;
  }

  .text-right h2,
  .text-left h2,
  .support-text h2,
  .rating-title {
    font-size: 28px;
  }

  .subtitle,
  .text-left .subtitle,
  .rating-subtitle {
    font-size: 18px;
  }

  .images-left {
    flex-direction: column;
    gap: 30px;
  }

  .feature-image {
    max-width: 280px;
  }

  .image-bottom-row .feature-image {
    max-width: 300px;
  }

  .features-grid,
  .no-extras-section .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }

  .feature-item,
  .no-extras-section .feature-item {
    padding: 18px;
  }

  .cta-button {
    font-size: 16px;
    padding: 14px 35px;
  }

  .help-floating-button {
    bottom: 20px;
    right: 20px;
  }

  .help-btn {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 80px;
  }

  .modal-content {
    margin: 5% auto;
    width: 95%;
    border-radius: 20px;
    max-height: 90vh;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-header h2 {
    font-size: 22px;
  }

  .modal-body {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .checkbox-group {
    padding: 8px 10px;
  }

  .modal-footer {
    padding: 15px 25px;
  }

  .form-options {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .about-description h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 12px 20px;
  }

  .logo {
    font-size: 24px;
  }

  .image-container-80 {
    width: 95%;
    max-width: 95%;
  }

  .rounded-corners {
    border-radius: 10px;
  }

  .bold-text,
  .features-list-section .section-title,
  .no-extras-section .section-title,
  .cta-content h2,
  .about-main-title {
    font-size: 28px;
  }

  .text-right h2,
  .text-left h2,
  .support-text h2,
  .rating-title {
    font-size: 24px;
  }

  .feature-image {
    max-width: 100%;
    border-radius: 15px;
  }

  .image-bottom-row .feature-image {
    max-width: 280px;
  }

  .check-icon,
  .cross-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .feature-item span,
  .no-extras-section .feature-item span {
    font-size: 14px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .help-floating-button {
    bottom: 15px;
    right: 15px;
  }

  .help-btn {
    padding: 10px 18px;
    font-size: 13px;
    min-width: 70px;
  }

  .modal-content {
    margin: 2% auto;
    border-radius: 15px;
  }

  .modal-header {
    padding: 15px;
  }

  .modal-header h2 {
    font-size: 20px;
  }

  .modal-body {
    padding: 20px;
  }

  .form-group input {
    padding: 12px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 14px;
    font-size: 14px;
  }

  .checkbox-group {
    padding: 6px 8px;
  }

  .checkbox-group label {
    font-size: 12px;
  }

  .close-btn {
    width: 30px;
    height: 30px;
    font-size: 24px;
    top: 15px;
    right: 15px;
  }

  .checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .remember-me input[type="checkbox"] {
    width: 14px;
    height: 14px;
  }

  .rating-section {
    padding: 50px 0;
    margin: 20px 10px;
    border-radius: 20px;
  }

  .rating-title {
    font-size: 24px;
  }

  .rating-subtitle {
    font-size: 15px;
  }

  .rating-description {
    font-size: 14px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-description h2 {
    font-size: 20px;
  }
}
/* Стили для страниц авторизации */
.auth-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fef9f4 0%, #f8f4f0 100%);
}

.auth-container {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(222, 184, 135, 0.2);
}

.auth-header {
  text-align: center;
  margin-bottom: 40px;
}

.auth-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2d3748;
  background: linear-gradient(135deg, #deb887, #c19a6b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-header p {
  color: #666;
  font-size: 16px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 10px;
}

.auth-switch {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
}

.auth-switch p {
  color: #718096;
  font-size: 14px;
  margin: 0;
}

.auth-switch a {
  color: #deb887;
  text-decoration: none;
  font-weight: 600;
  margin-left: 5px;
}

.auth-switch a:hover {
  text-decoration: underline;
}

/* Убираем модальные окна, так как теперь отдельные страницы */
.modal {
  display: none !important;
}

/* Адаптивность для страниц авторизации */
@media (max-width: 768px) {
  .auth-page {
    padding: 100px 0 60px;
  }

  .auth-container {
    margin: 0 20px;
    padding: 30px 25px;
  }

  .auth-header h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .auth-page {
    padding: 90px 0 50px;
  }

  .auth-container {
    margin: 0 15px;
    padding: 25px 20px;
    border-radius: 15px;
  }

  .auth-header h1 {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
/* Dashboard Styles */
.dashboard {
  min-height: 100vh;
  background: #f8f9fa;
}

.dashboard-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.dashboard-main {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  gap: 2rem;
}

.sidebar {
  width: 250px;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-item {
  padding: 1rem;
  text-decoration: none;
  color: #333;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
  background: #007bff;
  color: white;
}

.content {
  flex: 1;
}

.accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.account-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.balance {
  font-size: 2rem;
  font-weight: bold;
  color: #28a745;
  margin: 1rem 0;
}

.logout-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}

/* About Page Styles - Mobile Optimized */
.about-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #fef9f4 0%, #f8f4f0 100%);
}

.about-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #deb887, #c19a6b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 20px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.about-hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #718096;
}

.about-image-wrapper {
  padding: 40px 0;
}

.about-image-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 0 20px;
}

.about-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.about-features-section {
  padding: 60px 0;
  background: white;
}

.about-section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #deb887, #c19a6b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.about-feature-card {
  background: linear-gradient(135deg, #fef9f4 0%, #f8f4f0 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.about-feature-card:hover {
  transform: translateY(-5px);
}

.about-feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.about-feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
}

.about-feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
}

.about-target-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fef9f4 0%, #f8f4f0 100%);
}

.about-target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.about-target-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.about-target-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.about-target-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.about-target-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
}

.about-mission-section {
  padding: 60px 0;
  background: white;
}

.about-mission-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, #deb887 0%, #c19a6b 100%);
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-mission-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.about-mission-text {
  font-size: 18px;
  line-height: 1.8;
  color: white;
  opacity: 0.95;
}

.about-mission-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: white;
  opacity: 0.9;
  margin-top: 20px;
}

/* Mobile Optimization for About Page */
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 40px;
  }

  .about-hero-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .about-hero-subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .about-hero-description {
    font-size: 15px;
  }

  .about-section-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-feature-card {
    padding: 25px;
  }

  .about-feature-icon {
    font-size: 32px;
  }

  .about-feature-title {
    font-size: 18px;
  }

  .about-feature-text {
    font-size: 14px;
  }

  .about-target-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-target-card {
    padding: 25px;
  }

  .about-target-icon {
    font-size: 40px;
  }

  .about-target-title {
    font-size: 20px;
  }

  .about-target-text {
    font-size: 15px;
  }

  .about-mission-box {
    padding: 35px 20px;
    border-radius: 20px;
  }

  .about-mission-title {
    font-size: 24px;
  }

  .about-mission-text {
    font-size: 16px;
  }

  .about-mission-subtext {
    font-size: 14px;
  }

  .about-features-section,
  .about-target-section,
  .about-mission-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 90px 0 30px;
  }

  .about-hero-title {
    font-size: 26px;
  }

  .about-hero-subtitle {
    font-size: 15px;
  }

  .about-hero-description {
    font-size: 14px;
  }

  .about-section-title {
    font-size: 24px;
  }

  .about-features-grid {
    gap: 15px;
  }

  .about-feature-card {
    padding: 20px;
  }

  .about-target-card {
    padding: 20px;
  }

  .about-mission-box {
    padding: 25px 15px;
  }

  .about-image-container {
    padding: 0 15px;
  }
}
