@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

.header {
	position: relative;
	font-family: 'Montserrat', sans-serif;
	z-index: 10;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 16px;
	flex-wrap: nowrap;
}

.logo img {
	width: 312px;
	height: 56.4px;
}

.nav-menu ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
	justify-content: space-evenly;
	gap: 15px;
}

.nav-menu li {
	position: relative;
	white-space: nowrap;
}

.nav-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	padding: 10px;
}

.nav-menu li:hover::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 47px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.burger-menu {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.burger-menu img {
	width: 29px;
	height: 25px;
	margin-right: 20px;
}

.contact-info {
	display: flex;
	align-items: center;
	margin-right: 7px;
}

.phone-number {
	color: #fff;
	font-size: 17px;
	margin-left: 8px;
	white-space: nowrap;
	text-decoration: none;
	position: relative;
	top: -2px;
	display: flex;
	align-items: center;
}

.phone-number .phone-icon {
	margin-right: 5px;
	width: 25px;
	height: 25px;
	transition: all 0.3s ease;
}

.phone-number:hover .phone-icon {
	filter: brightness(0) saturate(100%) invert(40%) sepia(80%) saturate(700%) hue-rotate(-10deg) brightness(105%) contrast(92%);
}

.phone-number:hover {
	color: rgba(255, 13, 30, 0.7);
}

.social-icons-container {
	height: 48px;
	background-color: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	padding: 0 5px;
	position: relative;
	z-index: 10;
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.social-icons a {
	transition: background-color 0.3s ease;
	padding: 5px;
	border-radius: 50%;
}

.social-icons a img {
	width: 27px;
	height: 27px;
}

.social-icons a[href*="vk.com"]:hover img {
	filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(5000%) hue-rotate(240deg) brightness(100%) contrast(100%);
}

.social-icons a[href*="t.me"]:hover img {
	filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(2000%) hue-rotate(190deg) brightness(90%) contrast(100%);
}

.social-icons a[href*="wa.me"]:hover img {
	filter: brightness(0) saturate(100%) invert(51%) sepia(75%) saturate(800%) hue-rotate(85deg) brightness(100%) contrast(92%);
}

.divider-container {
	display: flex;
	justify-content: center;
	position: relative;
	margin: 0 16px;
}

.divider {
	width: calc(100% - 32px);
	height: 3px;
	background-color: rgba(255, 255, 255, 0.33);
	position: absolute;
	top: -15px;
	z-index: 1;
}

/* Медиа-запросы */
@media (max-width: 1200px) {
	.nav-menu a {
		font-size: 16px;
	}

	.logo img {
		width: calc(312px * 0.8);
		height: calc(56.4px * 0.8);
	}

	.social-icons-container {
		height: calc(48px * 0.8);
		padding: 0 8px;
	}

	.social-icons {
		gap: 5px;
	}

	.social-icons a img {
		width: 20px;
		height: 20px;
	}

	.phone-number {
		font-size: 14.45px;
	}

	.divider {
		top: -10px;
	}
}

@media (max-width: 992px) {
	.nav-menu a {
		font-size: 12px;
	}

	.logo img {
		width: calc(312px * 0.6);
		height: calc(56.4px * 0.6);
	}

	.social-icons-container {
		height: calc(48px * 0.6);
		padding: 0 6px;
	}

	.social-icons {
		gap: 3px;
	}

	.social-icons a img {
		width: 18px;
		height: 18px;
	}

	.phone-number {
		font-size: 12.75px;
	}

	.divider {
		top: -10px;
	}
}

@media (max-width: 768px) {
	.header-content {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		text-align: center;
		padding: 20px 16px;
	}

	.nav-menu {
		display: none;
	}

.nav-menu.open {
	display: block;
	position: absolute;
	top: 60px;
	left: 0;
	right: 0;
	background-color: rgba(6, 68, 105, 0.9);
	/* Полупрозрачный фон */
	padding: 15px;
	/* Компактный отступ */
	z-index: 10000;
}

.nav-menu.open ul {
	flex-direction: column;
	/* Вертикальное построение меню */
	margin: 0;
	padding: 0;
}

.nav-menu.open li {
	margin: 10px 0;
	/* Отступ между пунктами меню */
	text-align: center;
}

.nav-menu.open a {
	font-size: 80%;
	/* Уменьшение шрифта на 20% */
	padding: 8px;
	/* Компактное поле для пунктов */
	color: #fff;
	text-decoration: none;
}

	.burger-menu {
		display: block;
		padding: 0;
	}

	.contact-info {
		display: none;
	}

	.social-icons-container {
		display: none;
	}

	.logo {
		flex: 1;
		text-align: left;
	}

	.logo img {
		width: calc(312px * 0.6);
		height: calc(56.4px * 0.6);
	}

	.nav-menu a {
		font-size: 16px;
	}

	.divider {
		top: -10px;
	}

	.burger-menu {
		margin-left: 7px;
	}
}

@media (max-width: 576px) {
	.nav-menu a {
		font-size: 16px;
	}

	.logo img {
		width: calc(312px * 0.6);
		height: calc(56.4px * 0.6);
	}

	.social-icons-container {
		height: calc(48px * 0.4);
		padding: 0 4px;
	}

	.social-icons {
		gap: 3px;
	}

	.social-icons a img {
		width: 16px;
		height: 16px;
	}

	.phone-number {
		font-size: 10.2px;
	}

	.divider {
		top: -10px;
	}

	.burger-menu {
		margin-left: 7px;
	}
}

/* header.css */
.menu-item.activelink.mask-next::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 47px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.menu-item.activelink.active2::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 47px;
	background-color: rgba(255, 255, 255, 0);
	border-radius: 5%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
footer {
  background-color: #171A1A;
  padding: 40px 20px;
  color: #fff;
  position: relative;
  z-index: 1;
  height: auto;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 320px) repeat(3, 1fr);
  gap: 40px;
  padding: 0;
  margin-bottom: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-logo {
  width: 320px;
  height: 40px;
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-company-details {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}

.footer-company-details a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-company-details a:hover {
  color: #FF0D1E;
  text-decoration: underline;
}

.footer-sections {
  display: contents;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.red-line {
  width: 30px;
  height: 3px;
  background-color: #FF0D1E;
  margin: 0 0 16px 0;
}

.footer-company-info,
.footer-info,
.footer-socials {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-company-info a,
.footer-info a,
.footer-socials a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-company-info a:hover,
.footer-info a:hover,
.footer-socials a:hover {
  color: #FF0D1E;
  text-decoration: underline;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social-icon-container {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid rgba(255, 13, 30, 0.5);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.footer-social-icon-container:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 13, 30, 0.8);
}

.footer-social-icon-container a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.footer-social-icons img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

/* Изменение цвета иконок при наведении */
.footer-social-icon-container:hover img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(2000%) hue-rotate(190deg) brightness(90%) contrast(100%);
}

/* Специфичные цвета для ВКонтакте */
.footer-social-icon-container:hover a[href*="vk.com"] img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(5000%) hue-rotate(240deg) brightness(100%) contrast(100%);
}

/* Специфичные цвета для Telegram */
.footer-social-icon-container:hover a[href*="t.me"] img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(100%) saturate(2000%) hue-rotate(190deg) brightness(90%) contrast(100%);
}


.footer-social-icon-container:hover a[href*="wa.me"] img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(75%) saturate(800%) hue-rotate(85deg) brightness(100%) contrast(92%);
}


.footer-bottom {
  text-align: center;
  padding-top: 10px;
  margin-top: 20px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-bottom a:hover {
  color: #FF0D1E;
  text-decoration: underline;
}

/* Desktop large: 1200px+ */
@media (min-width: 1200px) {
  .footer-top {
    gap: 50px;
  }
}

/* Desktop medium: 1024-1199px */
@media (max-width: 1199px) {
  .footer-top {
    gap: 32px;
  }
  
  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 15px;
  }
}

/* Tablet large: 900-1023px */
@media (max-width: 1023px) {
  footer {
    padding: 30px 20px;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  
  .footer-logo-section {
    grid-column: 1 / -1;
  }
  
  .footer-company-details {
    font-size: 15px;
    margin-left: 0;
  }
  
  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 15px;
  }
}

/* Кнопка для скролла наверх */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  transform: scale(1.1);
}

