/* ============================================
   Extended Styles for New Features
   ============================================ */

/* ============ Mobile Menu ============ */
@media (max-width: 899px) {
  .nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 241, 234, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
  }

  .nav.is-active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav a,
  .nav button {
    font-size: 24px;
    font-weight: 600;
    padding: 12px 24px;
  }

  .nav__link-btn {
    background: var(--accent);
    color: white;
    border-radius: 50px;
    padding: 16px 40px;
    border: none;
    font-size: 18px;
  }

  /* Burger animation */
  .burger span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .burger span:before,
  .burger span:after {
    transition: top 0.3s ease, transform 0.3s ease;
  }

  .burger.is-active span {
    background: transparent;
  }

  .burger.is-active span:before {
    top: 0;
    transform: rotate(45deg);
  }

  .burger.is-active span:after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

@media (min-width: 900px) {
  .nav {
    display: flex !important;
  }
}

/* ============ Before/After Gallery ============ */
.before-after {
  margin: 80px 0;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.ba-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ba-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Slider Container */
.ba-slider {
  position: relative;
  user-select: none;
}

.ba-slider__container {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  cursor: ew-resize;
}

.ba-slider__before,
.ba-slider__after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-slider__before img,
.ba-slider__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Slider Handle */
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: none;
}

.ba-slider__handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: white;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.ba-slider__handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  color: #374151;
  pointer-events: auto;
  cursor: ew-resize;
  transition: transform 0.2s ease;
}

.ba-slider__handle-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.ba-slider__handle-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

/* Labels */
.ba-slider__labels {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.ba-slider__label {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ba-slider__label--before {
  background: rgba(239, 68, 68, 0.9);
}

.ba-slider__label--after {
  background: rgba(16, 185, 129, 0.9);
}

/* Card Info */
.ba-card__info {
  padding: 24px;
}

.ba-card__info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
}

.ba-card__info p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ============ Chat Widget ============ */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .chat-widget {
    bottom: 80px;
    right: 16px;
  }
}

.chat-widget__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.chat-widget__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.chat-widget__btn:active {
  transform: scale(0.95);
}

.chat-widget__btn--telegram {
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
}

.chat-widget__btn--viber {
  background: linear-gradient(135deg, #7360F2 0%, #5A4FCF 100%);
}

.chat-widget__btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* ============ Loyalty Program ============ */
.loyalty-program {
  position: relative;
  margin: 80px 0;
  padding: 80px 0;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
  border-radius: 32px;
  overflow: hidden;
}

.loyalty-program::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.loyalty-program::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.loyalty-program .container {
  position: relative;
  z-index: 1;
}

.loyalty-program .section__label {
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 700;
  color: #b45309;
}

.loyalty-program .section__title {
  color: #78350f;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.loyalty-program .section__lead {
  color: #92400e;
  font-size: 18px;
}

.loyalty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.loyalty-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.loyalty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 50%, #f59e0b 100%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.loyalty-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 48px rgba(245, 158, 11, 0.3);
  border-color: #fbbf24;
}

.loyalty-card__icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

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

.loyalty-card:nth-child(even) .loyalty-card__icon {
  animation-delay: 1.5s;
}

.loyalty-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  font-family: 'Manrope', sans-serif;
  line-height: 1.3;
}

.loyalty-card__desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 0;
}

.loyalty-card__badge {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Featured card (first one) */
.loyalty-card:first-child {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fbbf24;
}

.loyalty-card:first-child:hover {
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4);
}

/* CTA Section */
.loyalty-cta {
  margin-top: 56px;
  padding: 48px;
  background: white;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.loyalty-cta::before {
  content: '✨';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 40px;
  opacity: 0.3;
}

.loyalty-cta::after {
  content: '🎁';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 40px;
  opacity: 0.3;
}

.loyalty-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  font-family: 'Fraunces', serif;
}

.loyalty-cta p {
  font-size: 17px;
  color: #6b7280;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.loyalty-cta .btn-accent {
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.loyalty-cta .btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
}

