.hidden-links,
.swipe-indicator {
  display: none;
}
html { scroll-behavior: smooth; }
/* ========================================
   Accessibility Helpers
======================================== */
/* ========================================
   Header & Contact Banner
======================================== */
.phone-number a,
.email a {
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}
.phone-number a:hover,
.email a:hover {
  color: #4caf50;
}
/* ========================================
   Primary Navigation
======================================== */
.nav_secondary {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav_secondary .container {
  padding: 15px;
}
.nav_secondary nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}
.nav_left,
.nav_right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.nav_logo img {
  height: 40px;
  width: auto;
}
.nav_burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  background: #fff;
  padding: 10px;
  gap: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.nav_burger span[aria-hidden="true"] {
  display: block;
  width: 100%;
  height: 2px;
  background: #222;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
#siteNav.is-mobile-open .nav_burger span[aria-hidden="true"]:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}
#siteNav.is-mobile-open .nav_burger span[aria-hidden="true"]:nth-of-type(2) {
  opacity: 0;
}
#siteNav.is-mobile-open .nav_burger span[aria-hidden="true"]:nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav_mobile_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.nav_mobile_panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 80vw);
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1001;
}
.nav_mobile_panel_inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav_mobile_heading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
  margin-top: 4px;
}
.nav_mobile_item {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #222;
  display: flex;
  gap: 8px;
  align-items: center;
}
#siteNav.is-mobile-open .nav_mobile_panel {
  transform: translateX(0);
}
#siteNav.is-mobile-open .nav_mobile_overlay {
  opacity: 1;
  pointer-events: auto;
}
body.nav-locked {
  overflow: hidden;
}
.nav_mobile_item.nav_mobile_link img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.nav_mobile_item.nav_mobile_link .nav_contact_text {
  font-weight: 500;
}
.nav_burger:hover {
  border-color: #c5c5c5;
  background: #f9f9f9;
}
.nav_menu_item p {
  font-weight: 500;
}
.nav_menu_item_drop_list {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 10;
}
.nav_menu_item_drop_list a {
  transition: background-color 0.2s ease;
}
.nav_menu_item_drop_list a:hover {
  background-color: #f5f5f5;
}
@media (max-width: 991.98px) {
  .nav_left,
  .nav_right {
    display: none;
  }
  .nav_burger {
    display: inline-flex;
    margin-left: auto;
  }
  .nav_logo {
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .nav_mobile_panel,
  .nav_mobile_overlay {
    display: none;
  }
}
/* ========================================
   Button Utilities
======================================== */
.green_sumbit_btn,
.send-request-btn {
  display: block;
  padding: 14px 28px;
  background-color: #218838;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  margin: 0 auto;
  border: none;
  cursor: pointer;
  text-align: center;
}
.green_sumbit_btn {
  max-width: 300px;
}
.green_sumbit_btn:hover,
.send-request-btn:hover {
  background-color: #1e7e34;
}
/* ========================================
   Hero Banner
======================================== */
.hero-tv-mounting,
.hero-title,
.hero-subtitle,
.hero-cta {
  color: #fff;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}
/* Section Titles */
.section_title {
  max-width: 1000px;
  margin: auto;
}
.section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  border-radius: 28px;
  /* padding: clamp(10px, 4vw, 56px) 0; */
  margin: 0 auto clamp(10px, 4vw, 56px) auto;
  box-shadow: 0 30px 65px rgba(15, 23, 42, 0.08);
  max-width: 1000px;
}
.section-tv-mounting {
  border-radius: 28px;
  margin: 0 auto clamp(10px, 4vw, 56px) auto;
  max-width: 1000px;
}

.section > .container {
  padding-inline: clamp(10px, 5vw, 56px);
}
.section article {
  /* background: #fff; */
  border-radius: 22px;
  padding: clamp(10px, 3vw, 28px);
  /* box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05); */
  margin-bottom: 15px;
}
.section article:last-child {
  margin-bottom: 0;
}
/* SEO Cards */
.seo-upgrade {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}
.seo-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}
.seo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* SEO Sections */
.seo-keyword-section {
  padding: 20px 0;
}
.seo-text-block {
  /* background: #f8f9fa; */
  padding: 30px;
  border-radius: 12px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
  /* margin-top: 20px; */
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.seo-text-block ul {
  padding-left: 1.2em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.seo-text-block li {
  margin-bottom: 8px;
}
.seo-text-block blockquote {
  font-style: italic;
  background: #f9f9f9;
  padding: 16px 20px;
  border-left: 4px solid #ccc;
  margin: 30px 0;
}
/* TV Gallery */
.tv-gallery-images {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  /* margin: 40px 0; */
}
.tv-gallery-images img,
.gallery-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  flex: 1 1 300px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.seo-block-image {
  /* max-width: 740px; */
  margin: 0 auto 24px;
}
.seo-block-image picture {
  display: block;
}
.seo-block-image .seo-block-image__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
/* Final Section */
.section_final {
  margin-top: 60px;
}
.section_final p {
  margin-bottom: 30px;
  line-height: 1.6;
}
/* Pages Navigation */
.pages_navigation ul {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 0 0 30px;
  flex-wrap: wrap;
  align-items: center;
}
.pages_navigation li {
  font-size: 14px;
  color: #666;
}
.pages_navigation li::after {
  content: '/';
  margin: 0 6px;
  color: #ccc;
}
.pages_navigation li:last-child::after {
  content: '';
}
/* Internal Links */
.internal-links {
  margin-top: 60px;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 12px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.03); */
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.internal-links p {
  margin: 0 0 15px;
  color: #333;
}
.internal-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.internal-links a:hover {
  text-decoration: underline;
  color: #4caf50;
}
/* Form Elements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: #f1f6fd;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  color: #333;
  transition: border-color 0.2s ease;
}
.input-error {
  border: 2px solid #ff6b6b !important;
  background-color: #fff5f5;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #4caf50;
  background-color: #eef6fd;
  outline: none;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 500;
  color: #333;
}
/* Modal Styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay.hidden {
  display: none !important;
}
body.modal-open {
  overflow: hidden;
  height: 100vh;
}
/* Booking Modal Styles */
.booking_modal {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  z-index: 10001;
}
.booking_modal h2 {
  margin-top: 0;
  font-size: 24px;
  margin-bottom: 20px;
}
.booking-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}
/* Plans Modal */
.plans_modal {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  text-align: left;
  position: relative;
  z-index: 10001;
  max-height: 95vh;
  overflow-y: auto;
  width: auto;
  max-width: 1100px;
}
.plans-title {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
}
.plans-section .plans-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 992px) {
  .plans-section .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}