/* Tablet: 768-899px */
@media (max-width: 899px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  
  .footer-logo-section {
    grid-column: 1 / -1;
    align-items: center;
  }
  
  .footer-company-details {
    align-items: center;
    text-align: center;
    margin-left: 0;
  }
  
  .footer-section {
    align-items: center;
    text-align: center;
  }
  
  .footer-company-info,
  .footer-info,
  .footer-socials {
    align-items: center;
    text-align: center;
  }
  
  .red-line {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-social-icons {
    justify-content: center;
  }
}

/* Mobile large: 480-767px */
@media (max-width: 767px) {
  footer {
    padding: 30px 15px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo-section {
    align-items: center;
    grid-column: 1;
  }
  
  .footer-section {
    width: 100%;
    max-width: 400px;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .footer-logo {
    width: 240px;
    height: 30px;
  }

  .footer-company-details {
    font-size: 15px;
    text-align: center;
    align-items: center;
    margin-left: 0;
  }

  .footer-section-title {
    font-size: 17px;
    text-align: center;
  }

  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 15px;
    text-align: center;
    align-items: center;
  }

  .red-line {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

/* Mobile medium: 375-479px */
@media (max-width: 479px) {
  footer {
    padding: 25px 15px;
  }
  
  .footer-top {
    gap: 28px;
  }
  
  .footer-logo {
    width: 200px;
    height: 25px;
  }

  .footer-company-details {
    font-size: 14px;
  }

  .footer-section-title {
    font-size: 16px;
  }

  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 14px;
  }
  
  .footer-section {
    max-width: 100%;
  }
}

/* Mobile small: 320-374px */
@media (max-width: 374px) {
  footer {
    padding: 20px 10px;
  }
  
  .footer-top {
    gap: 24px;
  }
  
  .footer-logo {
    width: 180px;
    height: 22px;
  }

  .footer-company-details {
    font-size: 13px;
  }

  .footer-section-title {
    font-size: 15px;
  }

  .footer-company-info,
  .footer-info,
  .footer-socials {
    font-size: 13px;
  }
  
  .footer-social-icon-container {
    width: 36px;
    height: 36px;
  }
  
  .footer-social-icons img {
    width: 18px;
    height: 18px;
  }
}

.footer-item.footerselect-next {
  color: #FF0D1E;
  text-decoration: underline;
}

/* ============================================
   SERVICE PAGE - MODERN REDESIGN
   Unified styles for all service detail pages
   ============================================ */

/* CSS Variables */
:root {
  --sp-accent: #FF0D1E;
  --sp-accent-hover: #E60B1A;
  --sp-bg-dark: #0A0A0A;
  --sp-bg-card: rgba(20, 22, 25, 0.85);
  --sp-bg-card-hover: rgba(30, 32, 35, 0.9);
  --sp-border: rgba(255, 255, 255, 0.08);
  --sp-border-accent: rgba(255, 13, 30, 0.3);
  --sp-text: #FFFFFF;
  --sp-text-muted: rgba(255, 255, 255, 0.7);
  --sp-text-secondary: rgba(255, 255, 255, 0.55);
  --sp-radius: 16px;
  --sp-radius-sm: 10px;
  --sp-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --sp-shadow-accent: 0 4px 20px rgba(255, 13, 30, 0.25);
  --sp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --sp-max-width: 1200px;
  --sp-container-padding: 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.sp-hero {
  max-width: var(--sp-max-width);
  margin: 0 auto;
  padding: 40px var(--sp-container-padding) 60px;
}

.sp-breadcrumb {
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--sp-text-secondary);
}

.sp-breadcrumb a {
  color: var(--sp-accent);
  text-decoration: none;
  transition: var(--sp-transition);
}

.sp-breadcrumb a:hover {
  text-decoration: underline;
}

.sp-hero-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.sp-hero-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sp-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--sp-text);
  margin: 0;
  letter-spacing: -0.02em;
}

.sp-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--sp-text-muted);
  margin: 0;
  max-width: 600px;
}

