/* ===== ОПТИМИЗИРОВАННЫЙ CSS ===== */

/* ===== НАСТРОЙКА ВСЕХ ЗЕЛЕНЫХ КНОПОК (ИЗМЕНЯЙТЕ ЗДЕСЬ) ===== */
:root {
  /* Основные цвета кнопок */
  --btn-green-from: #12543c;
  --btn-green-to: #007e5e;
  
  /* Цвета при наведении */
  --btn-green-hover-from: #064e3b;
  --btn-green-hover-to: #059669;
  
  /* Тени */
  --btn-green-shadow: rgba(18, 84, 60, 0.25);
  --btn-green-shadow-hover: rgba(18, 84, 60, 0.35);
}

/* ===== ЕДИНЫЙ СТИЛЬ ДЛЯ ВСЕХ ЗЕЛЕНЫХ КНОПОК ===== */
.btn-green,
.btn-primary,
.btn-header,
.actions .book,
.contact-card .btn,
.floating-btn a {
  background: linear-gradient(90deg, var(--btn-green-from), var(--btn-green-to)) !important;
  color: #fff !important;
padding: clamp(10px, 1.2vw, 12px) clamp(20px, 2.5vw, 28px);
    border-radius: 8px;
    margin-top: 2px;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px var(--btn-green-shadow) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
}

.btn-green:hover,
.btn-primary:hover,
.btn-header:hover,
.actions .book:hover,
.contact-card .btn:hover,
.floating-btn a:hover {
  background: linear-gradient(90deg, var(--btn-green-hover-from), var(--btn-green-hover-to)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px var(--btn-green-shadow-hover) !important;
}

.btn-green:active,
.btn-primary:active,
.btn-header:active,
.actions .book:active,
.contact-card .btn:active,
.floating-btn a:active {
  transform: translateY(0) !important;
}

/* Блик света при наведении */
.btn-green::before,
.btn-primary::before,
.btn-header::before,
.actions .book::before,
.contact-card .btn::before,
.floating-btn a::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: left 0.5s;
  pointer-events: none;
}

.btn-green:hover::before,
.btn-primary:hover::before,
.btn-header:hover::before,
.actions .book:hover::before,
.contact-card .btn:hover::before,
.floating-btn a:hover::before {
  left: 100%;
}

/* Белые кнопки в CTA блоке */
.cta-actions .btn.primary {
  background: #fff !important;
  color: var(--btn-green-from) !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2) !important;
}

.cta-actions .btn.primary:hover {
  background: #f9fafb !important;
  color: var(--btn-green-hover-from) !important;
  transform: translateY(-2px) !important;
}

/* СОЦИАЛЬНЫЕ КНОПКИ */

/* Секция подписок */
.social-subscribe-section {
  padding: clamp(20px, 3vw, 30px);
  text-align: center;
}

.subscribe-title {
  font-size: clamp(20px, 2.5vw, 24px);
  margin-bottom: clamp(16px, 2vw, 20px);
  color: #111827;
}

.social-buttons {
  display: flex;
  gap: clamp(12px, 2vw, 16px);
  justify-content: center;
  flex-wrap: wrap;
}

.social-item {
  display: flex;
  flex-direction: column;
  gap: 0px;
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  transition: all 0.4s ease;
}

/* КОМПАКТНЫЙ ВИД когда подписан */
.social-item.compact {
  min-width: 160px;
  max-width: 200px;
  flex: 0 1 auto;
}

/* Проверка подписки */
.subscribe-check {
  position: relative;
  min-height: 40px;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  color: #4b5563;
}

.check-label:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.social-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #10b981;
}

.success-message {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 1px 10px;
  border-radius: 8px;
  color: #88887c;
  font-size: 12px;
  font-weight: 600;
  animation: slideIn 0.4s ease;
}

.success-message.show {
  display: flex;
}

