/* Rates & Terms Page Custom Styles - Corporate Colors */

/* Missing Icons Fallback - только для отсутствующих иконок */
.icon-check-mark:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: inherit;
}

.icon-calendar:before {
  font-family: Arial, sans-serif;
}

.icon-percentage:before {
  content: "%";
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 1.2em;
}

.icon-calculator:before {
  font-family: Arial, sans-serif;
}

/* Улучшенное отображение существующих иконок */
[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

/* Исключение для иконок в header кнопках */
.header-btn-one .icon-payment,
.header-btn-one .icon-phone {
  vertical-align: baseline;
}

/* Fallback для случая когда иконочный шрифт не загружается */
@supports not (font-family: "icomoon") {
  .icon-loan-1:before {
    font-family: Arial, sans-serif;
  }

  .icon-shield-1:before {
    content: "\f3ed";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }

  .icon-clock:before {
    content: "🕐";
    font-family: Arial, sans-serif;
  }

  .icon-phone:before {
    content: "📞";
    font-family: Arial, sans-serif;
  }

  .icon-pin:before {
    content: "📍";
    font-family: Arial, sans-serif;
  }

  .icon-right-arrow:before {
    content: "→";
    font-family: Arial, sans-serif;
  }

  .icon-payment:before {
    content: "💳";
    font-family: Arial, sans-serif;
  }

  .icon-megaphone:before {
    content: "📢";
    font-family: Arial, sans-serif;
  }

  .icon-chevron:before {
    content: "▶";
    font-family: Arial, sans-serif;
  }

  .icon-menu:before {
    content: "☰";
    font-family: Arial, sans-serif;
  }

  .icon-chatting:before {
    content: "💬";
    font-family: Arial, sans-serif;
  }

  .icon-faq:before {
    content: "❓";
    font-family: Arial, sans-serif;
  }
}

/* Enhanced About Style1 Area (Page Header) */
.about-style1-area {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.about-style1-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23dc2626" opacity="0.05"/><circle cx="90" cy="20" r="1.5" fill="%23000000" opacity="0.03"/><circle cx="20" cy="80" r="1" fill="%23dc2626" opacity="0.04"/><circle cx="80" cy="90" r="1.5" fill="%23000000" opacity="0.02"/></svg>')
    repeat;
  pointer-events: none;
}

.about-style1-area::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(220, 38, 38, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
  animation: floating 15s infinite linear;
  pointer-events: none;
}

.about-style1-area .sec-title h2 {
  color: #1a1c23;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  font-family: var(--thm-font-2);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-style1-area .sec-title h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  border-radius: 2px;
}

.about-style1-area .sec-title .sub-title p {
  color: #64748b;
  font-size: 20px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Enhanced Pricing Table Styles */
.pricing-table-area {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.pricing-table-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23dc2626" opacity="0.05"/><circle cx="90" cy="20" r="1.5" fill="%23000000" opacity="0.03"/><circle cx="20" cy="80" r="1" fill="%23dc2626" opacity="0.04"/><circle cx="80" cy="90" r="1.5" fill="%23000000" opacity="0.02"/></svg>')
    repeat;
  pointer-events: none;
}

.pricing-table-area::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(220, 38, 38, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
  animation: floating 15s infinite linear;
  pointer-events: none;
}

@keyframes floating {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-20px, -20px) rotate(360deg);
  }
}

.single-pricing-table {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid rgba(220, 38, 38, 0.08);
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  transform: translateY(0);
}

.single-pricing-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #dc2626 0%, #991b1b 50%, #7f1d1d 100%);
  transition: all 0.3s ease;
}

.single-pricing-table:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border-color: rgba(220, 38, 38, 0.2);
}

.single-pricing-table:hover::before {
  height: 8px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
}

/* Featured card (middle one) */
.single-pricing-table:nth-child(2) {
  transform: scale(1.08) translateY(-10px);
  border: 3px solid #dc2626;
  box-shadow: 0 25px 70px rgba(220, 38, 38, 0.2);
  z-index: 2;
}

.single-pricing-table:nth-child(2)::before {
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  height: 8px;
}

.single-pricing-table:nth-child(2):hover {
  transform: scale(1.08) translateY(-20px);
  box-shadow: 0 35px 90px rgba(220, 38, 38, 0.25);
}

.single-pricing-table:nth-child(2) .pricing-table-header {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
}

.single-pricing-table:nth-child(2) .pricing-table-header .title h3 {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.single-pricing-table:nth-child(2) .pricing-table-header .icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.pricing-table-header {
  padding: 40px 30px 30px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  border-bottom: 1px solid rgba(220, 38, 38, 0.05);
}

.pricing-table-header .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.pricing-table-header .icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(-45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.single-pricing-table:hover .pricing-table-header .icon::before {
  opacity: 1;
  animation: shine 1.5s ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(-45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(-45deg);
  }
}

.single-pricing-table:nth-child(1) .pricing-table-header .icon {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}
.single-pricing-table:nth-child(1) .pricing-table-header .icon {
  background-image: -webkit-linear-gradient(
    0deg,
    rgb(138, 15, 61) 0%,
    rgb(207, 23, 60) 100%
  );
}

.single-pricing-table:nth-child(3) .pricing-table-header .icon {
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
}

.pricing-table-header .icon span {
  font-size: 36px;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.single-pricing-table:hover .pricing-table-header .icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
}

.pricing-table-header .title h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1c23;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--thm-font-2);
  position: relative;
}

