* { box-sizing: border-box; margin: 0; padding: 0; }
.ts-topbar { width: 100%; height: 4px; background: #3e980e; }
.ts-header {
  width: 100%; display: flex; align-items: center;
  justify-content: center; padding: 28px 20px 24px;
  border-bottom: 1px solid #f0f0f0; margin-bottom: 32px;
}
.ts-logo img { height: 64px; width: auto; display: block; }
.ts-content {
  max-width: 520px; margin: 0 auto;
  padding: 0 20px 52px;
  display: flex; flex-direction: column; align-items: center;
}
.ts-badge {
  background: #f0faea; border: 1.5px solid #b6e8a0;
  color: #2d7a08; font-size: 25px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 100px; margin-bottom: 22px;
}
.ts-headline {
  font-weight: 900;
  font-size: clamp(28px, 6.5vw, 46px);
  line-height: 1.08; text-align: center; color: #0d0d0d; margin-bottom: 14px;
}
.ts-headline .accent { color: #3e980e; display: block; }
.ts-subtext {
  font-size: 15px; line-height: 1.7; color: #555;
  text-align: center; margin-bottom: 28px; max-width: 400px;
}
.ts-subtext strong { color: #111; font-weight: 600; }

/* 24/7 BLOCK */
.ts-247 {
  width: 100%; background: #3e980e; border-radius: 22px;
  padding: 26px 24px 22px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 20px;
  position: relative; overflow: hidden;
}
.ts-247-circle {
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.07); border-radius: 50%;
}
.ts-247-circle2 {
  position: absolute; bottom: -40px; left: -20px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
}
.ts-247-left { flex-shrink: 0; position: relative; z-index: 1; }
.ts-247-num {
  font-weight: 900; font-size: 56px; line-height: 1;
  color: #fff; letter-spacing: -2px;
}
.ts-247-tag {
  background: rgba(255,255,255,0.2); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  margin-top: 6px; display: inline-block;
}
.ts-247-right { flex: 1; position: relative; z-index: 1; }
.ts-247-title {
  font-weight: 800; font-size: 17px; color: #fff;
  margin-bottom: 5px; line-height: 1.25;
}
.ts-247-desc { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.5; }
.ts-pulse-dot {
  display: inline-block; width: 7px; height: 7px;
  background: #fff; border-radius: 50%;
  animation: blink 1.6s infinite; margin-right: 5px; vertical-align: middle;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

/* VACANCY BLOCK */
.ts-vacancy {
  width: 100%; background: #f7fdf3;
  border: 1.5px solid #c8ebb0; border-radius: 18px;
  padding: 18px 20px; margin-bottom: 28px;
  display: flex; align-items: flex-start; gap: 14px;
}
.ts-vacancy-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: #3e980e; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.ts-vacancy-title {
  font-weight: 800; font-size: 15px; color: #4ca926; margin-bottom: 4px;
}
.ts-vacancy-desc { font-size: 13px; color: #3a3a3a; line-height: 1.5; }

/* BENEFITS */
.ts-benefits { width: 100%; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.ts-benefit {
  display: flex; align-items: center; gap: 12px;
  background: #fafafa; border: 1px solid #ebebeb;
  border-radius: 14px; padding: 13px 16px;
}
.ts-benefit-icon {
  width: 36px; height: 36px; background: #f0faea;
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 17px;
}
.ts-benefit-text { font-size: 13.5px; color: #444; line-height: 1.4; }
.ts-benefit-text b { color: #111; font-weight: 600; display: block; margin-bottom: 1px; font-size: 14px; }

/* CTA */
.ts-cta-title {
  font-weight: 800; font-size: 20px; color: #0d0d0d;
  text-align: center; margin-bottom: 5px;
  margin-top: 20px;
}
.ts-cta-sub { font-size: 13px; color: #999; text-align: center; margin-bottom: 20px; }
.ts-buttons { width: 100%; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.ts-btn {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 18px; border-radius: 15px;
  text-decoration: none; font-size: 14.5px; font-weight: 600;
  transition: transform 0.13s, filter 0.13s;
  cursor: pointer; border: none; width: 100%;
  position: relative; overflow: hidden;
}
.ts-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  animation: ts-shine 2.8s infinite;
}
.ts-buttons a:nth-child(2)::before { animation-delay: 0.7s; }
.ts-buttons a:nth-child(3)::before { animation-delay: 1.4s; }
.ts-buttons a:nth-child(4)::before { animation-delay: 2.1s; }
@keyframes ts-shine {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}
.ts-btn:hover { filter: brightness(1.07); color:#fff; }
.ts-btn:active { transform: scale(0.97); color:#fff; }
.ts-btn-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ts-btn-label { display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.ts-btn-label small { font-size: 10.5px; font-weight: 500; opacity: 0.7; margin-bottom: 1px; }
.ts-btn-label span { font-size: 15px; font-weight: 700; }
.ts-btn-arrow { opacity: 0.5; font-size: 16px; }
.ts-btn-instagram { background: linear-gradient(135deg, #833ab4 0%, #c13584 40%, #e1306c 65%, #f56040 85%, #fcaf45 100%); color: #fff; }
.ts-btn-viber { background: #7360f2; color: #fff; }
.ts-btn-telegram { background: #2AABEE; color: #fff; }
.ts-btn-whatsapp { background: #25D366; color: #fff; }

.ts-divider {
  width: 100%; display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.ts-divider-line { flex: 1; height: 1px; background: #e8e8e8; }
.ts-divider-text { font-size: 12px; color: #aaa; font-weight: 500; white-space: nowrap; }

.ts-phone-btn {
  display: flex; align-items: center; gap: 13px;
  padding: 16px 18px; border-radius: 15px;
  background: #f5f5f5; border: 1.5px solid #e0e0e0;
  text-decoration: none; color: #111; width: 100%; margin-bottom: 36px;
  transition: background 0.15s;
}
.ts-phone-btn:hover { background: #ececec; }
.ts-phone-icon {
  width: 40px; height: 40px; background: #3e980e;
  border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ts-phone-info { display: flex; flex-direction: column; }
.ts-phone-info small { font-size: 11px; color: #888; margin-bottom: 2px; }
.ts-phone-info span { font-size: 18px; font-weight: 700; }
.ts-footer { text-align: center; font-size: 11.5px; color: #bbb; line-height: 1.7; }
.ts-footer a { color: #999; text-decoration: none; }

.footer-social {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin: 10px 0 4px;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.15s, transform 0.12s;
  flex-shrink: 0;
}
.footer-social a:hover { opacity: 0.8; transform: scale(1.1); }
.fs-instagram { background: linear-gradient(135deg, #833ab4 0%, #c13584 40%, #e1306c 65%, #f56040 85%, #fcaf45 100%); }
.fs-tiktok    { background: #010101; }
.fs-youtube   { background: #FF0000; }

/* LEAD FORM */
.ts-lead-wrap {
  width: 100%; background: #f7fdf3;
  border: 1.5px solid #c8ebb0; border-radius: 22px;
  padding: 24px 20px; margin-bottom: 32px;
}
.ts-lead-title {
  font-weight: 800;
  font-size: 16px; color: #4ca926; text-align: center;
  margin-bottom: 18px; line-height: 1.35;
}
.ts-lead-form { display: flex; flex-direction: column; gap: 12px; }
.ts-lead-field { display: flex; flex-direction: column; gap: 5px; }
.ts-lead-field label { font-size: 12px; font-weight: 600; color: #555; letter-spacing: 0.2px; }
.ts-lead-field input {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid #dde8d5; border-radius: 12px;
  font-size: 14px; color: #111;
  background: #fff; outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
#citySelectBlk .token{
	border: 1px solid #d9d9d9;
background-color: #ededed;
white-space: nowrap;
margin: -1px 5px 5px 0;
height: 22px;
vertical-align: top;
cursor: default;
display: inline-flex;
align-items: center;
font-size: 14px;
border-radius: 3px;
padding: 0px 5px;
}

#citySelectBlk .token-input{
	background: #fff url(<?php echo esc_url(get_template_directory_uri()); ?>/img/anketa/search.png) no-repeat calc(0% + 10px);
}

.ts-lead-row { display: flex; gap: 10px; }
.ts-lead-row .ts-lead-field { flex: 1; min-width: 0; }
.ts-lead-field select {
  width: 100%;
  border: 1.5px solid #dde8d5;
  font-size: 14px; color: grey;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
.ts-lead-field select:focus { border-color: #3e980e; }
.ts-lead-field input:focus { border-color: #3e980e; }
.ts-lead-field input.ts-inp-error { border-color: #e53935; }
.ts-lead-submit {
  width: 100%; padding: 15px 20px; margin-top: 4px;
  background: #3e980e; color: #fff; border: none;
  border-radius: 14px; cursor: pointer;
  sans-serif; font-weight: 800;
  font-size: 15px; display: flex; align-items: center;
  justify-content: center; gap: 10px;
  transition: filter 0.15s, transform 0.12s;
}
.ts-lead-submit:hover { filter: brightness(1.08); }
.ts-lead-submit:active { transform: scale(0.97); }
.ts-lead-submit:disabled { opacity: 0.65; cursor: default; }
.ts-lead-success {
  display: none; flex-direction: column; align-items: center;
  padding: 12px 0 4px;
}
.ts-lead-ok-circle {
  width: 60px; height: 60px; background: #3e980e;
  border-radius: 50%; color: #fff; font-size: 30px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.ts-lead-ok-title {
  font-weight: 800;
  font-size: 18px; color: #1a5c00; margin-bottom: 6px;
}
.ts-lead-ok-sub { font-size: 13.5px; color: #555; text-align: center; }