/* === Furniture quiz inline === */
#plans-quiz-furniture {
  padding-bottom: 40px;
}
#plans-quiz-furniture .wall-hanging-booking-form {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(34, 34, 34, 0.1);
  padding: 32px 24px;
  font-family: 'Inter', Arial, sans-serif;
}
#plans-quiz-furniture .wall-hanging-booking-form h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  letter-spacing: -0.5px;
}
#plans-quiz-furniture .service-block {
  background: #f8fbff;
  border: 2px solid #d3e6fb;
  border-radius: 15px;
  margin-bottom: 22px;
  padding: 18px 16px 14px;
  box-shadow: 0 2px 10px rgba(35, 130, 244, 0.07);
  transition: border 0.2s, box-shadow 0.2s;
}
#plans-quiz-furniture .category-label {
  color: #1565c0;
  font-size: 1.05rem;
}
#plans-quiz-furniture .category-options-multi {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
}
#plans-quiz-furniture .category-option {
  background: #f4f7fb;
  border: 2px solid #78909c;
  border-radius: 14px;
  flex: 1 1 120px;
  min-width: 110px;
  max-width: 150px;
  padding: 15px 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: border 0.17s, box-shadow 0.17s, background 0.18s;
}
#plans-quiz-furniture .category-option span {
  font-size: 1rem;
  color: #22324b;
}
#plans-quiz-furniture .category-option .qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #b8c4d9;
  background: #fff;
  color: #1a3257;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#plans-quiz-furniture .category-option .qty-btn:hover {
  border-color: #2382f4;
}
#plans-quiz-furniture span[id^="qty-"] {
  width: 24px;
  display: inline-block;
}
#plans-quiz-furniture .price-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f4f7fb;
  color: #1a3257;
  border-radius: 8px;
  font-size: 1.08rem;
  gap: 10px;
  padding: 8px 0;
}
#plans-quiz-furniture .form-label {
  font-weight: 500;
  margin-top: 16px;
  color: #162c46;
  display: block;
}
#plans-quiz-furniture .required {
  color: #d50000;
}
#plans-quiz-furniture textarea {
  resize: vertical;
}
#plans-quiz-furniture .input-error-message {
  color: #e23c3c;
  font-size: 0.95rem;
  margin: 4px 0 6px;
}
#plans-quiz-furniture .furniture-block.input-error {
  border-color: #e23c3c;
}
#plans-quiz-furniture .sticky-total {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: #f4f7fb;
  box-shadow: 0 -2px 10px rgba(34, 34, 34, 0.07);
  border-radius: 0 0 8px 8px;
  padding: 10px 0;
}
@media (max-width: 600px) {
  .contact-form-footer {
  flex-direction: column;
  }
  #plans-quiz-furniture {
    padding: 32px 0;
  }
  #plans-quiz-furniture .wall-hanging-booking-form {
    padding: 24px 16px;
  }
  #plans-quiz-furniture .category-options-multi {
    gap: 10px;
  }
  #plans-quiz-furniture .category-option {
    flex: 1 1 48%;
    min-width: 140px;
  }
}
/* Thank-you popup */
.thank-you-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 13000;
  padding: 24px;
}
.thank-you-overlay.is-visible {
  display: flex;
}
.thank-you-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.25);
  max-width: 420px;
  width: 100%;
  padding: 32px 28px;
  position: relative;
}
.thank-you-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
}
.thank-you-close:hover {
  color: #ef4444;
}
.thank-you-content h2 {
  margin: 12px 0 8px;
  text-align: center;
}
.thank-you-content p {
  color: #1f2937;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .plans-section .plans-grid {
    grid-template-columns: 1fr;
  }
}
/* Wall hanging quiz inline */
#plans-quiz-wall .wall-hanging-booking-form {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(34, 34, 34, 0.1);
  padding: 32px 24px;
  font-family: 'Inter', Arial, sans-serif;
}
#plans-quiz-wall .wall-hanging-booking-form h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  letter-spacing: -0.5px;
}
#plans-quiz-wall .price-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f4f7fb;
  color: #1a3257;
  border-radius: 8px;
  font-size: 1.08rem;
  gap: 10px;
  padding: 8px 0;
  margin-bottom: 22px;
}
#plans-quiz-wall .category-options-multi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
#plans-quiz-wall .category-option {
  border: 2px solid #d9e3ef;
  border-radius: 14px;
  background: #f4f7fb;
  min-height: 120px;
  padding: 15px 10px 12px;
  cursor: pointer;
  transition: border-color 0.17s, box-shadow 0.17s, background 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #22324b;
  font-family: inherit;
  font-size: 1rem;
}
#plans-quiz-wall .category-option svg {
  height: 38px;
}
#plans-quiz-wall .category-option:focus-visible {
  outline: 2px solid #2382f4;
  outline-offset: 2px;
}
#plans-quiz-wall .category-option.active {
  border-color: #2382f4;
  background: #e9f2ff;
  box-shadow: 0 3px 12px rgba(35, 130, 244, 0.15);
}
#plans-quiz-wall .category-option--art.active {
  border-color: #fbbc04;
  background: #fffdf7;
  box-shadow: 0 3px 12px rgba(251, 188, 4, 0.25);
}
#plans-quiz-wall .category-option--mirror.active {
  border-color: #82cfff;
  background: #f6fbff;
  box-shadow: 0 3px 12px rgba(130, 207, 255, 0.25);
}
#plans-quiz-wall .category-option--shelf.active {
  border-color: #b2e7c3;
  background: #f6fff8;
  box-shadow: 0 3px 12px rgba(178, 231, 195, 0.25);
}
#plans-quiz-wall .category-option--curtain.active {
  border-color: #e1c5fb;
  background: #faf6ff;
  box-shadow: 0 3px 12px rgba(225, 197, 251, 0.25);
}
#plans-quiz-wall .service-block {
  background: #f8fbff;
  border: 2px solid #d3e6fb;
  border-radius: 15px;
  margin-bottom: 22px;
  padding: 18px 16px 14px;
  box-shadow: 0 2px 10px rgba(35, 130, 244, 0.07);
}
#plans-quiz-wall .art-block {
  border-color: #fbbc04;
  background: #fffdf7;
}
#plans-quiz-wall .mirror-block {
  border-color: #82cfff;
  background: #f6fbff;
}
#plans-quiz-wall .shelf-block {
  border-color: #b2e7c3;
  background: #f6fff8;
}
#plans-quiz-wall .curtain-block {
  border-color: #e1c5fb;
  background: #faf6ff;
}
#plans-quiz-wall .category-label {
  color: #2382f4;
  font-size: 1.05rem;
}
#plans-quiz-wall .form-label {
  display: block;
  margin: 16px 0 6px;
  font-weight: 500;
  color: #162c46;
}
#plans-quiz-wall .ladder-label {
  margin-top: 24px;
}
#plans-quiz-wall .required {
  color: #d50000;
}
#plans-quiz-wall input[type="text"],
#plans-quiz-wall input[type="tel"],
#plans-quiz-wall input[type="date"],
#plans-quiz-wall select,
#plans-quiz-wall textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.2px solid #d6dbe8;
  border-radius: 8px;
  font-size: 1rem;
  background: #f8fafb;
  transition: border-color 0.16s, background 0.16s;
}
#plans-quiz-wall textarea {
  resize: vertical;
  min-height: 120px;
}
#plans-quiz-wall input:focus,
#plans-quiz-wall select:focus,
#plans-quiz-wall textarea:focus {
  border-color: #2382f4;
  background: #fff;
  outline: none;
}
#plans-quiz-wall .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 12px;
}
#plans-quiz-wall .radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7f9fc;
  border: 1.3px solid #d8e4f7;
  border-radius: 30px;
  padding: 6px 14px;
  color: #1a3257;
  font-size: 0.98rem;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 7px rgba(60, 130, 244, 0.05);
}
#plans-quiz-wall .radio-group label:hover {
  border-color: #2382f4;
}
#plans-quiz-wall input[type="radio"] {
  accent-color: #2382f4;
}
#plans-quiz-wall .input-error-message {
  color: #e23c3c;
  font-size: 0.95rem;
  margin: 4px 0 6px;
}
#plans-quiz-wall .green_sumbit_btn {
  width: 100%;
  margin-top: 20px;
}
#plans-quiz-wall .green_sumbit_btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}
@media (min-width: 992px) {
  #plans-quiz-wall .category-options-multi {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  #plans-quiz-wall {
    padding: 36px 0;
  }
  #plans-quiz-wall .wall-hanging-booking-form {
    padding: 24px 16px;
  }
  #plans-quiz-wall .category-options-multi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  #plans-quiz-wall .category-option {
    min-height: 110px;
  }
}
.plans-section .plan-card {
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  overflow: visible !important;
}
.plans-section [hidden],
.plans-section [aria-hidden="true"] {
  display: block !important;
  visibility: visible !important;
}
.plans-carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  perspective: 1000px;
  touch-action: pan-y;
  height: 500px;
}
.plans-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  touch-action: pan-y;
}
.plan-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, opacity 0.4s ease;
  width: 300px;
  max-width: 90%;
  height: auto;
  cursor: pointer;
  transform-origin: center center;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
}
.plan-card-visible {
  position: static;
  opacity: 1;
}
.plan-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  text-align: left;
  font-size: 14px;
}
.plan-card ul li {
  margin-bottom: 8px;
  padding: 0 15px;
}
.plan-card ul li .highlight {
  color: #2e7d32;
}
.plan-card ul li .excluded {
  color: #b71c1c;
}
.plan-card img {
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  width: 50%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  margin: 0 auto;
}
.plan-content {
  padding: 15px;
  background-color: white;
  border-radius: 0 0 8px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plan-content ul {
  text-align: center;
  width: 100%;
}
.select-plan-btn {
  background-color: #218838;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 15px;
}
.select-plan-btn:hover {
  background-color: #218838;
}
.plans-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  line-height: 36px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease;
  z-index: 10002;
}
.plans-close:hover {
  background-color: #111;
}
/* Success Message */
.success-message {
  padding: 40px;
}
.success-icon {
  font-size: 40px;
  color: #4caf50;
  margin-bottom: 20px;
}
/* Contact Form */
.contact-form-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}
.contact-form-header {
  margin-bottom: 40px;
}
.contact-form-header h2 {
  font-size: 42px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  display: inline-block;
}
.contact-form-header .subtitle {
  color: #666;
  margin-left: 20px;
  display: inline-block;
}
.contact-form-description {
  font-size: 20px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 40px;
}
.contact-form {
  width: 100%;
}
.contact-form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form-field {
  width: 100%;
}
.contact-form-textarea {
  width: 100%;
  margin-bottom: 30px;
}
.contact-form-textarea textarea {
  width: 100%;
  padding: 15px;
  min-height: 120px;
  resize: vertical;
}
.contact-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.privacy-checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #4caf50;
}
.privacy-checkbox label {
  font-size: 14px;
  color: #666;
  max-width: 500px;
}
/* Service Cards */
.service-card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  /* border: 2px solid transparent; */
  border-radius: 12px;
  /* background-color: #fff; */
}
.service-card-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 20px;
  color: inherit;
  text-decoration: none;
}
.service-card-link:focus-visible {
  outline: 3px solid #4caf50;
  outline-offset: 4px;
  border-radius: 10px;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #4caf50;
}
.service-select-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 20px auto 0;
  text-align: center;
  background-color: #218838;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.service-select-btn:hover {
  background-color: #1e7e34;
}
/* ========================================
   Footer
======================================== */
footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
}
.footer_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_left {
  flex: 1;
  min-width: 200px;
  margin-right: 40px;
  margin-bottom: 20px;
}
.footer_left img {
  margin-bottom: 15px;
  height: 40px;
}
.footer_left p {
  font-size: 14px;
  color: #ccc;
}
.footer_center {
  flex: 2;
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
.footer_links {
  margin-right: 30px;
}
.footer_links h3,
.footer_right h3 {
  color: #fff;
  margin-bottom: 15px;
}
.footer_links ul,
.footer_right ul {
  list-style: none;
}
.footer_links ul li,
.footer_right ul li {
  margin-bottom: 10px;
}
.footer_links ul li a,
.footer_right ul li a {
  color: #ccc;
}
.footer_right {
  flex: 1;
  min-width: 200px;
}
.footer_links ul li a:hover,
.footer_right ul li a:hover {
  color: #4caf50;
}
.social-links {
  margin-top: 30px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  font-size: 15px;
  text-align: center;
}
.social-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}
.social-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .social-links {
    font-size: 0;
    gap: 10px 14px;
    padding-top: 16px;
  }
  .social-links a {
    font-size: 14px;
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
  }
}
/* Review Platforms */
.review-platforms .platform {
  font-size: 14px;
  color: #333;
}
.review-platforms .platform p {
  line-height: 1.4;
}
.carousel-heading {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}
.icon-hidden {
  display: none;
}
.tooltip-container {
  position: relative;
  /* display: inline-block; */
}
.tooltip-text {
  visibility: hidden;
  background-color: white;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 16px;
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 10000;
}
/* Floating Chat Menu */
.main-chat-btn,
.chat-sub-btn {
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.main-chat-btn img,
.chat-sub-btn img {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.chat-menu-items {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}
.chat-menu-items.hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
#chat-icon.icon-hidden,
#close-icon.icon-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}
#chat-icon,
#close-icon {
  opacity: 1;
  transform: scale(1);
}
/* Modal Overlay */
.modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}
.success_modal {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10001;
}
.success-icon {
  width: 60px;
  height: 60px;
  background-color: #4caf50;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0;
}
.success-icon svg {
  width: 30px;
  height: 30px;
}
/* Animations */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* Responsive Styles */
@media (max-width: 768px) {
  .contact-form-footer {
  flex-direction: column;
  }
.service-card {
    max-width: 100%;
    /* margin-bottom: 30px; */
  }
  .green_sumbit_btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .plans_modal {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 15px;
  }
  .plans-carousel {
    flex-direction: column;
  }
  .plan-card {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .plans_modal {
    height: 90vh;
    max-height: 90vh;
    width: 90%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
  }
  .plans-carousel-wrapper {
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  .plans-carousel {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    touch-action: pan-y;
  }
  .plan-card {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 60%;
    max-width: 90%;
    height: 90%;
    max-height: 90%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-origin: center center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 1;
  }
  .plan-card.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 10;
  }
  .plan-card.prev {
    transform: translateX(-40%) scale(0.8);
    opacity: 0.4;
    z-index: 5;
  }
  .plan-card.next {
    transform: translateX(40%) scale(0.8);
    opacity: 0.4;
    z-index: 5;
  }
  .plan-card img {
    width: 100%;
    max-height: 50%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
  }
  .plan-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
  }
  .plan-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .plan-card ul {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
    text-align: left;
  }
  .plan-card ul li {
    margin-bottom: 8px;
    padding: 0 10px;
  }
  .select-plan-btn {
    margin-top: auto;
    align-self: center;
    background-color: #218838;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .select-plan-btn:hover {
    background-color: #28a745;
  }
  #bookingFormOverlay .plans_modal:has(.success-message) {
    height: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .service-card {
    width: 100%;
  }
  .seo-keyword-section .container,
  .seo-text-block {
    padding: 0 20px;
  }
  .plans-carousel-wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    height: auto;
  }
  .plans-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    justify-content: center;
    overflow: visible;
    height: auto;
  }
  .plan-card {
    flex: 0 0 30%;
    max-width: 30%;
    height: auto;
    flex-direction: column;
  }
}
@media (min-width: 1025px) {
  .plans-carousel-wrapper {
    height: auto;
    perspective: none;
  }
  .plans-carousel {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    height: auto;
  }
  .plan-card {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    margin: 10px;
    flex: 0 0 auto;
    width: calc(33.333% - 40px);
    max-width: 350px;
  }
}
.splide__container {
  box-sizing: border-box;
  position: relative
}
.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block
}
.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto
}
.splide:not(.is-overflow) .splide__pagination {
  display: none
}
.splide__progress__bar {
  width: 0
}
.splide {
  position: relative;
  visibility: hidden
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  position: relative
}
.splide__slide img {
  vertical-align: bottom
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0
}
@keyframes splide-loading {
  0% {
    transform: rotate(0)
  }
  to {
    transform: rotate(1turn)
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0
}
.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1
}
.splide--rtl {
  direction: rtl
}
.splide__track--ttb>.splide__list {
  display: block
}
.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1
}
.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em
}
.splide__arrow:hover:not(:disabled) {
  opacity: .9
}
.splide__arrow:disabled {
  opacity: .3
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide__arrow--prev {
  left: 1em
}
.splide__arrow--prev svg {
  transform: scaleX(-1)
}
.splide__arrow--next {
  right: 1em
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide__pagination {
  bottom: .5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: .7;
  padding: 0;
  position: relative;
  transition: transform .2s linear;
  width: 8px
}
.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide__progress__bar {
  background: #ccc;
  height: 3px
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}
.splide__slide:focus {
  outline: 0
}
@supports(outline-offset:-3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px
  }
}
@media screen and (-ms-high-contrast:none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf
  }
}
@supports(outline-offset:-3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px
  }
}
@media screen and (-ms-high-contrast:none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf
  }
  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf
  }
}
.splide__toggle {
  cursor: pointer
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer
}
.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em
}
.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1)
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto
}
.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1)
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%)
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em
}
.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg)
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto
}
.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg)
}
.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: .5em;
  top: 0
}
/* DESKTOP ONLY — вне @media */
.tooltip-text.copy-tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #333;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  border-radius: 8px;
  padding: 3px 10px;
  position: absolute;
  right: 0;
  top: -36px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  z-index: 99;
  transition: opacity 0.23s;
}
.copy-btn.copied .copy-tooltip {
  visibility: visible;
  opacity: 1;
}
.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0 0 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-left: 2px;
    position: relative;
    box-shadow: none;
    transition: background 0.18s;
  }
  .copy-btn {
  /* ...остальные стили... */
  position: relative;
  /* Не добавляй лишних паддингов, margin, outline на desktop */
}
.copy-btn .tooltip-text.copy-tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #333;
  color: #fff;
  font-size: 13px;
  border-radius: 8px;
  padding: 4px 11px;
  position: absolute;
  left: auto;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  z-index: 99;
  transition: opacity 0.23s;
  pointer-events: none;
}
.copy-btn.copied .tooltip-text.copy-tooltip {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 991.98px) {
  .nav_right .nav_contact_links,
  .nav_mobile_contacts_row .divider {
    color: #bbb;
    margin: 0 7px;
    font-weight: normal;
    font-size: 13px;
  }
  .nav_mobile_contacts_row .nav_mobile_link {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #222;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 1px 0;
    min-width: 0;
    flex-shrink: 1;
    max-width: 45vw;
    overflow: hidden;
  }
  .nav_mobile_contacts_row .nav_mobile_link .nav_contact_text {
    word-break: break-all;
    min-width: 0;
    flex-shrink: 1;
  }
  .nav_mobile_contacts_row .nav_mobile_link img {
    vertical-align: middle;
    pointer-events: none;
    min-width: 15px;
    min-height: 15px;
    max-width: 15px;
    max-height: 15px;
    display: inline-block;
  }
  .nav_mobile_contacts_row .nav_mobile_link .copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0 0 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-left: 2px;
    position: relative;
    box-shadow: none;
    transition: background 0.18s;
  }
  .nav_mobile_contacts_row .nav_mobile_link .copy-btn .copy-tooltip {
    visibility: hidden;
    opacity: 0;
    background-color: #333;
    color: #fff;
    font-size: 13px; /* чуть крупнее */
    border-radius: 7px;
    padding: 3px 10px;
    position: absolute;
    left: -200%;
    top: -20%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.13);
    z-index: 299;
    pointer-events: none;
    transition: opacity 0.21s;
  }
  .nav_mobile_contacts_row .nav_mobile_link .copy-btn.copied .copy-tooltip {
    visibility: visible;
    opacity: 1;
  }
  .nav_mobile_contacts_row .nav_mobile_link .copy-btn img {
    min-width: 15px;
    min-height: 15px;
    max-width: 15px;
    max-height: 15px;
    display: inline-block;
  }
  .nav_mobile_contacts_row .nav_mobile_link .copy-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    font-size: 12px;
    border-radius: 7px;
    padding: 2px 9px;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.23s;
    z-index: 22;
    margin-left: 2px;
  }
  #siteNav .nav_mobile_panel .nav_mobile_link {
    gap: 8px;
    padding: 10px 0;
    max-width: none;
    overflow: visible;
  }
}
/* Reviews section – минимальная унификация контейнера и отступов */
/* Reviews grid (cards) */
.review-card{
  background:#fff;
  border-radius:12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align:center;
}
@media (max-width:768px){
  .review-card{ text-align:center; }
}
/* Reviews: icons for text cards */
/* Reviews: emphasize tagline */
.review-tagline--emph {
  color:#0f172a;
  background: #fffbe8;
  border-left: 4px solid #f59e0b;
  padding: 10px 12px;
  border-radius: 8px;
}
.reviews-section .review-tagline {
  color:#666;
}
/* large colorful icons (same size as Google/Yelp cards) */
.review-card-bigicon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
}
/* === Reviews layout tweaks (desktop ≤ 3 per row, centered) === */
/* Сетка карточек: моб./планшет оставляем как есть, на десктопе максимум 3 в ряд */