/* ============ Guarantees ============ */
.guarantees {
  margin: 80px 0;
  padding: 80px 0;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.guarantees::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.guarantees::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.guarantees-wrapper {
  position: relative;
  z-index: 1;
}

.guarantees-header {
  text-align: center;
  margin-bottom: 48px;
}

.guarantees .section__label {
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 700;
  color: #065f46;
}

.guarantees .section__title {
  color: #064e3b;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.guarantees .section__lead {
  color: #047857;
  font-size: 18px;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}

.guarantee-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #10b981 0%, #059669 50%, #10b981 100%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.guarantee-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.25);
  border-color: #10b981;
}

.guarantee-card__icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: inline-block;
  animation: pulse-scale 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

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

.guarantee-card:nth-child(even) .guarantee-card__icon {
  animation-delay: 1s;
}

.guarantee-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 14px;
  font-family: 'Manrope', sans-serif;
  line-height: 1.3;
}

.guarantee-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

.guarantee-card p strong {
  color: #059669;
  font-weight: 700;
}

.guarantee-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #10b981;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.guarantee-card__link:hover {
  gap: 10px;
  color: #059669;
}

/* Featured cards (1st and 6th) */
.guarantee-card:first-child,
.guarantee-card:nth-child(6) {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: #10b981;
}

.guarantee-card:first-child:hover,
.guarantee-card:nth-child(6):hover {
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.35);
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
  border-color: #10b981;
}

.trust-badge__icon {
  font-size: 40px;
  flex-shrink: 0;
  animation: bounce-soft 2s ease-in-out infinite;
}

@keyframes bounce-soft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.trust-badge:nth-child(1) .trust-badge__icon {
  animation-delay: 0s;
}

.trust-badge:nth-child(2) .trust-badge__icon {
  animation-delay: 0.5s;
}

.trust-badge:nth-child(3) .trust-badge__icon {
  animation-delay: 1s;
}

.trust-badge:nth-child(4) .trust-badge__icon {
  animation-delay: 1.5s;
}

.trust-badge div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-badge strong {
  font-size: 24px;
  font-weight: 800;
  color: #059669;
  font-family: 'Fraunces', serif;
  line-height: 1;
}

.trust-badge span {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

/* ============ Urgent Service ============ */
.urgent-service {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  padding: 60px 0;
  margin: 80px 0;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgent-service::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.urgent-service__content {
  position: relative;
  z-index: 1;
}

.urgent-service__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.urgent-service h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.urgent-service__lead {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.urgent-service__timer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

.urgent-service__timer-icon {
  font-size: 28px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.urgent-service .btn {
  background: white;
  color: #ff6b6b;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.urgent-service .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============ Blog Styles ============ */
.blog-header {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.blog-header p {
  font-size: 20px;
  opacity: 0.9;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.blog-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 24px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-card__title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card__title a:hover {
  color: var(--accent);
}

.blog-card__excerpt {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.blog-card__link:hover {
  gap: 12px;
}

/* ====== Blog Post Styles ====== */
.blog-post {
  background: #f9fafb;
  padding: 40px 0 80px;
}

.blog-post__header {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.blog-post__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.blog-post__meta time {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-post__meta time::before {
  content: '📅';
  font-size: 16px;
}

.blog-post__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-post__tags .tag {
  background: var(--accent-2);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
}

.blog-post__title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.2;
  color: var(--text);
}

.blog-post__image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.blog-post__image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post__content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px 80px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
}

.blog-post__content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-top: 60px;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--text);
}

.blog-post__content h1:first-child {
  margin-top: 0;
}

.blog-post__content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--text);
  border-bottom: 3px solid var(--accent-2);
  padding-bottom: 12px;
}

.blog-post__content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 16px;
  line-height: 1.4;
  color: var(--accent);
}

.blog-post__content p {
  margin-bottom: 20px;
}

.blog-post__content p:last-child {
  margin-bottom: 0;
}

.blog-post__content ul,
.blog-post__content ol {
  margin: 24px 0;
  padding-left: 32px;
}

.blog-post__content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.blog-post__content li::marker {
  color: var(--accent);
  font-weight: 600;
}

.blog-post__content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(47, 93, 58, 0.3);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

.blog-post__content a:hover {
  color: var(--accent-2);
  text-decoration-color: var(--accent-2);
}

.blog-post__content strong {
  font-weight: 700;
  color: var(--text);
}

.blog-post__content blockquote {
  border-left: 4px solid var(--primary);
  background: #fef9e7;
  padding: 24px 32px;
  margin: 32px 0;
  font-style: italic;
  border-radius: 0 12px 12px 0;
}

.blog-post__content code {
  background: #f3f4f6;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  color: #e11d48;
}

.blog-post__content pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 24px 0;
}

.blog-post__content pre code {
  background: none;
  color: inherit;
  padding: 0;
  font-size: 14px;
}

.blog-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-post__content hr {
  border: none;
  border-top: 2px solid #e5e7eb;
  margin: 48px 0;
}

.blog-post__share {
  max-width: 800px;
  margin: 40px auto;
  padding: 32px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 16px;
  text-align: center;
}

.blog-post__share h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.share-btn--facebook {
  background: #1877f2;
  color: white;
}

.share-btn--facebook:hover {
  background: #0d5dbf;
  transform: translateY(-2px);
}

.share-btn--telegram {
  background: #0088cc;
  color: white;
}

.share-btn--telegram:hover {
  background: #006699;
  transform: translateY(-2px);
}

.share-btn--viber {
  background: #7360f2;
  color: white;
}

.share-btn--viber:hover {
  background: #5a4bc9;
  transform: translateY(-2px);
}

.blog-post__cta {
  max-width: 800px;
  margin: 40px auto;
  padding: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 24px;
  text-align: center;
  color: white;
  box-shadow: 0 12px 32px rgba(47, 93, 58, 0.3);
}

.blog-post__cta h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.blog-post__cta p {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.95;
}

.blog-post__cta .btn {
  background: var(--primary);
  color: var(--text);
  border: none;
}

.blog-post__cta .btn:hover {
  background: #e6d542;
  transform: translateY(-2px);
}

.blog-post__nav {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.blog-nav-link {
  flex: 1;
  padding: 24px;
  background: white;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: block;
}

.blog-nav-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: var(--accent);
}

.blog-nav-link--prev {
  text-align: left;
}

.blog-nav-link--next {
  text-align: right;
}

.article-header {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
}

.article-header__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.article-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.article-header__lead {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.6;
}

.article-content {
  max-width: 720px;
  margin: 0 auto 60px;
}

.article-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 24px;
}

.article-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 16px;
}

