.anketa-title {
  margin: 150px auto 50px;
  padding: 0 25px;
  font-size: clamp(26px, 4vw, 37px);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: var(--text-dark);
}

.anketa-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.anketa-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

.anketa-info-banner {
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 64px;
  background: linear-gradient(135deg, #e8f5e8 0%, #d4eed4 100%);
  padding: 20px 24px;
  margin-bottom: 25px;
  border-radius: var(--border-radius);
  border-left: 4px solid #4CAF50;
}

.anketa-info-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.anketa-info-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 19px;
  line-height: 1.6;
}

.anketa-info-text h4 {
  margin-top: 0;
  color: #2e7d32;
}

.anketa-info-text p {
  margin: 0;
}

.anketa-info-text p + p {
  margin-top: 6px;
}

.anketa-calculator-info {
  font-size: 14px;
  margin-top: 10px;
  color: #666;
}

.anketa-desc-centered {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 2px solid #0B7578;
  max-width: 600px;
}

.anketa-desc-icon {
  font-size: 27px;
  margin-bottom: 15px;
  display: block;
}

.anketa-desc-text {
  font-size: 19px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}

.anketa-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.anketa-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
}

.anketa-form-group label {
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}

.anketa-form-group input,
.anketa-form-group textarea,
.anketa-form-group select {
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: #fff;
  font-size: 15px;
  line-height: 1.4;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.anketa-form-group input:focus,
.anketa-form-group textarea:focus,
.anketa-form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(11, 117, 120, 0.1);
}

.anketa-step {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border: 1px solid #e0e0e0;
}

.anketa-step-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f8f9fa;
  text-align: center;
}

.anketa-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.anketa-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  background: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.anketa-radio-label:hover {
  border-color: var(--primary-color);
  background: #f8f9fa;
}

.anketa-radio-label input[type="radio"] {
  margin: 0;
  transform: scale(1.1);
}

.anketa-radio-label input[type="radio"]:checked {
  accent-color: var(--primary-color);
}

.anketa-radio-label:has(input[type="radio"]:checked) {
  border-color: var(--primary-color);
  background: #f0f9f9;
  color: var(--primary-color);
  font-weight: 600;
}

.anketa-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.anketa-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  background: #fff;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.anketa-checkbox-label:hover {
  border-color: var(--primary-color);
  background: #f8f9fa;
}

.anketa-checkbox-label input[type="checkbox"] {
  margin: 0;
  transform: scale(1.1);
  width: 18px;
  height: 18px;
}

.anketa-checkbox-label input[type="checkbox"]:checked {
  accent-color: var(--primary-color);
}

.anketa-checkbox-label:has(input[type="checkbox"]:checked) {
  border-color: var(--primary-color);
  background: #f0f9f9;
  color: var(--primary-color);
  font-weight: 600;
}

.anketa-other-input {
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: #fff;
  font-size: 15px;
  line-height: 1.4;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.anketa-form-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin: 30px 0;
}