/* Payment page */
.pay-wrap {
  padding: 60px 0 90px;
  background: linear-gradient(135deg, #f7f8fa, #eef1f6);
}
.pay-card {
  background: #fff;
  border: 1px solid #e3e6ec;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  padding: 32px 32px 28px;
  max-width: 900px;
  margin: 0 auto 28px;
}
.pay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pay-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.01em;
}
.pay-logo-mark {
  width: 36px;
  height: 36px;
  border: 2px solid #0f172a;
  border-radius: 10px;
  position: relative;
  display: inline-block;
}
.pay-logo-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid #0f172a;
  border-radius: 7px;
}
.pay-pill {
  background: #0f172a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.pay-card h1 {
  margin: 18px 0 10px;
  font-size: 30px;
  color: #0f172a;
}
.pay-card p {
  margin: 0 0 10px;
  color: #475569;
  font-size: 17px;
  line-height: 1.5;
}
.pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 12px;
  padding: 14px 22px;
  background: #006aff;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 106, 255, 0.25);
  transition: transform 0.08s ease, box-shadow 0.1s ease;
}
.pay-btn small {
  font-weight: 600;
  opacity: 0.9;
}
.pay-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 106, 255, 0.3);
}
.pay-list {
  list-style: disc;
  margin: 10px 0 0 18px;
  padding: 0;
  color: #1e293b;
  font-size: 16px;
  line-height: 1.5;
}
.pay-note {
  margin-top: 16px;
  background: #f1f5f9;
  border: 1px solid #dce3ed;
  border-radius: 12px;
  padding: 12px 14px;
  color: #0f172a;
  font-size: 15px;
}
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.pay-grid .card {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
}
.pay-grid .card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #e2e8f0;
}
.pay-grid .card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 15px;
}
.pay-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 0;
}
.pay-badge {
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}
.pay-badge.dark {
  background: #0f172a;
  color: #e2e8f0;
}
.pay-badge.light {
  background: #e2e8f0;
  color: #0f172a;
}
@media (max-width: 640px) {
  .pay-card {
    padding: 26px 20px 22px;
  }
  .pay-card h1 {
    font-size: 26px;
  }
  .pay-btn {
    width: 100%;
  }
}