.success-icon {
  font-size: 16px;
  font-weight: bold;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* КОМПАКТНАЯ кнопка когда подписан */
.btn-social {
  transition: all 0.4s ease;
}

.btn-social.subscribed {
  padding: clamp(1px, 1vw, 1px) clamp(10px, 1.2vw, 12px);
  opacity: 0.7;
}

.btn-social.subscribed .social-icon-wrap {
  width: clamp(28px, 3.2vw, 32px);
  height: clamp(28px, 3.2vw, 32px);
}

.btn-social.subscribed .social-icon {
  width: clamp(15px, 1.8vw, 17px);
  height: clamp(15px, 1.8vw, 17px);
}

.btn-social.subscribed .social-main-text {
  font-size: clamp(11px, 1.2vw, 12px);
}

.btn-social.subscribed .social-sub-text {
  font-size: clamp(9px, 1vw, 10px);
  display: none;
}

/* Мобильная адаптация - ВСЕГДА В РЯД */
@media (max-width: 600px) {
  .social-buttons {
    flex-wrap: nowrap;
    gap: 8px;
  }
  
  .social-item {
    min-width: 180px;
  }
  
  .social-item.compact {
    min-width: 140px;
    max-width: 160px;
  }
  
  .btn-social {
    padding: 10px 12px;
    gap: 7px;
  }
  
  .btn-social.subscribed {
    padding: 1px 1px;
  }
  
  .btn-social.subscribed .social-icon-wrap {
    width: 28px;
    height: 28px;
  }
  
  .btn-social.subscribed .social-icon {
    width: 15px;
    height: 15px;
  }
  
  .btn-social.subscribed .social-main-text {
    font-size: 11px;
  }
  
  .btn-social.subscribed .social-sub-text {
    font-size: 9px;
  }
  
  .success-message {
    padding: 1px 1px;
    font-size: 9px;
  }
  
  .success-icon {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .social-buttons {
    gap: 6px;
  }
  
  .social-item {
    min-width: 150px;
  }
  
  .social-item.compact {
    min-width: 120px;
    max-width: 140px;
  }
}


/* Обертка для социальных кнопок */
.social-buttons {
  display: flex;
  gap: clamp(10px, 1.5vw, 12px);
  justify-content: center;
  flex-wrap: wrap;
  margin: clamp(15px, 2vw, 20px) 0;
}

/* Базовый стиль для социальных кнопок - КОМПАКТНЫЙ */
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1vw, 10px);
  padding: clamp(10px, 1.2vw, 12px) clamp(14px, 1.8vw, 18px);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.btn-social::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.btn-social:hover::before {
  left: 100%;
}

.btn-social:active {
  transform: translateY(0);
}

/* Telegram фирменный стиль */
.btn-telegram-sub {
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  box-shadow: 0 3px 10px rgba(42, 171, 238, 0.25);
}

.btn-telegram-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(42, 171, 238, 0.35);
  background: linear-gradient(135deg, #229ED9, #1a8bc4);
}

/* Instagram фирменный стиль */
.btn-instagram-sub {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 3px 10px rgba(188, 24, 136, 0.25);
}

.btn-instagram-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(188, 24, 136, 0.35);
  background: linear-gradient(135deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #a01878 100%);
}

/* Обертка иконки - КОМПАКТНАЯ */
.social-icon-wrap {
  width: clamp(34px, 4vw, 38px);
  height: clamp(34px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn-social:hover .social-icon-wrap {
  transform: rotate(15deg) scale(1.1);
}

.social-icon {
  width: clamp(18px, 2.2vw, 20px);
  height: clamp(18px, 2.2vw, 20px);
  fill: #fff;
}

/* Обертка текста */
.social-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
}

.social-main-text {
  font-size: clamp(13px, 1.4vw, 14px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.social-sub-text {
  font-size: clamp(10px, 1.1vw, 11px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .social-buttons {
    gap: 10px;
  }

  .btn-social {
    padding: 11px 16px;
    gap: 9px;
    min-width: 180px;
    max-width: 240px;
  }
  
  .social-icon-wrap {
    width: 36px;
    height: 36px;
  }
  
  .social-icon {
    width: 19px;
    height: 19px;
  }
  
  .social-main-text {
    font-size: 13px;
  }
  
  .social-sub-text {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .social-buttons {
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
  }

  .btn-social {
    padding: 10px 14px;
    gap: 8px;
    min-width: auto;
    max-width: 100%;
  }
  
  .social-icon-wrap {
    width: 34px;
    height: 34px;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }
  
  .social-main-text {
    font-size: 13px;
  }
  
  .social-sub-text {
    font-size: 10px;
  }
}

/* Кнопка "Получить бонусы" */
.insta-show-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border: none;
  padding: clamp(10px, 1.2vw, 12px) clamp(20px, 2.5vw, 24px);
  border-radius: 30px;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 15px);
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(188, 24, 136, 0.3);
  margin: 0 auto;
}

.insta-show-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  box-shadow: 0 6px 16px rgba(188, 24, 136, 0.4);
}

.insta-show-btn:active {
  transform: translateY(0);
}

/* Скрыть кнопку после клика */
.insta-show-btn.hidden {
  display: none;
}

/* Обертка для чекбокса внутри бонус-блока */
.insta-checkbox-wrap {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.insta-checkbox-wrap label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(13px, 1.4vw, 14px);
  color: #374151;
  cursor: pointer;
}

.insta-checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #bc1888;
}

/* Блок бонусов - изначально скрыт */
.insta-bonus {
  display: none;
  background: #f9f9f5;
  border: 1px solid #d9d9d0;
  border-radius: 16px;
  padding: clamp(18px, 2.2vw, 22px);
  text-align: center;
  max-width: 520px;
  margin: clamp(20px, 2.5vw, 25px) auto clamp(10px, 1.2vw, 12px);
  opacity: 0;
  transform: translateY(20px);
}

/* Показываем блок с анимацией */
.insta-bonus.show {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Оригинальные стили для содержимого */
.insta-bonus p {
  font-size: clamp(14px, 1.6vw, 16px);
  margin: 0 0 clamp(12px, 1.4vw, 14px);
  color: #2f3e2f;
  line-height: 1.5;
}

.insta-bonus .note {
  font-size: clamp(11px, 1.3vw, 13px);
  color: #6b7280;
  margin-top: clamp(6px, 0.8vw, 8px);
}

/* Базовые настройки */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-kerning: normal;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #111827;
  background: #f9f9f4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.5px !important;
  color: #99958f !important;
}

p, li, span {
  letter-spacing: normal !important;
  word-spacing: normal !important;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(12px, 2vw, 18px) clamp(20px, 4vw, 40px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(218, 218, 210, 0.61);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(197, 194, 181);
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  color: #12543c;
  gap: 8px;
}

.logo img {
  width: clamp(24px, 3vw, 28px);
  height: clamp(24px, 3vw, 28px);
}

nav {
  display: flex;
  gap: clamp(18px, 2.5vw, 28px);
}

nav a {
  text-decoration: none;
  color: #4b5563;
  font-size: clamp(13px, 1.5vw, 15px);
  transition: color 0.2s;
}

nav a:hover {
  color: #065f46;
}

/* Burger Menu */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.burger-btn span {
  width: 25px;
  height: 3px;
  background: #12543c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(249, 249, 244, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  z-index: 99;
  transition: right 0.3s ease;
  padding-top: 80px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px;
}

.mobile-menu nav a {
  padding: 16px 20px;
  font-size: 16px;
  border-bottom: 1px solid #e5e7eb;
  color: #111827;
}

.mobile-menu nav a:hover {
  background: #efefe7;
  color: #065f46;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 60px);
  max-width: 1250px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px);
}

.old {
  color: #99958f;
  text-decoration: line-through;
  font-size: 0.7em;
  margin-right: 5px;
}

.insta-line {
  color: #065f46;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 700;
  margin: 0 0 clamp(12px, 2vw, 20px);
  line-height: 1.2;
  color: #12543c;
  text-transform: uppercase;
}

.hero h1 b {
  display: block;
  font-size: clamp(32px, 6.5vw, 66px);
  color: #9b8b6f;
}

.hero p {
  font-size: clamp(18px, 3.5vw, 37px);
  color: #9b8b6fd9;
  margin-bottom: clamp(16px, 2.5vw, 26px);
  font-style: italic;
  font-family: fangsong;
  text-align: justify;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 14px);
  margin-bottom: clamp(20px, 3vw, 30px);
}

.badge, .badge2 {
  background: #aeaea652;
  color: #88887c;
  padding: clamp(6px, 1vw, 8px) clamp(8px, 1.2vw, 10px);
  border-radius: 999px;
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: clamp(12px, 2vw, 18px);
  margin-bottom: clamp(30px, 4vw, 40px);
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: clamp(10px, 1.2vw, 12px) clamp(20px, 2.5vw, 28px);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 16px);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.btn-secondary {
  color: #fff;
  background: #9b8b6f;
}

.btn-secondary:hover {
  transform: scale(1.02);
  background: #786a50;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.12);
}

/* Video */
.mute-btn {
  background: rgba(0, 0, 0, 0.28);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.mute-btn svg {
  stroke: #fff;
  width: 28px;
  height: 28px;
}

/* About */
.about {
  padding: clamp(30px, 4vw, 40px) clamp(16px, 2vw, 20px);
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  color: #4b5563;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
}

.about h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

.highlight {
  font-size: clamp(18px, 3.2vw, 34px);
  color: #9b8b6fd9;
  margin: clamp(16px, 2vw, 20px) auto;
  font-style: italic;
  font-family: fangsong;
  text-align: center;
  width: clamp(80%, 70vw, 66%);
}

/* Services / Approach */
.services {
  padding: clamp(40px, 6vw, 60px) clamp(16px, 2vw, 20px);
  background: #efefe7;
}

.approach-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.5vw, 28px);
}

