* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.78) 0%, rgba(16, 185, 129, 0.78) 100%),
    url('/static/images/7fn9zhjx8dq6lnwv3s1fiy4stq07hv6k.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  color: #1a202c;
  line-height: 1.6;
}

main.container {
  flex: 1 0 auto;
}

body, .card, .card.thank-you, .site-header, .site-footer, button, input, select, textarea {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

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

.site-header { 
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.header-left {
  display: flex;
  align-items: center;
}

.brand-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}



.brand-title {
  margin: 0; 
  padding: 0; 
  font-size: 42px; 
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  text-shadow: none;
  letter-spacing: -1px;
  line-height: 1.1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  font-size: 48px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
  -webkit-text-fill-color: initial;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.brand-link {
  text-decoration: none;
  color: inherit;
}

.brand-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-stats {
  display: flex;
  gap: 20px;
  align-items: center;
}

.language-switcher {
  display: flex;
  gap: 8px;
  margin-left: 20px;
}

.lang-btn {
  display: inline-block;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.site-footer {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  position: static;
  left: unset;
  right: unset;
  bottom: unset;
  width: 100%;
  margin-top: 0;
  z-index: 100;
  padding: 25px 0;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 40px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

.site-header h1 { 
  margin: 0; 
  padding: 0; 
  font-size: 36px; 
  font-weight: 700;
  color: white;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
  line-height: 1.2;
}



.card-subtitle {
  margin: 0 0 24px 0;
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.3;
}

.header-subtitle {
  display: none;
}

.card, .card.thank-you {
  background: rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.13), 0 2px 8px rgba(0,0,0,0.06);
  border-radius: 32px;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s, box-shadow 0.3s;
  max-width: 700px;
  width: 100%;
  margin: 32px auto;
  padding: 40px;
  box-sizing: border-box;
}

.card.thank-you {
  padding: 40px;
  text-align: center;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 12px 48px rgba(14, 165, 233, 0.16), 0 2px 8px rgba(0,0,0,0.07);
  border-radius: 36px;
  border: 1.5px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  max-width: 700px;
  width: 100%;
  margin: 32px auto;
  box-sizing: border-box;
}

@media (max-width: 800px) {
  .card, .card.thank-you {
    max-width: 98vw;
    padding: 16px;
  }
}

fieldset { 
  border: none; 
  margin: 25px 0; 
  padding: 0; 
}

legend { 
  font-weight: 700; 
  font-size: 20px;
  margin-bottom: 15px; 
  color: #1a202c;
  padding: 0 10px;
}

.radio { 
  display: block; 
  margin: 12px 0; 
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  color: #2d3748;
  font-weight: 500;
  font-size: 16px;
}

.radio:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  color: #1a202c;
}

.radio input[type="radio"] {
  margin-right: 12px;
  transform: scale(1.2);
}

.field { 
  display: block; 
  margin: 20px 0; 
}

.field span { 
  display: block; 
  font-size: 18px; 
  font-weight: 700;
  margin-bottom: 8px; 
  color: #1a202c; 
}

input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  width: 100%; 
  padding: 16px 20px; 
  background: rgba(255,255,255,0.7);
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  font-size: 16px; 
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.04);
  transition: border 0.2s, box-shadow 0.2s;
}

input::placeholder {
  color: #718096;
}

input:focus { 
  outline: none; 
  border-color: #0ea5e9;
  background: rgba(255, 255, 255, 1);
  box-shadow: 
    0 0 0 4px rgba(14, 165, 233, 0.12),
    0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  color: #1a202c;
}

input.error {
  border-color: #e53e3e;
  background: rgba(244, 242, 242, 0.95);
  box-shadow: 
    0 0 0 4px rgba(229, 62, 62, 0.12),
    0 8px 25px rgba(0, 0, 0, 0.1);
}

input.error:focus {
  border-color: #e53e3e;
  box-shadow: 
    0 0 0 4px rgba(229, 62, 62, 0.12),
    0 8px 25px rgba(0, 0, 0, 0.1);
}

.actions { 
  margin-top: 30px; 
  text-align: center;
}

button { 
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  color: white; 
  border: none; 
  border-radius: 14px;
  padding: 16px 32px; 
  font-size: 18px; 
  font-weight: 600;
  cursor: pointer; 
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.10);
  transition: background 0.2s, box-shadow 0.2s;
}

button:hover { 
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(14, 165, 233, 0.45),
    0 6px 15px rgba(0, 0, 0, 0.15);
}

button:active {
  transform: translateY(-1px);
}

.flash-list { 
  list-style: none; 
  padding: 0; 
  margin: 0 0 20px; 
  transition: all 0.3s ease;
}

