html {
  scroll-behavior: smooth;
  max-width: 100%;
}

:root {
  --primary-color: #062c47;
  --secondary-color: #38485d;
  --accent-color: #ffd700;
  --text-color: #38485d;
  --background-color: #f2f6ff;
  --btn-bg: #062c47;
}

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

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body > * {
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* Prevent horizontal overflow from media elements */
img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

h1,
h2,
h3 {
  font-weight: 700;
}

p {
  line-height: 1.6;
  color: #555;
}

/* Основной контент */
main {
  background-color: var(--background-color);
}

/* Секции */
section {
  padding: 80px 0;
  width: 100%;
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}

section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  color: var(--primary-color);
  z-index: 1;
}

section p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 1;
}

.urgency-banner {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  margin: 20px auto 25px;
  max-width: 600px;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
  animation: pulse-discount 3s infinite;
}

.urgency-banner strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.urgency-banner .countdown {
  font-size: 14px;
  opacity: 0.95;
  font-weight: 500;
}

/* Карточки */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

#search {
  background-color: var(--background-color);
}

/* Widget Header Styles */
.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.widget-title h2 {
  font-size: 32px;
  color: #062c47;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-title h2 i {
  color: #0056fd;
}

.widget-title p {
  color: #5a6d85;
  font-size: 16px;
  margin: 0;
}

.availability-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0dc450 0%, #14b354 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(13, 196, 80, 0.3);
}

.blink {
  animation: blink-animation 1.5s infinite;
}

@keyframes blink-animation {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

@media (max-width: 768px) {
  .widget-header {
    flex-direction: column;
    text-align: center;
  }
  
  .widget-title h2 {
    font-size: 24px;
    justify-content: center;
  }
  
  .availability-badge {
    font-size: 13px;
    padding: 8px 16px;
  }
}

.icon {
  color: #0056fd;
  font-size: 35px;
}

.card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 0;
}

.card ul {
  text-align: left;
  margin-top: 20px;
}

.card ul li {
  font-size: 16px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.5em;
  line-height: 1.6;
  top: 50%;
  transform: translateY(-50%);
}

/* Кнопки */

/* Контакты */
.contact-links {
  text-align: center;
}

.contact-links .btn {
  margin: 10px;
}

/* Фоновые стили для секций */
.bg-blurred {
  position: relative;
  color: #fff;
}

#introduction {
  background: #f2f6ff;
  min-height: 500px;
}

#introduction p {
  font-size: 18px;
  color: #5a6d85;
}

#prices {
  background: #f2f6ff;
}

#how-it-works {
  background: url(/static/imgs/bg/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#services {
  background: url(/static/imgs/bg/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Секция сотрудничества */
.cooperation-section {
  background: #f2f6ff;
  padding: 10rem 0;
  color: #0a0f1b;
  text-align: center;
  position: relative;
}

.cooperation-section h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0a0f1b;
  position: relative;
  z-index: 1;
}

.cooperation-section .subtitle {
  font-size: 18px;
  color: var(--primary-color);
  margin-top: 6rem;
  margin-bottom: 6rem;
  position: relative;
  z-index: 1;
}

.cooperation-section .cards {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: nowrap;
  margin-bottom: 6rem;
  position: relative;
  z-index: 1;
}

.cooperation-section .card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 4rem;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
  z-index: 2;
}

.cooperation-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  background: #f8f9ff;
}

.cooperation-section .card-content {
  text-align: left;
  position: relative;
  z-index: 3;
}

.cooperation-section .card h3 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #0a0f1b;
}

.cooperation-section .card-description {
  font-size: 14px;
  color: #4a5568;
  margin-bottom: 2.5rem;
  display: grid;
  justify-content: start;
}

.cooperation-section .card-income {
  background: #0056fd;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cooperation-section .card-income::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  z-index: 1;
}

.cooperation-section .card-income .income-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  position: relative;
  z-index: 2;
}

.cooperation-section .card-income .income-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

.cooperation-section .card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.cooperation-section .card-list li {
  font-size: 12px;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 2rem;
  color: var(--primary-color);
}

.cooperation-section .card-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0056fd;
  font-size: 1.2rem;
}

.section-button {
  display: inline-block;
  background: rgb(0, 86, 253);
  color: rgb(255, 255, 255);
  padding: 1.2rem 3rem;
  border-radius: 1.4rem;
  text-decoration: none;
  font-size: 2.5rem;
  transition: background 0.3s;
  position: relative;
  z-index: 2;
}

.section-button:hover {
  background: #004ad9;
}

.blur-ball {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.ball-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 86, 253, 0.2), transparent);
  top: -400px;
  left: -400px;
}