.approach-item {
  background: #efefe7;
  border-radius: 16px;
  padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2.2vw, 24px);
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.approach-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.approach-item .icon {
  width: clamp(52px, 6vw, 64px);
  height: clamp(52px, 6vw, 64px);
  margin: 0 auto clamp(12px, 1.5vw, 16px);
  border-radius: 50%;
  background: linear-gradient(90deg, #12543c, #007e5e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-item h3 {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: #111827;
  margin-bottom: clamp(8px, 1vw, 10px);
}

.approach-item p {
  font-size: clamp(13px, 1.5vw, 15px);
  color: #4b5563;
  line-height: 1.5;
}

/* Uslugi Section */
.uslugi {
  padding: clamp(40px, 6vw, 60px) clamp(16px, 2vw, 20px);
  background: #efefe7;
}

.servh2 {
  font-size: clamp(24px, 3vw, 30px);
  margin: 0 auto clamp(16px, 2vw, 20px);
  text-align: center;
}

.insta-follow {
  display: inline-block;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  text-decoration: none;
  padding: clamp(10px, 1.2vw, 12px) clamp(18px, 2.2vw, 22px);
  border-radius: 30px;
  font-weight: 600;
  font-size: clamp(13px, 1.5vw, 15px);
  transition: opacity 0.3s;
}

.insta-follow:hover {
  opacity: 0.85;
}

.insta-toggle {
  text-align: center;
  margin: clamp(10px, 1.2vw, 12px) 0 clamp(14px, 1.8vw, 18px);
}

.services-grid {
  display: grid;
  gap: clamp(16px, 2vw, 20px);
  grid-template-columns: 1fr;
  background: #f6f6ef;
  padding: clamp(24px, 3vw, 30px);
  max-width: 1100px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  margin: clamp(16px, 2vw, 20px) auto;
}

.service {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: clamp(14px, 1.8vw, 18px);
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.svc-title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  margin-bottom: clamp(3px, 0.4vw, 4px);
  color: #99958f;
}

.svc-sub {
  font-size: clamp(11px, 1.3vw, 13px);
  color: #6b7280;
  margin-bottom: clamp(10px, 1.2vw, 12px);
}

.info {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 12px);
  margin-bottom: clamp(12px, 1.4vw, 14px);
  flex-wrap: wrap;
}

.info-line {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.6vw, 6px);
  font-weight: 600;
  font-size: clamp(11px, 1.2vw, 12px);
  padding: clamp(5px, 0.6vw, 6px) clamp(8px, 1vw, 10px);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  color: #065f46;
}

.info-line svg {
  width: clamp(14px, 1.6vw, 16px);
  height: clamp(14px, 1.6vw, 16px);
  stroke: #065f46;
}