.flash-item { 
  padding: 16px 20px; 
  border-radius: 12px; 
  margin: 12px 0; 
  font-size: 16px; 
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.flash-item.error { 
  background: rgba(245, 101, 101, 0.9);
  color: white;
  border: 1px solid rgba(245, 101, 101, 0.3);
}

.flash-item.info { 
  background: rgba(66, 153, 225, 0.9);
  color: white;
  border: 1px solid rgba(66, 153, 225, 0.3);
}

.site-footer small {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  display: block;
  font-weight: 400;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  
  .card {
    padding: 25px;
    border-radius: 15px;
  }
  
  /* Улучшенный мобильный хедер */
  .site-header {
    padding: 15px 0;
    min-height: auto;
  }
  
  .header-content {
    padding: 0;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .header-left {
    padding: 10px;
    text-align: center;
  }
  
  .brand-title {
    font-size: 32px;
    justify-content: center;
    gap: 12px;
  }
  
  .logo-icon {
    font-size: 36px;
  }
  
  .brand-subtitle {
    font-size: 14px;
    margin-top: 5px;
  }
  
  .header-right {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .header-stats {
    gap: 15px;
  }
  
  .stat-item {
    padding: 12px 16px;
    min-width: 120px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 11px;
  }
  
  .language-switcher {
    margin-left: 0;
    gap: 6px;
  }
  
  .lang-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
  
  button {
    width: 100%;
    padding: 18px;
  }
}

/* Стили для очень маленьких экранов */
@media (max-width: 480px) {
  .site-header {
    padding: 10px 0;
  }
  
  .header-content {
    gap: 15px;
  }
  
  .brand-title {
    font-size: 28px;
    gap: 10px;
  }
  
  .logo-icon {
    font-size: 32px;
  }
  
  .brand-subtitle {
    font-size: 12px;
  }
  
  .header-stats {
    gap: 12px;
  }
  
  .stat-item {
    padding: 10px 12px;
    min-width: 100px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .stat-label {
    font-size: 10px;
  }
  
  .language-switcher {
    gap: 5px;
  }
  
  .lang-btn {
    padding: 5px 8px;
    font-size: 12px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
} 

.card.thank-you {
  padding: 70px 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.08), 0 2px 8px rgba(0,0,0,0.03);
  border-radius: 28px;
  border: 1.5px solid rgba(14, 165, 233, 0.08);
  transition: background 0.3s;
}
.card.thank-you h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #0891b2;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(14, 165, 233, 0.06);
}
.card.thank-you p {
  font-size: 18px;
  color: #18181b;
  margin-bottom: 16px;
  font-weight: 500;
}
.card.thank-you a {
  font-size: 17px;
  color: #2563eb;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 1px 4px rgba(37, 99, 235, 0.10);
}
.card.thank-you a:hover {
  color: #1d4ed8;
  text-shadow: 0 2px 8px rgba(37, 99, 235, 0.16);
} 

.phone-input-container {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.country-select {
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 200px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: white;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
}

.country-select:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.phone-input-container input[type="tel"] {
  flex: 1;
  min-width: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Отключаем автозаполнение браузера */
.phone-input-container input[type="tel"]::-webkit-outer-spin-button,
.phone-input-container input[type="tel"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.phone-input-container input[type="tel"]:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
} 

.phone-input-container input[type="text"] {
  flex: 1;
  min-width: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  text-align: center;
}

/* Отключаем автозаполнение браузера */
.phone-input-container input[type="text"]::-webkit-outer-spin-button,
.phone-input-container input[type="text"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.phone-input-container input[type="text"]:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
} 

.form-header {
  text-align: left;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.form-description {
  font-size: 18px;
  color: #4a5568;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
} 

.consultation-card {
  max-width: 600px;
  margin: 32px auto;
}

.consultation-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.consultation-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.consultation-description {
  font-size: 18px;
  color: #4a5568;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

.consultation-form fieldset {
  border: none;
  margin: 25px 0;
  padding: 0;
}

.consultation-form legend {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a202c;
  padding: 0 10px;
} 

/* Современный дизайн формы */
.modern-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 8px 32px rgba(14, 165, 233, 0.15);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(14, 165, 233, 0.1);
  position: relative;
}

.form-header-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.form-title {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.form-description {
  font-size: 18px;
  color: #4a5568;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.question-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.question-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.question-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(14, 165, 233, 0.2);
}

.question-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.question-number {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.question-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.question-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  flex: 1;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.option-card {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-content {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(14, 165, 233, 0.1);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.option-card:hover .option-content {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
}

.option-card input[type="radio"]:checked + .option-content {
  border-color: #0ea5e9;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

.option-emoji {
  font-size: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.option-text {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.4;
}

.submit-btn {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  min-width: 280px;
  justify-content: center;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(14, 165, 233, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.btn-icon {
  font-size: 24px;
}

.btn-text {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .modern-form {
    padding: 25px 20px;
  }
  
  .form-title {
    font-size: 26px;
  }
  
  .question-card {
    padding: 20px;
  }
  
  .question-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .submit-btn {
    width: 100%;
    min-width: auto;
    padding: 18px 30px;
  }
} 

/* Современный дизайн страницы консультации */
.consultation-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(14, 165, 233, 0.1);
  position: relative;
}

.consultation-header-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.consultation-title {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.consultation-description {
  font-size: 18px;
  color: #4a5568;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.form-fields-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.form-field-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 25px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.form-field-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(14, 165, 233, 0.2);
}

.field-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.field-icon {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.field-label {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.modern-input, .modern-select {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(14, 165, 233, 0.1);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  color: #2d3748;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.05);
}

.modern-input:focus, .modern-select:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
  transform: translateY(-1px);
}

.modern-input::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.modern-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 45px;
}

.modern-select:hover {
  border-color: rgba(14, 165, 233, 0.3);
}

/* Обновленные стили для phone-input-container */
.phone-input-container {
  display: flex;
  gap: 15px;
  align-items: center;
}

.phone-input-container .country-select {
  min-width: 200px;
  max-width: 220px;
  flex-shrink: 0;
}

.phone-input-container .modern-input {
  flex: 1;
  min-width: 0;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  text-align: center;
}

/* Адаптивность для страницы консультации */
@media (max-width: 768px) {
  .consultation-title {
    font-size: 26px;
  }
  
  .form-field-card {
    padding: 20px;
  }
  
  .field-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .phone-input-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .phone-input-container .country-select {
    min-width: 100%;
    max-width: 100%;
  }
} 

/* Современный дизайн страницы "спасибо" */
.thank-you-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.thank-you-left {
  flex: 0 0 300px;
}

.thank-you-image {
  text-align: center;
}

.thank-you-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.thank-you-img:hover {
  transform: scale(1.02);
}

.manager-name {
  margin-top: 15px;
  font-size: 28px;
  font-weight: 700;
  color: white;
  text-align: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.thank-you-right {
  flex: 1;
  min-width: 0;
}

.thank-you-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(14, 165, 233, 0.1);
  position: relative;
}

.thank-you-icon {
  font-size: 64px;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.thank-you-title {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.thank-you-description {
  font-size: 20px;
  color: #4a5568;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* Стили для информации о законах ЕС */
.eu-laws-section {
  margin-top: 40px;
  text-align: center;
}

.eu-laws-info {
  margin: 0 auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  max-width: 600px;
}

.eu-laws-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 25px 0;
  text-align: center;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eu-laws-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.law-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  transition: all 0.3s ease;
}

.law-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.2);
}

.law-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  flex-shrink: 0;
}

.law-text {
  font-size: 16px;
  color: #2d3748;
  line-height: 1.5;
}

.law-text strong {
  color: #1a202c;
  font-weight: 700;
}

.thank-you-actions {
  text-align: center;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
  color: white;
  text-decoration: none !important;
  border-radius: 16px;
  padding: 18px 32px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  min-width: 250px;
  justify-content: center;
}

.back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(16, 185, 129, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.15);
  color: white;
  text-decoration: none !important;
}

.back-btn:active {
  transform: translateY(-1px);
}

.back-btn .btn-icon {
  font-size: 22px;
}

.back-btn .btn-text {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none !important;
}

.back-btn:link,
.back-btn:visited {
  text-decoration: none !important;
}

/* Дополнительные правила для полного удаления подчеркивания */
.back-btn,
.back-btn:link,
.back-btn:visited,
.back-btn:hover,
.back-btn:active,
.back-btn:focus {
  text-decoration: none !important;
}

.back-btn *,
.back-btn:link *,
.back-btn:visited *,
.back-btn:hover *,
.back-btn:active *,
.back-btn:focus * {
  text-decoration: none !important;
}

/* Адаптивность для страницы "спасибо" */
@media (max-width: 1024px) {
  .thank-you-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .thank-you-left {
    flex: none;
    text-align: center;
  }
  
  .thank-you-img {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .thank-you-title {
    font-size: 28px;
  }
  
  .thank-you-description {
    font-size: 18px;
  }
  
  .eu-laws-info {
    padding: 20px;
  }
  
  .eu-laws-title {
    font-size: 20px;
  }
  
  .law-item {
    padding: 15px;
  }
  
  .back-btn {
    width: 100%;
    min-width: auto;
    padding: 16px 28px;
  }
} 