@media (max-width: 768px) {
  .hidden-ball{
  visibility: hidden !important;
}

}

.ball-2 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 86, 253, 0.2), transparent);
  bottom: -450px;
  right: -450px;
}

#connector.ball-2 {
  width: 300px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 86, 253, 0.2), transparent);
  bottom: -300px;
  right: -300px;
}

@media (max-width: 768px) {
  .cooperation-section .cards {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .cooperation-section .card {
    max-width: 100%;
    margin: 0 1rem;
    padding: 2.5rem;
    width: calc(100% - 2rem);
  }

  .cooperation-section h2 {
    font-size: 2.5rem;
    padding: 0 1rem;
  }

  .cooperation-section .card h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .cooperation-section .card:hover {
    transform: translateY(-5px);
  }

  .cooperation-section .card-description {
    font-size: 1.2rem;
  }

  .cooperation-section .card-list li {
    font-size: 1.1rem;
  }
}

.bg-blurred .container {
  position: relative;
  z-index: 1;
}

/* Анимации AOS */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
  background: #f2f6ff;
  padding: 80px 0;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonials-section h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin: 0;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.rating-badge i {
  color: #ff6b35;
  font-size: 16px;
}

.rating-badge span {
  font-size: 18px;
  font-weight: 700;
}

.rating-badge small {
  font-size: 14px;
  opacity: 0.8;
}

.testimonials-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5a6d85;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: #f8f9fb;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #0056fd;
  box-shadow: 0 10px 30px rgba(0, 86, 253, 0.15);
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0056fd 0%, #004ad9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  color: #062c47;
  font-size: 16px;
  margin-bottom: 5px;
}

.testimonial-rating {
  display: flex;
  gap: 2px;
}

.testimonial-rating i {
  color: #FFD700;
  font-size: 14px;
}

.testimonial-heart {
  text-align: center;
  margin-top: 15px;
}

.testimonial-heart i {
  color: #ff6b6b;
  font-size: 20px;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.testimonial-text {
  color: #5a6d85;
  line-height: 1.6;
  font-size: 15px;
  font-style: italic;
}

.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-testimonial {
  display: inline-block;
  background: linear-gradient(135deg, #0056fd 0%, #004ad9 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 86, 253, 0.4);
}

.btn-testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 86, 253, 0.6);
}

@media (max-width: 768px) {
  .testimonials-header {
    justify-content: center;
  }
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 28px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .btn-testimonial {
    font-size: 16px;
    padding: 15px 30px;
  }
}

/* Pricing-Guarantee Section */
.pricing-guarantee-section {
  background: #f8f9fb;
  padding: 80px 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.pricing-header p {
  font-size: 18px;
  color: #5a6d85;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #0056fd;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.card-category {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0056fd 0%, #004ad9 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.category-name {
  font-size: 16px;
  font-weight: 600;
  color: #062c47;
  background: #f8f9fb;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #e9ecef;
}

.discount-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  animation: pulse-discount 2s infinite;
}

.hot-offer {
  background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
  position: relative;
  animation: fire-glow 2s infinite;
}

.hot-offer::before {
  content: '🔥';
  margin-right: 4px;
  font-size: 10px;
}

@keyframes fire-glow {
  0% { 
    box-shadow: 0 2px 8px rgba(255, 149, 0, 0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.5);
    transform: scale(1.05);
  }
  100% { 
    box-shadow: 0 2px 8px rgba(255, 149, 0, 0.3);
    transform: scale(1);
  }
}

@keyframes pulse-discount {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.price-section {
  margin-bottom: 15px;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
  margin-bottom: 5px;
  position: relative;
}

.old-price::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 90px;
  right: 90px;
  height: 2px;
  background: linear-gradient(45deg, #ff6b6b, #ff5252);
  transform: translateY(-50%);
}

.card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0056fd;
  margin: 0;
}

.card p {
  color: #5a6d85;
  line-height: 1.5;
  margin: 0;
}

/* === ОБНОВЛЁННАЯ СЕКЦИЯ ГАРАНТИИ === */
.guarantee-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 24px;
  padding: 40px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.guarantee-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(255, 149, 0, 0.1) 0%, 
    rgba(0, 86, 253, 0.1) 50%, 
    rgba(13, 196, 80, 0.1) 100%);
  pointer-events: none;
}

/* HOT Badge — по центру на мобильных */
.guarantee-hot-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
  animation: hot-pulse 2s infinite;
  z-index: 10;
}

.guarantee-hot-badge i {
  margin-right: 8px;
  animation: fire-flicker 1.5s infinite;
}