.actions {
  display: flex;
  gap: clamp(8px, 1vw, 10px);
  justify-content: center;
  margin-top: clamp(10px, 1.2vw, 12px);
}

.actions .desc-toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  cursor: pointer;
  padding: clamp(10px, 1.2vw, 12px);
  transition: background 0.3s;
}

.actions .desc-toggle-btn.active {
  background: #efefe7;
  border-color: #f2f2eb;
}

.desc-panel {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-top: clamp(8px, 1vw, 10px);
  overflow: hidden;
  background: #efefe7;
}

.desc-inner {
  max-height: 0;
  opacity: 0;
  padding: 0 clamp(12px, 1.4vw, 14px);
  transition: max-height 0.45s ease, opacity 0.35s ease;
  overflow: hidden;
}

.desc-panel.open .desc-inner {
  opacity: 1;
  max-height: 1000px;
  padding: clamp(12px, 1.4vw, 14px);
}

.desc-content {
  text-align: left;
  color: #374151;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.6;
}

.proto {
  margin-top: clamp(8px, 1vw, 10px);
  font-size: clamp(11px, 1.3vw, 13px);
}

.abon-wrap {
  margin-top: clamp(12px, 1.4vw, 14px);
}

.abon {
  width: 100%;
  border-collapse: collapse;
}

.abon td {
  display: block;
  padding: clamp(6px, 0.8vw, 8px) clamp(8px, 1vw, 10px);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 600;
  color: #9b8b6f;
  margin-bottom: clamp(5px, 0.6vw, 6px);
}

.all-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 8px);
  width: 70%;
  max-width: 400px;
  padding: clamp(10px, 1.2vw, 12px);
  margin: clamp(16px, 2vw, 20px) auto;
  background: #fff;
  color: #065f46;
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 15px);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s;
}

.all-btn:hover {
  transform: scale(1.02);
}

.all-panel {
  overflow: hidden;
}