.article-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin: 24px 0;
  padding-left: 32px;
}

.article-content li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.article-share {
  max-width: 720px;
  margin: 60px auto;
  padding: 32px;
  background: #f9fafb;
  border-radius: 16px;
  text-align: center;
}

.article-share h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.article-share__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.article-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.article-share__btn:hover {
  transform: translateY(-2px);
}

.article-share__btn--telegram {
  background: #2AABEE;
}

.article-share__btn--viber {
  background: #7360F2;
}

.article-share__btn--facebook {
  background: #1877F2;
}

/* ============ B2B Page Styles ============ */

/* Global B2B page wrapper */
main:has(.b2b-hero) {
  background: #f9fafb;
}

/* Section Titles for B2B */
.b2b-hero ~ .section .section__title,
.b2b-plans .section__title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
  font-family: 'Fraunces', serif;
  line-height: 1.1;
}

.b2b-hero ~ .section .section__lead,
.b2b-plans .section__lead {
  text-align: center;
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* All sections after hero have consistent spacing */
.b2b-hero ~ .section:not(.b2b-plans):not(.b2b-cta) {
  padding: 80px 0;
  background: white;
  margin: 40px 0;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Container max-width for B2B sections */
.b2b-hero ~ .section .container {
  max-width: 1400px;
}

/* Hero Section */
.b2b-hero {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.b2b-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.b2b-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.b2b-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.b2b-hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.b2b-hero__lead {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 40px;
}

.b2b-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.b2b-hero .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.b2b-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Specific section adjustments */
.b2b-plans {
  margin: 40px 0;
  background: white;
}

.b2b-cta {
  padding: 0;
  margin: 40px 0;
}

/* Services Grid */
.b2b-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.b2b-service-card {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
}

.b2b-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}

.b2b-service-card__icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.b2b-service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
}

.b2b-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
}

.b2b-service-card li {
  padding: 10px 0;
  font-size: 15px;
  color: #6b7280;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
  padding-left: 24px;
}

.b2b-service-card li:last-child {
  border-bottom: none;
}