@media (max-width: 768px) {
  .guarantee-hot-badge {
    top: 15px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* КНОПКА: Получить лучшую цену! — ТЕКСТ ПО ЦЕНТРУ */
.guarantee-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
  color: white;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
  animation: hot-pulse 2s infinite;
  transition: all 0.3s ease;
  margin: 30px auto 0;
  width: fit-content;
  z-index: 999;
  position: relative;
  line-height: 1; /* Убираем лишние отступы от строки */
}

.guarantee-cta i {
  animation: fire-flicker 1.5s infinite;
  font-size: 1.1em; /* Немного больше для баланса */
}

/* Убираем все возможные отступы у ссылки */
.guarantee-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

/* Ховер */
.guarantee-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.6);
  color: white;
}

/* Мобильные */
@media (max-width: 768px) {
  .guarantee-cta {
    font-size: 14px;
    padding: 14px 24px;
    width: 90%;
    max-width: 320px;
  }
}

/* Остальные стили гарантии */
.guarantee-main-content {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.guarantee-icon-large {
  font-size: 80px;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: shield-glow 3s ease-in-out infinite;
}

@keyframes shield-glow {
  0%, 100% { 
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: scale(1);
  }
  50% { 
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    transform: scale(1.05);
  }
}

.guarantee-text-content {
  flex: 1;
  color: white;
}

.guarantee-text-content h3 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guarantee-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #e0e6ed;
}

.guarantee-description strong {
  color: #ffd700;
  font-weight: 700;
}

.guarantee-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #e0e6ed;
  font-weight: 500;
}

.highlight-item i {
  color: #0dc450;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.guarantee-stamp {
  margin-left: auto;
  margin-right: 50px;
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stamp-graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-15deg);
  animation: stamp-wiggle 3s ease-in-out infinite;
}

.stamp-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: 4px solid #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
  position: relative;
}

.stamp-circle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b00, #ff9500, #ff6b00);
  border-radius: 50%;
  z-index: -1;
  animation: stamp-border-glow 2s ease-in-out infinite;
}

.stamp-circle i {
  font-size: 32px;
  color: #ff6b00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stamp-text {
  font-size: 12px;
  font-weight: 800;
  color: #ff6b00;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stamp-brand {
  font-size: 16px;
  font-weight: 900;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes stamp-wiggle {
  0%, 100% { transform: rotate(-15deg) scale(1); }
  25% { transform: rotate(-12deg) scale(1.02); }
  50% { transform: rotate(-18deg) scale(0.98); }
  75% { transform: rotate(-12deg) scale(1.01); }
}

@keyframes stamp-border-glow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.guarantee-trust-elements {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.trust-element {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8c5d1;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.trust-element:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

.trust-element i {
  font-size: 16px;
  color: #0dc450;
}

@keyframes hot-pulse {
  0% { 
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.6);
  }
  100% { 
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
  }
}

@keyframes fire-flicker {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-2deg); }
  50% { transform: scale(1.05) rotate(2deg); }
  75% { transform: scale(1.1) rotate(-1deg); }
}

/* Mobile styles for redesigned guarantee section */
@media (max-width: 768px) {
  .guarantee-section-redesigned {
    padding: 30px 20px;
    margin-top: 30px;
  }
  
  .guarantee-main-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .guarantee-icon-large {
    font-size: 60px;
  }
  
  .guarantee-text-content h3 {
    font-size: 24px;
  }
  
  .guarantee-description {
    font-size: 16px;
  }
  
  .guarantee-highlights {
    align-items: center;
  }
  
  .highlight-item {
    font-size: 14px;
  }
  
  .guarantee-stamp {
    margin-left: 0;
    margin-top: 20px;
  }
  
  .stamp-graphic {
    transform: rotate(-10deg);
  }
  
  .stamp-circle {
    width: 60px;
    height: 60px;
  }
  
  .stamp-circle i {
    font-size: 24px;
  }
  
  .stamp-text {
    font-size: 10px;
  }
  
  .stamp-brand {
    font-size: 14px;
  }
  
  .guarantee-trust-elements {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .trust-element {
    font-size: 13px;
  }
}

/* Медиа-запросы */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  header {
    padding: 120px 0 80px 0;
  }

  header h1 {
    font-size: 42px;
  }

  header p {
    font-size: 18px;
  }

  section h2 {
    font-size: 28px;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 22px;
  }

  .card p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  nav ul {
    width: 100%;
  }

  .cooperation-section .subtitle {
    font-size: 22px;
  }

  .menu-toggle span {
    width: 30px;
    height: 3px;
  }

  header h1 {
    font-size: 32px;
  }

  header p {
    font-size: 16px;
  }
}