.all-inner {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.all-inner h2 {
  font-size: clamp(22px, 2.6vw, 26px);
  margin: clamp(24px, 3vw, 30px) 0 clamp(16px, 2vw, 20px);
  text-align: center;
}

/* Fit Section */
.fit-section {
  padding: clamp(40px, 6vw, 60px) clamp(16px, 2vw, 20px);
  background: #f6f6ef;
  text-align: center;
}

.fit-section h2 {
  font-size: clamp(26px, 3.2vw, 32px);
  margin-bottom: clamp(10px, 1.2vw, 12px);
}

.fit-grid {
  display: grid;
  gap: clamp(18px, 2.4vw, 24px);
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: clamp(24px, 3vw, 30px) auto 0;
}

.fit-item {
  background: #fff;
  border-radius: 16px;
  padding: clamp(18px, 2.4vw, 24px);
  text-align: left;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.fit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.fit-item .icon {
  width: clamp(38px, 4.4vw, 44px);
  height: clamp(38px, 4.4vw, 44px);
  border-radius: 12px;
  background: #efefe7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(12px, 1.6vw, 16px);
}

.fit-item .icon svg {
  width: clamp(20px, 2.4vw, 24px);
  height: clamp(20px, 2.4vw, 24px);
  stroke: #065f46;
}

.fit-item h3 {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  color: #065f46;
  margin-bottom: clamp(6px, 0.8vw, 8px);
}

.fit-item p {
  font-size: clamp(13px, 1.5vw, 15px);
  color: #4b5563;
  line-height: 1.6;
}

/* Testimonials */
.t-section {
  padding: clamp(40px, 6vw, 60px) clamp(16px, 2vw, 20px);
  background: #efefe7;
  text-align: center;
}

.t-title {
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 clamp(6px, 0.8vw, 8px);
}

.t-slider {
  position: relative;
  max-width: 900px;
  margin: clamp(24px, 3vw, 30px) auto 0;
}

.t-viewport {
  overflow: hidden;
  border-radius: 16px;
}

.t-track {
  display: flex;
  transition: transform 0.45s ease;
}

.t-slide {
  flex: 0 0 100%;
  padding: clamp(24px, 3vw, 30px) clamp(16px, 2vw, 20px);
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.t-stars {
  color: #ec9433;
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: 2px;
  margin-bottom: clamp(12px, 1.4vw, 14px);
}

.t-quote {
  color: #1f2937;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto clamp(14px, 1.8vw, 18px);
  text-align: left;
}

.t-author {
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #111827;
  margin-bottom: clamp(3px, 0.4vw, 4px);
}

.t-meta {
  color: #6b7280;
  font-size: clamp(11px, 1.3vw, 13px);
}

.t-arrow {
  position: absolute;
  top: 7%;
  transform: translateY(-50%);
  width: clamp(38px, 4.4vw, 44px);
  height: clamp(38px, 4.4vw, 44px);
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: linear-gradient(90deg, #12543c, #007e5e);
  color: #fff;
  font-size: clamp(24px, 2.8vw, 28px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.t-arrow:hover {
  background: linear-gradient(90deg, #064e3b, #059669);
  transform: translateY(-50%) scale(1.1);
}

.t-prev {
  left: -5px;
  z-index:99999;
}

.t-next {
  right: -5px;
    z-index:99999;
}

.t-dots {
  margin-top: clamp(16px, 2vw, 20px);
  display: flex;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 8px);
}

.t-dot {
  width: clamp(8px, 1vw, 10px);
  height: clamp(8px, 1vw, 10px);
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  border: none;
  padding: 0;
}

.t-dot:hover {
  background: #94a3b8;
}

.t-dot.active {
  background: #065f46;
  transform: scale(1.3);
}

/* Contact */
.contact-section {
  padding: clamp(40px, 6vw, 60px) clamp(16px, 2vw, 20px);
  background: #f9f9f4;
}

.section-title {
  font-size: clamp(26px, 3.2vw, 32px);
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 40px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 24px);
  max-width: 1000px;
  margin: 0 auto clamp(40px, 6vw, 60px);
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: clamp(22px, 2.8vw, 28px) clamp(18px, 2.2vw, 22px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  text-align: center;
}

.contact-icon {
  width: clamp(42px, 4.8vw, 48px);
  height: clamp(42px, 4.8vw, 48px);
  margin: 0 auto clamp(10px,1.2vw, 12px);
  border-radius: 12px;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: clamp(20px, 2.4vw, 24px);
  height: clamp(20px, 2.4vw, 24px);
  stroke: #065f46;
}

.contact-card h3 {
  font-size: clamp(17px, 2vw, 20px);
  margin-bottom: clamp(6px, 0.8vw, 8px);
  color: #111827;
}

.contact-card p {
  font-size: clamp(13px, 1.5vw, 15px);
  color: #6b7280;
  margin-bottom: clamp(12px, 1.6vw, 16px);
}

.cta-box {
  text-align: center;
  background: linear-gradient(90deg, #12543c, #109293);
  border-radius: 16px;
  padding: clamp(35px, 5vw, 50px) clamp(16px, 2vw, 20px);
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  color: #fff !important;
  margin-bottom: clamp(10px, 1.2vw, 12px);
}

.cta-box p {
  font-size: clamp(14px, 1.6vw, 16px);
  margin-bottom: clamp(18px, 2.4vw, 24px);
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: clamp(12px, 1.4vw, 14px);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn.secondary {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.cta-actions .btn.secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 500px;
  z-index: 200;
  display: none;
}

/* Mobile Responsive */
@media (max-width: 950px) {
  header {
    padding: clamp(12px, 2vw, 16px) clamp(16px, 2.5vw, 20px);
  }

  nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(24px, 4vw, 30px);
    padding: clamp(24px, 3.5vw, 30px) clamp(16px, 2.5vw, 20px) clamp(30px, 5vw, 40px);
  }

  .hero-video {
    display: none !important;
  }
  
  .badges {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(26px, 7vw, 38px);
  }

  .hero h1 b {
    font-size: clamp(28px, 7.5vw, 38px);
  }

  .hero p {
    font-size: clamp(16px, 4vw, 18px);
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .highlight {
    font-size: clamp(16px, 4vw, 18px);
    width: 90%;
  }

  .approach-container {
    grid-template-columns: 1fr;
  }

  .floating-btn {
    display: block;
  }

  .t-prev {
    left: 10px;
    top: 7%;
    z-index: 9999999;
  }

  .t-next {
    right: 10px;
    top: 7%;
    z-index: 9999999;
  }

  .t-arrow {
    width: clamp(32px, 8vw, 36px);
    height: clamp(32px, 8vw, 36px);
    font-size: clamp(20px, 5vw, 24px);
     z-index: 9999999;
  }

  .all-btn {
    width: 90%;
  }

  .services-grid {
    padding: clamp(20px, 3vw, 24px);
  }

  .service {
    padding: clamp(12px, 2vw, 14px);
  }
}

/* Desktop Grids */
@media (min-width: 768px) {
  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Very Large Screens */
@media (min-width: 1600px) {
  html {
    font-size: 18px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .info {
    flex-direction: column;
    align-items: center;
  }

  .info-line {
    width: 100%;
    justify-content: center;
  }

  .actions {
    flex-direction: column;
  }

  .actions .book,
  .actions .desc-toggle-btn {
    flex: 1;
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

/* ===== COMPACT SERVICES SECTION — ADD TO services.css ===== */

/* Section wrapper */
.uslugi {
  padding: clamp(32px, 5vw, 56px) clamp(12px, 3vw, 20px);
  background: #efefe7;
}

.uslugi-header {
  text-align: center;
  margin-bottom: clamp(16px, 2vw, 24px);
}

/* ===== SERVICE LIST (mobile-first rows) ===== */
.svc-list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Single row */
.svc-row {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.svc-row:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Main clickable row */
.svc-row-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  gap: 8px;
}

/* Left side: dot + name */
.svc-row-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.svc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.svc-row-name {
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.svc-row-sub {
  font-size: 10px;
  color: #9ca3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right side: price + time */
.svc-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.svc-row-price {
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 700;
  color: #065f46;
  white-space: nowrap;
}

.svc-row-price .old {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 0.8em;
  margin-right: 3px;
}

.svc-row-price .new {
  color: #dc2626;
  font-weight: 700;
}

.svc-row-time {
  font-size: 10px;
  color: #9ca3af;
}

/* Action buttons row */
.svc-row-actions {
  display: flex;
  gap: 6px;
  padding: 0 10px 10px;
}

.svc-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  justify-content: center;
  background: linear-gradient(90deg, #12543c, #007e5e);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.svc-book-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.svc-book-btn svg {
  flex-shrink: 0;
}

.svc-eye-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  color: #6b7280;
  padding: 0;
}

.svc-eye-btn:hover {
  background: #e5e7eb;
  transform: scale(1.05);
}

.svc-eye-btn.active {
  background: #d1fae5;
  border-color: #6ee7b7;
  color: #065f46;
}

/* Description panel */
.svc-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease,
              opacity 0.3s ease;
  opacity: 0;
  padding: 0 12px;
  background: #f9f9f5;
  border-top: 0px solid #e5e7eb;
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
}

.svc-desc.open {
  max-height: 600px;
  opacity: 1;
  padding: 12px;
  border-top: 1px solid #e5e7eb;
}

.svc-desc p {
  margin: 0 0 8px;
}

.svc-desc .proto {
  font-size: 12px;
  background: #efefe7;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Abon table inside desc */
.svc-abon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #d1d5db;
}

.abon-row {
  font-size: 11px;
  font-weight: 600;
  color: #9b8b6f;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 5px 8px;
}

.abon-row.p1 {
  color: #065f46;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

/* insta discount colors */
.insta-line {
  color: #065f46;
  font-size: 11px;
  margin-top: 2px;
}

/* ===== DESKTOP GRID (768px+) ===== */
@media (min-width: 768px) {
  .svc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .svc-row {
    display: flex;
    flex-direction: column;
  }

  .svc-row-main {
    flex: 1;
    padding: 14px 16px 10px;
  }

  .svc-row-actions {
    padding: 0 14px 14px;
  }

  .svc-row-name {
    font-size: 13px;
    white-space: normal;
  }

  .svc-row-sub {
    font-size: 11px;
    white-space: normal;
  }

  .svc-row-price {
    font-size: 14px;
  }

  .svc-book-btn {
    font-size: 13px;
    padding: 9px 12px;
  }
}

@media (min-width: 1024px) {
  .svc-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.extra-price{

background:#ecfdf5;
border:1px solid #a7f3d0;

color:#065f46;
font-weight:700;

padding:6px 12px;
border-radius:8px;

font-size:13px;
white-space:nowrap;

}

/* ===== PREMIUM GREEN & GOLD VISUAL REFRESH ===== */
:root {
  --premium-ink: #082f22;
  --premium-green: #073621;
  --premium-green-soft: #0c4630;
  --premium-gold: #b79455;
  --premium-gold-soft: #d9c79c;
  --premium-cream: #f6efe4;
  --premium-paper: #fffaf1;
  --premium-line: rgba(183, 148, 85, 0.34);
  --premium-shadow: 0 18px 45px rgba(8, 47, 34, 0.12);
}

body {
  background:
    linear-gradient(180deg, #fbf5eb 0%, #f3eadc 46%, #fbf6ed 100%) !important;
  color: var(--premium-ink) !important;
}

header {
  background: rgba(246, 239, 228, 0.88) !important;
  border-bottom: 1px solid var(--premium-line) !important;
  box-shadow: 0 10px 30px rgba(8, 47, 34, 0.08);
}

.logo,
nav a:hover {
  color: var(--premium-green) !important;
}

nav a {
  color: rgba(8, 47, 34, 0.72) !important;
}

.btn-green,
.btn-primary,
.btn-header,
.actions .book,
.contact-card .btn,
.floating-btn a,
.svc-book-btn {
  background: linear-gradient(135deg, var(--premium-green), var(--premium-green-soft)) !important;
  border: 1px solid rgba(217, 199, 156, 0.38) !important;
  border-radius: 999px !important;
  box-shadow: 0 12px 24px rgba(8, 47, 34, 0.18) !important;
}

.btn-secondary {
  background: transparent !important;
  color: var(--premium-green) !important;
  border: 1px solid var(--premium-gold) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

.hero {
  max-width: 1180px;
  padding-top: clamp(36px, 6vw, 76px) !important;
  padding-bottom: clamp(34px, 6vw, 72px) !important;
}

.hero h1,
.servh2,
.section-title,
.t-title,
.fit-section h2,
.about h2 {
  color: var(--premium-green) !important;
  letter-spacing: 0.04em !important;
}

.hero h1 b {
  color: var(--premium-gold) !important;
}

.hero p,
.highlight {
  color: rgba(8, 47, 34, 0.74) !important;
}

.badge,
.badge2 {
  background: rgba(255, 250, 241, 0.72) !important;
  border: 1px solid var(--premium-line) !important;
  color: var(--premium-green) !important;
}

.hero-video video {
  border: 1px solid var(--premium-line);
  box-shadow: var(--premium-shadow);
}

.uslugi,
.services,
.t-section {
  background: transparent !important;
}

.about,
.fit-section,
.contact-section {
  background: rgba(255, 250, 241, 0.48) !important;
}

.premium-services {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 80px) clamp(14px, 3vw, 24px) !important;
}

.premium-services::before,
.premium-services::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: rgba(7, 54, 33, 0.08);
  border: 1px solid rgba(183, 148, 85, 0.18);
  transform: rotate(-16deg);
}

.premium-services::before {
  width: 220px;
  height: 90px;
  border-radius: 70% 30% 70% 30%;
  top: 22px;
  left: -70px;
}

.premium-services::after {
  width: 260px;
  height: 104px;
  border-radius: 30% 70% 30% 70%;
  right: -86px;
  bottom: 34px;
}

.premium-services .uslugi-header {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto clamp(24px, 4vw, 44px);
}

.premium-services .servh2 {
  position: relative;
  font-size: clamp(34px, 7vw, 78px) !important;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--premium-green) !important;
  margin-bottom: clamp(14px, 2vw, 20px) !important;
}

.premium-services .servh2::before {
  content: "ДАНИИЛ НАГЕЛЬ";
  display: block;
  margin-bottom: 14px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(11px, 1.6vw, 15px);
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--premium-gold);
}

.premium-services .highlight {
  width: auto !important;
  max-width: 760px;
  margin: 0 auto !important;
  font-family: 'Montserrat', system-ui, sans-serif !important;
  font-size: clamp(12px, 1.8vw, 15px) !important;
  font-style: normal !important;
  letter-spacing: 0.36em !important;
  text-transform: uppercase;
  color: rgba(8, 47, 34, 0.68) !important;
}

.premium-services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.premium-instagram-bonus {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(183, 148, 85, 0.36);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.9), rgba(246, 239, 228, 0.72));
  box-shadow: 0 14px 30px rgba(8, 47, 34, 0.08);
}

.premium-instagram-bonus.is-active {
  border-color: rgba(7, 54, 33, 0.36);
  background:
    linear-gradient(135deg, rgba(236, 248, 240, 0.9), rgba(246, 239, 228, 0.7));
}

.premium-instagram-title {
  margin: 0 0 5px !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(22px, 3vw, 30px) !important;
  font-weight: 700;
  line-height: 1;
  color: var(--premium-green) !important;
}

.premium-instagram-text {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.45;
  color: rgba(8, 47, 34, 0.72) !important;
}

.premium-instagram-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.premium-instagram-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(183, 148, 85, 0.52);
  border-radius: 999px;
  background: linear-gradient(135deg, #7d4c9d, #c13584 48%, #f77737);
  color: #fff !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 22px rgba(193, 53, 132, 0.18);
}

.premium-instagram-bonus.is-active .premium-instagram-follow {
  background: transparent;
  color: var(--premium-green) !important;
  border-color: rgba(183, 148, 85, 0.36);
  box-shadow: none;
}

.premium-instagram-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(183, 148, 85, 0.42);
  border-radius: 999px;
  background: var(--premium-green);
  color: #fff8ea;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.premium-instagram-bonus.is-active .premium-instagram-check {
  background: var(--premium-gold);
  color: var(--premium-green);
}

.premium-instagram-check input {
  width: 17px;
  height: 17px;
  accent-color: var(--premium-gold);
}

.premium-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(18px, 2.4vw, 28px);
  background: rgba(255, 250, 241, 0.9);
  border: 1px solid var(--premium-line);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(8, 47, 34, 0.08);
  overflow: hidden;
}

.premium-service-card.is-featured {
  background: linear-gradient(145deg, var(--premium-green), #052719);
  border-color: rgba(217, 199, 156, 0.62);
  color: #fff8ea;
  box-shadow: 0 24px 55px rgba(8, 47, 34, 0.24);
}

.premium-time-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 2;
  width: 74px;
  height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 8px 9px 10px;
  border-radius: 0 18px 0 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(145deg, #0b4a32, var(--premium-green));
  color: #fff8ea !important;
  border-left: 1px solid rgba(217, 199, 156, 0.72);
  border-bottom: 1px solid rgba(217, 199, 156, 0.72);
  box-shadow: -8px 10px 18px rgba(8, 47, 34, 0.13);
  text-align: center;
  text-transform: uppercase;
}

.premium-time-badge strong {
  display: block;
  color: inherit;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0 !important;
}

.premium-time-badge small {
  display: block;
  color: var(--premium-gold-soft);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em !important;
}

.is-featured .premium-time-badge {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(145deg, var(--premium-gold), #caa866);
  color: var(--premium-green) !important;
  border-color: rgba(255, 248, 234, 0.46);
}

.is-featured .premium-time-badge small {
  color: rgba(8, 47, 34, 0.72);
}

.premium-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--premium-line);
}

.is-featured .premium-card-head {
  border-bottom-color: rgba(217, 199, 156, 0.34);
}

.premium-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--premium-gold);
  border-radius: 50%;
  color: var(--premium-green);
  background: rgba(255, 250, 241, 0.62);
}

.is-featured .premium-icon {
  color: var(--premium-gold-soft);
  background: rgba(255, 250, 241, 0.05);
}

.premium-icon-svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-label {
  margin: 0 0 5px !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(20px, 2.6vw, 30px) !important;
  line-height: 1;
  text-transform: uppercase;
  color: var(--premium-green) !important;
}

.premium-service-card h3 {
  margin: 0 0 7px !important;
  font-family: 'Montserrat', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  color: var(--premium-gold) !important;
}

.premium-meta {
  margin: 0 !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  color: rgba(8, 47, 34, 0.68) !important;
}

.is-featured .premium-label,
.is-featured .premium-service-card h3,
.is-featured .premium-intro,
.is-featured .premium-meta,
.is-featured .premium-detail-block h4,
.is-featured .premium-detail-block li {
  color: #fff8ea !important;
}

.is-featured .premium-meta,
.is-featured .premium-detail-block h4 {
  color: var(--premium-gold-soft) !important;
}

.premium-badge {
  position: absolute;
  top: 64px;
  right: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--premium-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.premium-intro {
  margin: 18px 0 16px !important;
  font-family: 'Montserrat', system-ui, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.65;
  color: rgba(8, 47, 34, 0.78) !important;
}

.premium-details {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.premium-packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: auto 0 10px;
  padding-top: 18px;
  border-top: 1px dashed var(--premium-line);
}

.premium-package {
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 12px 10px;
  border: 1px solid rgba(183, 148, 85, 0.34);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.82), rgba(246, 239, 228, 0.58));
  text-align: center;
}

.premium-package span {
  font-size: 10px !important;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: rgba(8, 47, 34, 0.62);
  white-space: nowrap;
}

.premium-package strong {
  display: block;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1;
  letter-spacing: 0 !important;
  color: var(--premium-green);
  font-weight: 900;
  white-space: nowrap;
}

.is-featured .premium-packages {
  border-top-color: rgba(217, 199, 156, 0.36);
}

.is-featured .premium-package {
  background: rgba(255, 250, 241, 0.07);
  border-color: rgba(217, 199, 156, 0.38);
}

.is-featured .premium-package span {
  color: rgba(255, 248, 234, 0.68);
}

.is-featured .premium-package strong {
  color: var(--premium-gold-soft);
}

.premium-detail-block h4 {
  margin: 0 0 8px !important;
  font-family: 'Montserrat', system-ui, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  color: var(--premium-gold) !important;
}

.premium-detail-block ul {
  display: grid;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-detail-block li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.42;
  color: rgba(8, 47, 34, 0.8);
}

.premium-detail-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 13px;
  height: 13px;
  border: 1px solid var(--premium-gold);
  border-radius: 50%;
}

.premium-detail-block li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.5em;
  width: 5px;
  height: 3px;
  border-left: 1px solid var(--premium-gold);
  border-bottom: 1px solid var(--premium-gold);
  transform: rotate(-45deg);
}

.premium-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 0;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--premium-green);
  color: #fff !important;
  border: 1px solid rgba(183, 148, 85, 0.48);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premium-package:last-child,
.premium-package:nth-last-child(2) {
  margin-bottom: 0;
}

.premium-terms-link {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(8, 47, 34, 0.68);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(183, 148, 85, 0.56);
  text-underline-offset: 5px;
}

.premium-terms-link:hover {
  color: var(--premium-green);
  text-decoration-color: var(--premium-gold);
}

.is-featured .premium-terms-link {
  color: rgba(255, 248, 234, 0.78);
  text-decoration-color: rgba(217, 199, 156, 0.62);
}

.membership-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.membership-modal.is-open {
  display: flex;
}

.membership-modal-open {
  overflow: hidden;
}

.membership-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 31, 21, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.membership-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.97), rgba(246, 239, 228, 0.97));
  border: 1px solid var(--premium-line);
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(5, 31, 21, 0.32);
  color: var(--premium-ink);
}