.sp-hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

/* What you get card */
.sp-benefits-card {
  background: var(--sp-bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.sp-benefits-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sp-accent), transparent);
}

.sp-benefits-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--sp-text);
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sp-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--sp-text-muted);
}

.sp-benefits-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sp-accent);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ============================================
   UNIFIED BUTTONS
   ============================================ */
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--sp-transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.sp-btn-primary {
  background: var(--sp-accent);
  color: white;
  box-shadow: var(--sp-shadow-accent);
}

.sp-btn-primary:hover {
  background: var(--sp-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 13, 30, 0.4);
}

.sp-btn-primary::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 ease;
}

.sp-btn-primary:hover::before {
  left: 100%;
}

.sp-btn-secondary {
  background: transparent;
  color: var(--sp-text);
  border: 1px solid var(--sp-border);
}

.sp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--sp-text-muted);
}

/* ============================================
   SLIDER SECTION
   ============================================ */
.sp-slider-section {
  max-width: var(--sp-max-width);
  margin: 0 auto 60px;
  padding: 0 var(--sp-container-padding);
}

.sp-slider-card {
  background: var(--sp-bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 24px;
  position: relative;
}

.sp-slider-card .slider-container {
  border-radius: var(--sp-radius-sm);
  overflow: hidden;
}

.sp-slider-card .controls-container {
  position: absolute;
  bottom: 5px;
  right: 50%;
  transform: translateX(50%);
  width: auto;
  height: 35px;
  background-color: rgba(32, 35, 40, 0.8);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 13, 30, 0.2);
  padding: 0 5px;
  z-index: 11;
}