.pricing-table-header .title h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  border-radius: 2px;
}

.pricing-table-content {
  padding: 40px 30px;
  background: #fff;
}

.pricing-table-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-table-content ul li {
  padding: 15px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  position: relative;
}

.pricing-table-content ul li:last-child {
  border-bottom: none;
}

.pricing-table-content ul li:hover {
  background: rgba(220, 38, 38, 0.03);
  padding-left: 15px;
  margin: 0 -15px;
  border-radius: 10px;
  color: #1a1c23;
  transform: translateX(5px);
}

.pricing-table-content ul li .icon-check-mark {
  color: #dc2626;
  font-size: 18px;
  margin-right: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
}

.pricing-table-content ul li:hover .icon-check-mark {
  background: #dc2626;
  color: white;
  transform: scale(1.2);
}

/* Special styling for featured card content */
.single-pricing-table:nth-child(2)
  .pricing-table-content
  ul
  li
  .icon-check-mark {
  background: rgba(220, 38, 38, 0.15);
  color: #dc2626;
}

.single-pricing-table:nth-child(2)
  .pricing-table-content
  ul
  li:hover
  .icon-check-mark {
  background: #dc2626;
  color: white;
}

/* Add subtle animations */
.single-pricing-table {
  animation: fadeInUp 0.6s ease-out;
}

.single-pricing-table:nth-child(1) {
  animation-delay: 0.1s;
}

.single-pricing-table:nth-child(2) {
  animation-delay: 0.2s;
}

.single-pricing-table:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive improvements */
@media (max-width: 768px) {
  .single-pricing-table:nth-child(2) {
    transform: scale(1);
    margin-bottom: 40px;
  }

  .pricing-table-header {
    padding: 30px 20px 20px;
  }

  .pricing-table-header .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .pricing-table-header .icon span {
    font-size: 28px;
  }

  .pricing-table-header .title h3 {
    font-size: 22px;
  }

  .pricing-table-content {
    padding: 30px 20px;
  }

  .pricing-table-content ul li {
    padding: 12px 0;
    font-size: 15px;
  }
}

/* Enhanced About Style2 Area */
.about-style2-area {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.about-style2-area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(150px, -150px);
}

.about-style2-img-box {
  position: relative;
}

.about-style2-img-box .inner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}

.about-style2-img-box .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(220, 38, 38, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: all 0.3s ease;
}

.about-style2-img-box:hover .inner::before {
  opacity: 1;
}

.about-style2-content-box {
  position: relative;
}

.about-style2-content-box .sec-title h2 {
  position: relative;
  padding-bottom: 20px;
}

.about-style2-content-box .sec-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #dc2626 0%, #991b1b 100%);
  border-radius: 2px;
}

.text-box ul li {
  background: #f7f1eb;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #dc2626;
  transition: all 0.3s ease;
  position: relative;
}

.text-box ul li:nth-child(2) {
  border-left-color: #000;
}

.text-box ul li:nth-child(3) {
  border-left-color: #991b1b;
}

.text-box ul li:nth-child(4) {
  border-left-color: #dc2626;
}

.text-box ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.text-box ul li .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.text-box ul li:nth-child(2) .icon {
  background: linear-gradient(135deg, #000 0%, #333 100%);
}

.text-box ul li:nth-child(3) .icon {
  background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
}

.text-box ul li:nth-child(4) .icon {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.text-box ul li .icon .icon-check-mark {
  color: #fff;
  font-size: 20px;
}

.text-box ul li .text h4 {
  color: #000;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
}

.text-box ul li .text p {
  color: #333;
  margin: 0;
  line-height: 1.6;
}

/* Enhanced Contact Info Area (Important Disclosures) */
.contact-info-area {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.contact-info-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="15" r="1" fill="%23dc2626" opacity="0.03"/><circle cx="85" cy="25" r="1.5" fill="%231a1c23" opacity="0.02"/><circle cx="25" cy="85" r="1" fill="%23dc2626" opacity="0.03"/><circle cx="75" cy="75" r="1.5" fill="%231a1c23" opacity="0.02"/></svg>')
    repeat;
  pointer-events: none;
}

.contact-info-area .sec-title h2 {
  color: #1a1c23;
  position: relative;
}

.contact-info-area .sec-title h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  border-radius: 2px;
}

.contact-info-area .sec-title .sub-title p {
  color: #64748b;
  font-size: 18px;
}

.contact-info-box {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(220, 38, 38, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 50px;
}

.contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.12);
  border-color: rgba(220, 38, 38, 0.15);
}