.anketa-submit-btn {
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  background: #B35A12;
  color: #fff;
  font-weight: 400;
  cursor: pointer;
  height: 52px;
  min-width: 240px;
  font-size: 18px;
  transition: var(--transition);
  font-family: "Montserrat", sans-serif;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.anketa-submit-btn:hover {
  background: #0B9498;
  box-shadow: var(--shadow-hover);
}

.anketa-video-gift-promo-block {
  background: linear-gradient(135deg, #f0f9ff 0%, #e1f5fe 100%);
  border-radius: 16px;
  border: 2px solid #4fc3f7;
  padding: 30px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.15);
}

.anketa-video-gift-promo-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.anketa-video-gift-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.anketa-video-gift-icon {
  font-size: 40px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.anketa-video-gift-title {
  font-size: 22px;
  font-weight: 700;
  color: #0277bd;
  margin: 0;
  line-height: 1.3;
  margin-left: auto;
  margin-right: auto;
}

.anketa-video-gift-description {
  font-size: 18px;
  margin: 0 0 20px 0;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #0B7578, #B35A12);
  background-clip: text;
  color: transparent;
  text-align: center;
}

.anketa-video-gift-features {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #b3e5fc;
  width: 80%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.anketa-feature-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #37474f;
}

.anketa-feature-item:not(:last-child) {
  border-bottom: 1px dashed #e1f5fe;
}

.anketa-feature-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.anketa-delivery-info {
  gap: 12px;
  background: linear-gradient(90deg, #e3f2fd, #f3e5f5);
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #8e24aa;
  display: flex;
  justify-content: center;
  align-items: center;
}

.anketa-delivery-icon {
  font-size: 24px;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-5px); }
}

.anketa-delivery-text {
  font-weight: 600;
  color: #6a1b9a;
  font-size: 16px;
}

.anketa-video-gift-cta {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.anketa-cta-badge {
  background: linear-gradient(135deg, #eaa5b3, #d98a9a);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(245, 0, 87, 0.3);
}

.anketa-telegram-success {
    display: none;
    margin: 130px auto;
    padding: 30px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 16px;
    border: 3px solid #2196F3;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2);
    animation: slideDown 0.5s ease-out;
    position: relative;
    z-index: 100;
}

.anketa-telegram-success.show {
    display: block;
}

.anketa-tg-icon {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.anketa-tg-text {
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.anketa-honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

.anketa-notification {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.anketa-notification-error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.anketa-notification-success {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
}

#full-anketa-section.hidden-form {
    display: none;
}

#full-anketa-section.form-disabled {
    opacity: 0.3;
    pointer-events: none;
    position: relative;
}

#full-anketa-section.form-disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 100;
}

.anketa-telegram-success-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.anketa-telegram-success-icon {
    font-size: 48px;
    animation: bounce 1s infinite alternate;
}

.anketa-telegram-success-title {
    font-size: 24px;
    font-weight: 600;
    color: #0d47a1;
    margin: 0;
}

.anketa-telegram-success-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.anketa-telegram-video-gift {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid #64b5f6;
}

.anketa-telegram-video-gift h4 {
    color: #1976d2;
    margin-top: 0;
    font-size: 24px;
    text-align: center;
}

.anketa-telegram-video-gift p {
    margin-top: 0;
    font-size: 22px;
    background: linear-gradient(90deg, #0B7578, #B35A12);
    background-clip: text;
    color: transparent;
    display: block;
    text-align: center;
}

.anketa-telegram-video-gift ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 25px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}

.anketa-telegram-video-gift li {
    padding: 15px 10px;
    border-bottom: 1px dashed #e3f2fd;
    display: flex;
    align-items: center;
    gap: 15px;
	font-size: 16px;
}

.anketa-telegram-video-gift li:last-child {
    border-bottom: none;
}

.anketa-telegram-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.anketa-telegram-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.anketa-telegram-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.4);
    background: linear-gradient(135deg, #0099e6 0%, #0077b5 100%);
}

.anketa-telegram-security-note {
    background: #f1f8e9;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    border-left: 4px solid #8bc34a;
    font-size: 14px;
    color: #33691e;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anketa-has-error {
  border-color: #e74c3c;
  background-color: #fffafa;
  animation: highlightError 1.5s ease;
}

.anketa-form-group.anketa-has-error input,
.anketa-form-group.anketa-has-error select,
.anketa-form-group.anketa-has-error textarea {
  border-color: #e74c3c;
}

#worries-group.anketa-has-error {
  border: 2px solid #e74c3c;
  background-color: #fffafa;
  border-radius: var(--border-radius);
  padding: 15px;
  margin-bottom: 10px;
}

.anketa-field-error {
  color: #e74c3c;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 600;
  padding: 8px;
  background-color: #ffeaea;
  border-radius: 4px;
  border: 1px solid #e74c3c;
  animation: fadeIn 0.3s ease-in;
  text-align: center;
}

@keyframes highlightError {
  0%, 100% { 
    box-shadow: var(--shadow); 
  }
  50% { 
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3); 
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes highlight-fade {
  0% { 
    background-color: rgba(220, 53, 69, 0.1); 
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
  }
  100% { 
    background-color: transparent; 
    box-shadow: none;
  }
}

@media (max-width: 1210px) {
  .anketa-title {
    margin: 90px auto 30px;
  }
}

@media (max-width: 780px) {
  .anketa-form {
    gap: 16px;
  }
  
  .anketa-video-gift-promo-block {
    padding: 20px;
    margin: 20px 0;
  }
  
  .anketa-video-gift-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .anketa-video-gift-title {
    font-size: 18px;
  }
  
  .anketa-video-gift-description {
    font-size: 16px;
  }
  
  .anketa-video-gift-features {
    padding: 15px;
  }
  
  .anketa-feature-item {
    font-size: 14px;
  }
  
  .anketa-delivery-info {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px;
  }
  
  .anketa-delivery-text {
    font-size: 14px;
  }
  
  .anketa-cta-badge {
    position: static;
    display: inline-block;
    margin-top: 10px;
  }

  .anketa-checkbox-label {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .anketa-checkbox-label input[type="checkbox"] {
    transform: scale(1);
    width: 16px;
    height: 16px;
  }
  
  .anketa-submit-btn {
    min-width: 200px;
    height: 48px;
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .anketa-info-banner {
    flex-direction: column;
    align-items: center;
    min-height: unset;
    text-align: center;
    padding: 15px;
    gap: 12px;
  }
  
  .anketa-telegram-btn-primary {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .anketa-tg-icon {
    flex-shrink: 0;
  }
  
  .anketa-container {
    padding: 0 15px;
  }
  
  .anketa-step {
    padding: 20px 15px;
    margin-bottom: 15px;
  }
  
  .anketa-step-title {
    font-size: 16px;
  }
  
  .anketa-radio-label {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .anketa-form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    margin: 20px 0;
  }
  
  .anketa-submit-btn {
    width: 100%;
    max-width: none;
    min-width: 0;
    height: 48px;
    font-size: 16px;
  }
  
  .anketa-telegram-success-title {
    font-size: 22px;
  }

  .anketa-telegram-success-description {
    font-size: 16px;
  }

  .anketa-telegram-video-gift h4 {
    font-size: 21px;
  }

  .anketa-telegram-video-gift p {
    font-size: 20px;
  }

  .anketa-telegram-video-gift ul {
    font-size: 25px;
  }

  .anketa-telegram-video-gift li {
    font-size: 14px;
  }
}