.sp-slider-card .custom-swiper-controls {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sp-slider-card .custom-swiper-button-prev,
.sp-slider-card .custom-swiper-button-next {
  width: 30px;
  height: 30px;
  background-color: transparent;
  cursor: pointer;
}

.sp-slider-card .custom-swiper-button-prev img,
.sp-slider-card .custom-swiper-button-next img {
  width: 100%;
  height: 100%;
}

/* ============================================
   ADAPTIVE SLIDER - SLIDEFRAME 16:9
   ============================================ */
.slideFrame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: var(--sp-bg-card);
}

.sp-slider-card .swiper {
  padding: 20px 0 40px;
}

.sp-slider-card .swiper-slide {
  transition: transform 0.3s ease, opacity 0.3s ease;
  height: auto;
}

.sp-slider-card .swiper-slide-active {
  z-index: 2;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.sp-content {
  max-width: var(--sp-max-width);
  margin: 0 auto;
  padding: 0 var(--sp-container-padding) 60px;
}

.sp-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sp-section {
  background: var(--sp-bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 32px;
  transition: var(--sp-transition);
}

.sp-section:hover {
  background: var(--sp-bg-card-hover);
  border-color: var(--sp-border-accent);
}

.sp-section-full {
  grid-column: 1 / -1;
}

.sp-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--sp-text);
  margin: 0 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sp-border);
  position: relative;
}

.sp-section-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--sp-accent);
}

/* ============================================
   LISTS - Clean bullet styling
   ============================================ */
.sp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--sp-radius-sm);
  border: 1px solid transparent;
  transition: var(--sp-transition);
}

.sp-list-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--sp-border);
}