.contact-info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  transition: all 0.3s ease;
}

.contact-info-box .text-content h3 {
  color: #1a1c23;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: var(--thm-font-2);
  position: relative;
  text-align: center;
}

.contact-info-box .text-content h3::before {
  content: "📋";
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  font-size: 40px;
  opacity: 0.8;
}

.contact-info-box .text-content h3::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  border-radius: 2px;
}

/* Disclosure Items Styling */
.disclosure-item {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 5px solid #dc2626;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.disclosure-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.disclosure-item strong {
  color: #dc2626;
  font-weight: 700;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
  font-family: var(--thm-font-2);
}

.disclosure-item.credit-approval {
  border-left-color: #dc2626;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, #fff 100%);
}

.disclosure-item.apr-rates {
  border-left-color: #059669;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.02) 0%, #fff 100%);
}

.disclosure-item.apr-rates strong {
  color: #059669;
}

.disclosure-item.loan-terms {
  border-left-color: #2563eb;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, #fff 100%);
}

.disclosure-item.loan-terms strong {
  color: #2563eb;
}

.disclosure-item.fees {
  border-left-color: #7c3aed;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, #fff 100%);
}

.disclosure-item.fees strong {
  color: #7c3aed;
}

.disclosure-item.state-regulations {
  border-left-color: #ea580c;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.02) 0%, #fff 100%);
}

.disclosure-item.state-regulations strong {
  color: #ea580c;
}

.disclosure-item.contact-info {
  border-left-color: #0891b2;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.02) 0%, #fff 100%);
  font-style: italic;
  text-align: center;
  font-weight: 500;
  color: #0891b2;
}

/* Company Contact Box */
.company-contact-box {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 20px;
  padding: 35px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  color: white;
}

.company-contact-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(220, 38, 38, 0.1) 0%,
    transparent 50%
  );
  animation: floatingOffice 20s infinite linear;
  pointer-events: none;
}

@keyframes floatingOffice {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-30px, -30px) rotate(360deg);
  }
}

.contact-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.contact-header .contact-icon {
  font-size: 32px;
  margin-right: 15px;
}

.contact-header h4 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  font-family: var(--thm-font-2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-details {
  position: relative;
  z-index: 2;
}

.address-line {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.address-line:last-child {
  margin-bottom: 0;
}

.address-line .icon {
  font-size: 18px;
  margin-right: 12px;
  width: 25px;
  text-align: center;
}

.address-line a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.address-line a:hover {
  color: #f59e0b;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-box {
    padding: 30px 20px;
  }

  .contact-info-box .text-content h3 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .disclosure-item {
    padding: 20px;
    margin-bottom: 15px;
  }

  .disclosure-item strong {
    font-size: 16px;
  }

  .company-contact-box {
    padding: 25px;
    margin-top: 30px;
  }

  .contact-header h4 {
    font-size: 20px;
  }

  .address-line {
    font-size: 15px;
  }
}

/* Enhanced Button Styles */
.btns-box .btn-one {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btns-box .btn-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.5s ease;
}

.btns-box .btn-one:hover::before {
  left: 100%;
}

.btns-box .btn-one:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

/* Call to Action Section */
.pricing-cta-section {
  margin-top: 80px;
  padding: 60px 0;
}

.pricing-cta-content {
  background-image: -webkit-linear-gradient(
    0deg,
    rgb(138, 15, 61) 0%,
    rgb(207, 23, 60) 100%
  );
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(220, 38, 38, 0.3);
}

.pricing-cta-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: floatingCta 20s infinite linear;
  pointer-events: none;
}

@keyframes floatingCta {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-30px, -30px) rotate(360deg);
  }
}

.cta-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.cta-icon span {
  font-size: 45px;
  color: white;
}

.pricing-cta-content h3 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  font-family: var(--thm-font-2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.pricing-cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-buttons .btn-one {
  background: white;
  color: #dc2626;
  border-radius: 50px;
  padding: 15px 35px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-buttons .btn-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.1),
    transparent
  );
  transition: all 0.5s ease;
}

.cta-buttons .btn-one:hover::before {
  left: 100%;
}

.cta-buttons .btn-one:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: white;
}

.btn-phone .icon-phone {
  font-size: 18px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.trust-item span:first-child {
  font-size: 20px;
  color: white;
}

/* Responsive CTA */
@media (max-width: 768px) {
  .pricing-cta-section {
    margin-top: 60px;
    padding: 40px 0;
  }

  .pricing-cta-content {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .cta-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }

  .cta-icon span {
    font-size: 35px;
  }

  .pricing-cta-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .pricing-cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
  }

  .cta-buttons .btn-one,
  .btn-phone {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .trust-indicators {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
}

/* Дублирующие стили удалены - используются основные стили выше */