.membership-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--premium-line);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.82);
  color: var(--premium-green);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.membership-modal__eyebrow {
  margin: 0 0 8px !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.24em !important;
  text-transform: uppercase;
  color: var(--premium-gold) !important;
}

.membership-modal__dialog h3 {
  margin: 0 34px 16px 0 !important;
  color: var(--premium-green) !important;
  font-size: clamp(28px, 5vw, 44px) !important;
  line-height: 1;
}

.membership-modal__dialog p {
  margin: 0 0 14px !important;
  color: rgba(8, 47, 34, 0.78) !important;
  font-size: 15px !important;
  line-height: 1.65;
}

.membership-modal__periods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.membership-modal__periods span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px;
  border: 1px solid var(--premium-line);
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.76);
  color: var(--premium-green);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.membership-modal__confirm {
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  border: 1px solid rgba(217, 199, 156, 0.52);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--premium-green), var(--premium-green-soft));
  color: #fff8ea;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(8, 47, 34, 0.18);
}

.membership-modal__confirm:hover {
  transform: translateY(-1px);
}

.premium-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(8, 47, 34, 0.22);
}

.is-featured .premium-book-btn {
  background: var(--premium-gold);
  color: var(--premium-green) !important;
}

.contact-card,
.fit-item,
.approach-item,
.t-slide {
  background: rgba(255, 250, 241, 0.86) !important;
  border: 1px solid var(--premium-line) !important;
  border-radius: 18px !important;
  box-shadow: var(--premium-shadow) !important;
}