.sp-list-bullet {
  width: 32px;
  height: 32px;
  background: rgba(255, 13, 30, 0.15);
  border: 1px solid var(--sp-border-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-list-bullet::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sp-accent);
  border-radius: 50%;
}

.sp-list-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sp-text-muted);
  padding-top: 4px;
}

/* Simple list without cards */
.sp-list-simple {
  gap: 12px;
}

.sp-list-simple .sp-list-item {
  background: transparent;
  padding: 0;
  border: none;
}

.sp-list-simple .sp-list-item:hover {
  background: transparent;
}

.sp-list-simple .sp-list-bullet {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
}

.sp-list-simple .sp-list-bullet::before {
  width: 6px;
  height: 6px;
}

/* ============================================
   NORMATIVE SECTION - Special styling
   ============================================ */
.sp-normative-intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sp-text-muted);
  margin-bottom: 20px;
}

.sp-normative-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-normative-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 13, 30, 0.05);
  border: 1px solid var(--sp-border-accent);
  border-radius: var(--sp-radius-sm);
  font-size: 14px;
  line-height: 1.6;
  color: var(--sp-text-muted);
}

.sp-normative-item::before {
  content: '§';
  color: var(--sp-accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.sp-cta-section {
  max-width: var(--sp-max-width);
  margin: 0 auto;
  padding: 0 var(--sp-container-padding) 80px;
}

.sp-cta-card {
  background: linear-gradient(135deg, rgba(255, 13, 30, 0.15) 0%, rgba(255, 13, 30, 0.05) 100%);
  border: 1px solid var(--sp-border-accent);
  border-radius: var(--sp-radius);
  padding: 48px;
  text-align: center;
}

.sp-cta-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--sp-text);
  margin: 0 0 12px 0;
}

.sp-cta-text {
  font-size: 16px;
  color: var(--sp-text-muted);
  margin: 0 0 28px 0;
}

/* ============================================
   STICKY CTA (Desktop only)
   ============================================ */
.sp-sticky-cta {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: none;
}

@media (min-width: 1400px) {
  .sp-sticky-cta {
    display: block;
  }
}

.sp-sticky-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 14px;
  background: var(--sp-accent);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--sp-shadow-accent);
  transition: var(--sp-transition);
  cursor: pointer;
  border: none;
}

.sp-sticky-btn:hover {
  background: var(--sp-accent-hover);
  padding-right: 18px;
}

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */
@media (max-width: 1024px) {
  .sp-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .sp-benefits-card {
    max-width: 100%;
  }
  
  .sp-title {
    font-size: 32px;
  }
  
  .sp-sections-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */
@media (max-width: 768px) {
  :root {
    --sp-container-padding: 16px;
  }
  
  .sp-hero {
    padding: 24px var(--sp-container-padding) 40px;
  }
  
  .sp-title {
    font-size: 26px;
  }
  
  .sp-subtitle {
    font-size: 16px;
  }
  
  .sp-hero-cta {
    flex-direction: column;
  }
  
  .sp-btn {
    width: 100%;
    padding: 16px 24px;
  }
  
  .sp-benefits-card {
    padding: 20px;
  }
  
  .sp-section {
    padding: 24px;
  }
  
  .sp-section-title {
    font-size: 18px;
  }
  
  .sp-list-item {
    padding: 12px;
  }
  
  .sp-list-text {
    font-size: 14px;
  }
  
  .sp-cta-card {
    padding: 32px 20px;
  }
  
  .sp-cta-title {
    font-size: 20px;
  }
  
  .sp-slider-card {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .sp-title {
    font-size: 22px;
  }
  
  .sp-breadcrumb {
    font-size: 12px;
  }
  
  .sp-benefits-list li {
    font-size: 13px;
  }
  
  .sp-list-bullet {
    width: 28px;
    height: 28px;
  }
  
  .sp-normative-item {
    padding: 12px 16px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .sp-title {
    font-size: 20px;
  }
  
  .sp-section {
    padding: 20px 16px;
  }
}