.b2b-service-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

.b2b-price {
  font-size: 24px;
  font-weight: 800;
  color: #3b82f6;
  margin: 0;
  font-family: 'Fraunces', serif;
}

/* Pricing Table */
.b2b-plans {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 80px 0;
  margin: 80px 0;
  border-radius: 32px;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 3px solid transparent;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

.pricing-card--featured {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #3b82f6;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.pricing-card--featured:hover {
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.pricing-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  font-family: 'Fraunces', serif;
}

.pricing-card__price {
  margin: 24px 0;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #3b82f6;
  font-family: 'Fraunces', serif;
  display: block;
  line-height: 1;
}

.price-unit {
  font-size: 16px;
  color: #6b7280;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Benefits Grid */
.b2b-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.b2b-benefit {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.b2b-benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #3b82f6;
}

.b2b-benefit__icon {
  font-size: 56px;
  margin-bottom: 16px;
  display: inline-block;
}

.b2b-benefit h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  font-family: 'Manrope', sans-serif;
}

.b2b-benefit p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.b2b-cta {
  margin: 80px 0;
}

.b2b-cta-card {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.b2b-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.b2b-cta-card h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.b2b-cta-card > p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.b2b-cta-card .btn-primary {
  background: white;
  color: #3b82f6;
  font-size: 18px;
  padding: 18px 48px;
  position: relative;
  z-index: 1;
}

.b2b-cta-card .btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-3px);
}

.b2b-cta__note {
  margin-top: 24px;
  font-size: 15px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.b2b-cta__note a {
  color: white;
  text-decoration: underline;
  font-weight: 700;
}

.b2b-cta__note a:hover {
  text-decoration: none;
}

/* ============ Responsive Adjustments ============ */
@media (max-width: 768px) {
  .ba-grid,
  .loyalty-grid,
  .guarantees-grid,
  .blog-grid,
  .b2b-services,
  .pricing-table,
  .b2b-benefits {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .urgent-service h2 {
    font-size: 32px;
  }

  .blog-header h1,
  .article-header h1,
  .b2b-hero h1 {
    font-size: 36px;
  }

  .b2b-hero {
    padding: 60px 0 50px;
  }

  /* B2B sections on mobile */
  .b2b-hero ~ .section:not(.b2b-plans):not(.b2b-cta) {
    padding: 60px 0;
    margin: 20px 0;
    border-radius: 16px;
  }

  .b2b-hero ~ .section .section__title,
  .b2b-plans .section__title {
    font-size: 32px;
  }

  .b2b-plans {
    margin: 20px 0;
    padding: 60px 0;
    border-radius: 16px;
  }

  .b2b-cta {
    margin: 20px 0;
  }

  .b2b-cta-card {
    padding: 48px 24px;
    border-radius: 16px;
  }

  .b2b-cta-card h2 {
    font-size: 28px;
  }

  .price-amount {
    font-size: 36px;
  }

  .article-content h2 {
    font-size: 28px;
  }

  /* Blog post mobile styles */
  .blog-post {
    padding: 20px 0 40px;
  }

  .blog-post__title {
    font-size: 32px;
  }

  .blog-post__image {
    border-radius: 16px;
    margin-bottom: 24px;
  }

  .blog-post__content {
    padding: 32px 24px;
    border-radius: 16px;
    font-size: 16px;
  }

  .blog-post__content h1 {
    font-size: 32px;
    margin-top: 40px;
  }

  .blog-post__content h2 {
    font-size: 28px;
    margin-top: 36px;
  }

  .blog-post__content h3 {
    font-size: 22px;
    margin-top: 28px;
  }

  .blog-post__share {
    padding: 24px;
    border-radius: 12px;
    margin: 24px auto;
  }

  .blog-post__share h3 {
    font-size: 18px;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    width: 100%;
    justify-content: center;
  }

  .blog-post__cta {
    padding: 32px 24px;
    border-radius: 16px;
    margin: 24px auto;
  }

  .blog-post__cta h3 {
    font-size: 24px;
  }

  .blog-post__cta p {
    font-size: 16px;
  }

  .blog-post__nav {
    flex-direction: column;
    margin-top: 24px;
  }

  .blog-nav-link {
    padding: 16px;
  }
}