.cta-box {
  background: linear-gradient(135deg, var(--premium-green), var(--premium-green-soft)) !important;
  border: 1px solid rgba(217, 199, 156, 0.42);
  box-shadow: var(--premium-shadow);
}

@media (min-width: 980px) {
  .premium-service-card:nth-child(3),
  .premium-service-card:nth-child(4),
  .premium-service-card:nth-child(5) {
    grid-column: span 1;
  }

  .premium-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .premium-service-card.is-featured {
    grid-column: span 3;
  }

  .premium-service-card.is-featured .premium-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .premium-service-card.is-featured .premium-packages {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .premium-services-grid {
    grid-template-columns: 1fr;
  }

  .premium-instagram-bonus {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .premium-instagram-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .premium-instagram-follow {
    width: 100%;
  }

  .premium-instagram-check {
    width: 100%;
    white-space: normal;
  }

  .premium-service-card {
    border-radius: 16px;
  }

  .premium-card-head {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .premium-icon {
    width: 48px;
    height: 48px;
  }

  .premium-icon-svg {
    width: 28px;
    height: 28px;
  }

  .premium-badge {
    position: static;
    align-self: flex-start;
    margin-top: 12px;
  }

  .premium-time-badge {
    width: 66px;
    height: 56px;
    border-radius: 0 16px 0 18px;
  }

  .premium-time-badge strong {
    font-size: 22px;
  }

  .premium-time-badge small {
    font-size: 9px;
  }

  .membership-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .membership-modal__dialog {
    max-height: 88vh;
    border-radius: 18px;
  }

  .membership-modal__periods {
    grid-template-columns: 1fr;
  }

  .premium-services .highlight {
    letter-spacing: 0.18em !important;
  }
}

@media (max-width: 380px) {
  .premium-package {
    min-height: 64px;
    padding: 10px 8px;
  }

  .premium-package strong {
    font-size: 14px;
  }
}
