.first-block-image-wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  display: block;
  min-height: auto;
  overflow: visible;
}

.first-block-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

.safe-hero-info-card {
  position: absolute;
  top: 50px;
  left: 50px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  
  border-radius: 24px;
  padding: 32px 40px;
  max-width: 500px;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.safe-hero-info-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.safe-hero-info-text {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
}

.safe-hero-text-block {
  position: absolute;
  bottom: 90px;
  right: 50px;
  background: transparent;
  padding: 0;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}

.safe-hero-subtitle-text {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #b0b0b0;
  margin: 0 0 16px 0;
  line-height: 1.5;
  text-align: left;
}

.safe-hero-main-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  max-width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.safe-hero-title-line1,
.safe-hero-title-line2,
.safe-hero-title-line3 {
  display: block;
}

.first-block-image-wrapper .safe-hero-cta-button {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 16px 32px;
  font-family: 'Gilroy-Semibold', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.first-block-image-wrapper .safe-hero-cta-button:hover {
  background: #f0f0f0;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.first-block-image-wrapper .safe-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}

.first-block-image-wrapper .safe-scroll-icon {
  width: 32px;
  height: 32px;
  color: #333;
  opacity: 1;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  animation: safe-scroll-bounce 2s ease-in-out infinite, safe-scroll-blink 1.5s ease-in-out infinite;
}

.first-block-image-wrapper .safe-scroll-icon:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.first-block-image-wrapper .safe-scroll-icon svg {
  width: 18px;
  height: 18px;
}

@keyframes safe-scroll-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

.safe-legal-notice {
  position: absolute;
  bottom: 90px;
  left: 50px;
  background: transparent;
  padding: 0;
  max-width: 500px;
  z-index: 10;
}

.safe-legal-content {
  color: #fff;
}

.safe-legal-header {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.safe-legal-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  align-self: center;
}

.safe-legal-title-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.safe-legal-title-line1 {
  font-family: 'Gilroy-Semibold', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px 0;
  line-height: 1.4;
}

.safe-legal-title-line2 {
  font-family: 'Gilroy-Semibold', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.safe-legal-text {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.5;
  padding-left: 0;
}

.safe-service-info-section {
  width: 100%;
  padding: 80px 100px;
  box-sizing: border-box;
}

.safe-service-info-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.safe-service-info-subtitle {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.safe-service-info-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.safe-service-info-description {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 18px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.safe-service-info-text {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 18px;
  color: #000;
  margin: 30px 0 0 0;
  line-height: 1.6;
  text-align: center;
}

.safe-service-info-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
}

.safe-service-info-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.safe-hero-container {
  width: 100%;
  max-width: 1400px;
  min-height: 700px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background-image: url('../assets/images/Rectangle 3746.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.safe-hero-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.safe-hero-overlay-top-left {
  position: absolute;
  top: 50px;
  left: 50px;
  max-width: 420px;
  background: #E3F2FD;
  padding: 28px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.safe-hero-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.safe-hero-description {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 15px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.safe-hero-overlay-bottom-left {
  position: absolute;
  bottom: 50px;
  left: 50px;
  max-width: 520px;
  background: #ffffff;
  padding: 28px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.safe-hero-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: #333;
}

.safe-hero-legal-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.safe-hero-legal-text {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 14px;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

.safe-hero-overlay-bottom-right {
  position: absolute;
  bottom: 40px;
  right: 40px;
  max-width: 500px;
  text-align: right;
  z-index: 10;
}

.safe-hero-subtitle {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 16px;
  color: #fff;
  margin: 0 0 12px 0;
  opacity: 0.9;
}

.safe-hero-headline {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.safe-hero-cta-button {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  border: none;
  border-radius: 16px;
  padding: 16px 32px;
  font-family: 'Gilroy-Semibold', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.safe-hero-cta-button:hover {
  background: #f0f0f0;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.safe-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.safe-scroll-icon {
  width: 40px;
  height: 40px;
  color: #fff;
  opacity: 0.8;
  animation: safe-scroll-bounce 2s ease-in-out infinite;
}

@keyframes safe-scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.safe-scroll-text {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 14px;
  color: #fff;
  margin: 0;
  opacity: 0.8;
}

@media screen and (max-width: 1200px) {
  .first-block-image-wrapper {
    padding: 0;
    min-height: auto;
  }

  .safe-legal-notice {
    bottom: 100px;
    left: 15px;
    padding: 0;
    max-width: 500px;
  }

  .safe-legal-icon {
    width: 28px;
    height: 28px;
  }

  .safe-legal-title-line1,
  .safe-legal-title-line2 {
    font-size: 15px;
  }


  .safe-legal-text {
    font-size: 13px;
  }

  .first-block-image-wrapper .safe-hero-cta-button {
    bottom: 70px;
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 28px;
  }

  .safe-service-info-section {
    padding: 60px 60px;
  }

  .safe-service-info-title {
    font-size: 40px;
  }

  .safe-hero-container {
    min-height: 500px;
  }

  .safe-hero-overlay-top-left {
    top: 30px;
    left: 30px;
    max-width: 350px;
    padding: 20px 24px;
  }

  .safe-hero-title {
    font-size: 24px;
  }

  .safe-hero-description {
    font-size: 14px;
  }

  .safe-hero-overlay-bottom-left {
    bottom: 30px;
    left: 30px;
    max-width: 420px;
    padding: 20px 24px;
  }

  .safe-hero-legal-title {
    font-size: 16px;
  }

  .safe-hero-legal-text {
    font-size: 13px;
  }

  .safe-hero-overlay-bottom-right {
    bottom: 30px;
    right: 30px;
    max-width: 400px;
  }

  .safe-hero-headline {
    font-size: 36px;
  }

  .safe-hero-cta-button {
    bottom: 180px;
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media screen and (max-width: 1200px) {
  .safe-hero-info-card {
    top: 40px;
    left: 40px;
    padding: 28px 32px;
    max-width: 450px;
  }

  .safe-hero-info-title {
    font-size: 22px;
  }

  .safe-hero-info-text {
    font-size: 15px;
  }

  .safe-hero-text-block {
    bottom: 80px;
    right: 40px;
    max-width: 450px;
  }

  .safe-hero-subtitle-text {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .safe-hero-main-title {
    font-size: 42px;
  }
}

/* Промежуточные размеры для плавной адаптации */
@media screen and (max-width: 600px) {
  .first-block-image-wrapper .safe-hero-info-card {
    margin: 18px;
    padding: 22px 26px;
    max-width: calc(100% - 36px);
  }

  .safe-hero-info-title {
    font-size: 21px;
  }

  .safe-hero-info-text {
    font-size: 15px;
  }

  .first-block-image-wrapper .safe-hero-cta-button {
    margin: 0 22px 18px 22px;
    width: calc(100% - 44px);
    max-width: calc(100% - 44px);
    padding: 15px 22px;
    font-size: 15px;
  }

  .first-block-image-wrapper .safe-legal-notice {
    margin: 0 22px 18px 22px;
    width: auto;
    min-width: 300px;
    max-width: calc(100% - 44px);
  }

  .first-block-image-wrapper .safe-hero-text-block {
    margin: 0 22px 18px 22px;
    max-width: calc(100% - 44px);
  }
}

@media screen and (max-width: 768px) {
  .first-block-image-wrapper {
    padding: 0;
    margin: 0;
    margin-top: -60px;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url('../assets/images/Group 2289.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    padding-bottom: env(safe-area-inset-bottom);
    overflow: visible;
  }

  .first-block-image {
    display: none;
  }

  .first-block-image-wrapper .safe-hero-info-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 20px;
    padding: 24px 28px;
    max-width: calc(100% - 40px);
    border-radius: 20px;
    order: 1;
    transform: translateY(-60px);
    align-self: flex-start;
  }

  .safe-hero-info-title {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .safe-hero-info-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .first-block-image-wrapper .safe-hero-text-block {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0 20px 20px 20px;
    max-width: calc(100% - 40px);
    align-items: flex-start;
    order: 2;
  }

  .safe-hero-subtitle-text {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .safe-hero-main-title {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .first-block-image-wrapper .safe-legal-notice {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 0 24px 20px 24px;
    padding: 0;
    width: 100%;
    max-width: calc(100% - 48px);
    box-sizing: border-box;
    flex-direction: column;
    gap: 12px;
    order: 4;
  }

  .safe-legal-icon {
    width: 26px;
    height: 26px;
  }

  .safe-legal-title-line1,
  .safe-legal-title-line2 {
    font-size: 15px;
    line-height: 1.4;
  }

  .safe-legal-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .first-block-image-wrapper .safe-hero-cta-button {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
    margin: 0 24px 20px 24px;
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    transform: none;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 26px;
    order: 3;
    min-height: 52px;
    box-sizing: border-box;
  }

  .first-block-image-wrapper .safe-hero-cta-button:hover {
    transform: translateY(-2px);
  }

  .first-block-image-wrapper .safe-scroll-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
    margin: 0 auto 20px auto;
    transform: none;
    order: 5;
  }

  .first-block-image-wrapper .safe-scroll-icon {
    width: 28px;
    height: 28px;
  }

  .first-block-image-wrapper .safe-scroll-icon svg {
    width: 16px;
    height: 16px;
  }

  .safe-service-info-section {
    padding: 50px 20px;
  }

  .safe-service-info-title {
    font-size: 32px;
  }

  .safe-service-info-description {
    font-size: 16px;
  }

  .safe-service-info-text {
    font-size: 16px;
    margin-top: 25px;
  }

  .safe-service-info-image-wrapper {
    margin-top: 25px;
    max-width: 700px;
  }

  .safe-hero-container {
    min-height: 600px;
    border-radius: 24px;
  }

  .safe-hero-overlay-top-left {
    top: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
    padding: 18px 20px;
    border-radius: 16px;
  }

  .safe-hero-title {
    font-size: 22px;
  }

  .safe-hero-description {
    font-size: 13px;
  }

  .safe-hero-overlay-bottom-left {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
    padding: 18px 20px;
    border-radius: 16px;
  }

  .safe-hero-icon {
    width: 32px;
    height: 32px;
  }

  .safe-hero-legal-title {
    font-size: 15px;
  }

  .safe-hero-legal-text {
    font-size: 12px;
  }

  .safe-hero-overlay-bottom-right {
    bottom: 200px;
    left: 20px;
    right: 20px;
    max-width: none;
    text-align: left;
  }

  .safe-hero-subtitle {
    font-size: 14px;
  }

  .safe-hero-headline {
    font-size: 28px;
  }

  .safe-hero-cta-button {
    bottom: 140px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    transform: none;
    padding: 14px 24px;
    font-size: 15px;
  }

  .safe-hero-cta-button:hover {
    transform: translateY(-2px);
  }
}

@media screen and (max-width: 480px) {
  .first-block-image-wrapper {
    padding: 0;
    margin: 0;
    margin-top: -60px;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: 100% 100%;
    background-position: center center;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .first-block-image-wrapper .safe-hero-info-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 16px;
    padding: 20px 24px;
    max-width: calc(100% - 32px);
    border-radius: 18px;
    transform: translateY(-50px);
    align-self: flex-start;
  }

  .safe-hero-info-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .safe-hero-info-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .first-block-image-wrapper .safe-hero-text-block {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0 16px 16px 16px;
    max-width: calc(100% - 32px);
    align-items: flex-start;
  }

  .safe-hero-subtitle-text {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .safe-hero-main-title {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .first-block-image-wrapper .safe-legal-notice {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 0 20px 16px 20px;
    padding: 0;
    width: 100%;
    max-width: calc(100% - 40px);
    box-sizing: border-box;
    gap: 10px;
    order: 4;
  }

  .safe-legal-icon {
    width: 24px;
    height: 24px;
  }

  .safe-legal-title-line1,
  .safe-legal-title-line2 {
    font-size: 14px;
    line-height: 1.4;
  }

  .safe-legal-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .first-block-image-wrapper .safe-hero-cta-button {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
    margin: 0 20px 16px 20px;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    transform: none;
    padding: 15px 22px;
    font-size: 15px;
    border-radius: 24px;
    order: 3;
    min-height: 50px;
    box-sizing: border-box;
  }

  .first-block-image-wrapper .safe-scroll-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
    margin: 0 auto 12px auto;
    transform: none;
  }

  .first-block-image-wrapper .safe-scroll-icon {
    width: 24px;
    height: 24px;
  }

  .first-block-image-wrapper .safe-scroll-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* Дополнительная адаптация для средних телефонов */
@media screen and (max-width: 414px) and (min-width: 375px) {
  .first-block-image-wrapper {
    background-size: 100% 100%;
    background-position: center center;
  }

  .safe-hero-main-title {
    font-size: 44px;
  }

  .first-block-image-wrapper   .safe-hero-info-card {
    transform: translateY(-55px);
    margin: 18px;
    padding: 22px 26px;
    max-width: calc(100% - 36px);
  }

  .safe-hero-info-title {
    font-size: 21px;
  }

  .safe-hero-info-text {
    font-size: 15px;
  }

  .first-block-image-wrapper .safe-hero-cta-button {
    margin: 0 22px 18px 22px;
    width: calc(100% - 44px);
    max-width: calc(100% - 44px);
    padding: 15px 22px;
    font-size: 15px;
  }

  .first-block-image-wrapper .safe-legal-notice {
    margin: 0 22px 18px 22px;
    width: 100%;
    max-width: calc(100% - 44px);
    box-sizing: border-box;
  }
}

/* Адаптация для iPhone SE и маленьких экранов */
@media screen and (max-width: 374px) {
  .first-block-image-wrapper {
    background-size: 100% 100%;
    background-position: center center;
  }

  .first-block-image-wrapper .safe-hero-info-card {
    margin: 14px;
    padding: 18px 20px;
    max-width: calc(100% - 28px);
    transform: translateY(-40px);
  }

  .safe-hero-info-title {
    font-size: 18px;
  }

  .safe-hero-info-text {
    font-size: 14px;
  }

  .first-block-image-wrapper .safe-hero-text-block {
    margin: 0 14px 14px 14px;
    max-width: calc(100% - 28px);
  }

  .safe-hero-subtitle-text {
    font-size: 12px;
  }

  .safe-hero-main-title {
    font-size: 38px;
  }

  .first-block-image-wrapper .safe-legal-notice {
    margin: 0 18px 14px 18px;
    width: 100%;
    max-width: calc(100% - 36px);
    box-sizing: border-box;
  }

  .safe-legal-title-line1,
  .safe-legal-title-line2 {
    font-size: 13px;
  }

  .safe-legal-text {
    font-size: 11px;
  }

  .first-block-image-wrapper .safe-hero-cta-button {
    margin: 0 18px 14px 18px;
    width: calc(100% - 36px);
    max-width: calc(100% - 36px);
    padding: 14px 20px;
    font-size: 14px;
    min-height: 48px;
    box-sizing: border-box;
  }
}

/* Адаптация для очень маленьких экранов (менее 360px) */
@media screen and (max-width: 360px) {
  .first-block-image-wrapper {
    background-size: 100% 100%;
    background-position: center center;
  }

  .safe-hero-main-title {
    font-size: 36px;
  }

  .first-block-image-wrapper .safe-hero-info-card {
    margin: 12px;
    padding: 16px 18px;
    max-width: calc(100% - 24px);
    transform: translateY(-60px);
  }

  .safe-hero-info-title {
    font-size: 17px;
  }

  .safe-hero-info-text {
    font-size: 13px;
  }

  .safe-hero-subtitle-text {
    font-size: 11px;
  }

  .first-block-image-wrapper .safe-legal-notice {
    margin: 0 16px 12px 16px;
    width: 100%;
    max-width: calc(100% - 32px);
    box-sizing: border-box;
  }

  .safe-legal-title-line1,
  .safe-legal-title-line2 {
    font-size: 12px;
  }

  .safe-legal-text {
    font-size: 10px;
  }

  .first-block-image-wrapper .safe-hero-cta-button {
    margin: 0 16px 12px 16px;
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    font-size: 13px;
    min-height: 46px;
    box-sizing: border-box;
  }

  .safe-service-info-section {
    padding: 40px 16px;
  }

  .safe-service-info-subtitle {
    font-size: 14px;
  }

  .safe-service-info-title {
    font-size: 28px;
  }

  .safe-service-info-description {
    font-size: 15px;
  }

  .safe-service-info-text {
    font-size: 15px;
    margin-top: 20px;
  }

  .safe-service-info-image-wrapper {
    margin-top: 20px;
    max-width: 600px;
  }

  .safe-hero-container {
    min-height: 500px;
    border-radius: 20px;
  }

  .safe-hero-overlay-top-left {
    top: 16px;
    left: 16px;
    right: 16px;
    padding: 16px 18px;
  }

  .safe-hero-title {
    font-size: 20px;
  }

  .safe-hero-description {
    font-size: 12px;
  }

  .safe-hero-overlay-bottom-left {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 16px 18px;
  }

  .safe-hero-overlay-bottom-right {
    bottom: 180px;
    left: 16px;
    right: 16px;
  }

  .safe-hero-headline {
    font-size: 24px;
  }

  .safe-hero-cta-button {
    bottom: 120px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    padding: 12px 20px;
    font-size: 14px;
  }
}

.safe-additional-scenarios-section {
  width: 100%;
  padding: 40px 10px;
  box-sizing: border-box;
}

.safe-additional-scenarios-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.safe-scenarios-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.safe-scenario-img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.safe-additional-scenarios-title {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #999;
  margin: 0 0 50px 0;
  text-align: center;
  line-height: 1.2;
}

.safe-scenarios-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.safe-scenario-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safe-scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.safe-scenario-number {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.safe-scenario-image {
  width: 100%;
  max-width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.safe-scenario-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.safe-scenario-text {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

@media screen and (max-width: 1200px) {
  .safe-additional-scenarios-section {
    padding: 30px 8px;
  }

  .safe-additional-scenarios-title {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .safe-scenarios-images {
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .safe-additional-scenarios-section {
    padding: 25px 5px;
  }

  .safe-additional-scenarios-title {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .safe-scenarios-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media screen and (max-width: 480px) {
  .safe-additional-scenarios-section {
    padding: 20px 5px;
  }

  .safe-additional-scenarios-title {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .safe-scenarios-images {
    gap: 12px;
  }
}

.safe-task-section {
  width: 100%;
  padding: 0 10px;
  margin-top: 60px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.safe-task-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.safe-task-content {
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 60px 80px 60px;
  box-sizing: border-box;
  pointer-events: none;
}

.safe-task-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.safe-task-description {
  font-family: 'Gilroy-Medium', Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.6;
  width: 100%;
  align-self: flex-start;
  white-space: nowrap;
}

@media screen and (max-width: 1200px) {
  .safe-task-section {
    padding: 0 8px;
    margin-top: 50px;
  }

  .safe-task-content {
    left: 8px;
    right: 8px;
    padding: 70px 50px 70px 50px;
  }

  .safe-task-title {
    font-size: 42px;
  }

  .safe-task-description {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .safe-task-section {
    padding: 0 5px;
    margin-top: 40px;
  }

  .safe-task-image {
    content: url('../assets/images/Rectangle 3751.png');
    width: 100%;
    height: auto;
    display: block;
  }

  .safe-task-content {
    left: 5px;
    right: 5px;
    padding: 60px 40px 60px 40px;
  }

  .safe-task-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .safe-task-description {
    font-size: 15px;
    white-space: normal;
  }
}

@media screen and (max-width: 480px) {
  .safe-task-section {
    padding: 0 5px;
    margin-top: 30px;
  }

  .safe-task-image {
    content: url('../assets/images/Rectangle 3751.png');
    width: 100%;
    height: auto;
    display: block;
  }

  .safe-task-content {
    left: 5px;
    right: 5px;
    padding: 50px 30px 50px 30px;
  }

  .safe-task-title {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .safe-task-description {
    font-size: 14px;
    white-space: normal;
  }
}

.safe-principle-section {
  width: 100%;
  padding: 80px 100px 0 100px;
  box-sizing: border-box;
}

.safe-principle-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.safe-principle-subtitle {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 24px;
  color: #666;
  margin: 0 0 30px 0;
  line-height: 1.5;
  text-align: center;
}

.safe-principle-title {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 56px;
  font-weight: 400;
  margin: 0 0 40px 0;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.safe-principle-title-line1 {
  font-size: 56px;
  line-height: 1.1;
}

.safe-principle-title-gray {
  color: #666;
  font-weight: 400;
}

.safe-principle-title-black {
  color: #000;
  font-weight: 600;
  font-family: 'Gilroy-Semibold', Arial, sans-serif;
}

.safe-principle-title-line2 {
  color: #000;
  font-weight: 600;
  font-family: 'Gilroy-Semibold', Arial, sans-serif;
  font-size: 56px;
  line-height: 1.1;
}

.safe-principle-description {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 18px;
  color: #000;
  margin: 0;
  line-height: 1.6;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.safe-principle-model {
  color: #000;
  font-weight: 600;
}

.safe-image-section {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  margin-top: -40px;
}

.safe-image-wrapper {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}

.safe-image-content {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 16px;
}

@media screen and (max-width: 1200px) {
  .safe-image-wrapper {
    max-width: 85%;
  }
}

@media screen and (max-width: 768px) {
  .safe-image-section {
    padding: 0 16px;
    margin-top: 20px;
  }
  
  .safe-image-wrapper {
    max-width: 100%;
  }

  .safe-image-content {
    content: url('../assets/images/Group 2290.svg');
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .safe-image-section {
    padding: 0 12px;
    margin-top: 30px;
  }
  
  .safe-image-wrapper {
    max-width: 100%;
  }

  .safe-image-content {
    content: url('../assets/images/Group 2290.svg');
    width: 100%;
  }
}

.safe-details-section {
  width: 100%;
  padding: 60px 100px;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

.safe-details-wrapper {
  margin: 0 auto;
}

.safe-details-title {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #000;
  margin: 0 0 25px 0;
  line-height: 1.3;
}

.safe-details-title-bold {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-weight: 800;
}

.safe-details-text {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 15px;
  color: #333;
  margin: 0 0 18px 0;
  line-height: 1.7;
}

.safe-details-text-first {
  font-weight: 500;
  font-family: 'Gilroy-Medium', Arial, sans-serif;
  font-size: 16px;
}

.safe-details-text:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .safe-details-section {
    padding: 50px 30px;
  }

  .safe-details-title {
    font-size: 26px;
  }

  .safe-details-text {
    font-size: 14px;
  }

  .safe-details-text-first {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .safe-details-section {
    padding: 40px 20px;
  }

  .safe-details-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .safe-details-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .safe-details-text-first {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .safe-details-section {
    padding: 30px 16px;
  }

  .safe-details-title {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .safe-details-text {
    font-size: 12px;
    line-height: 1.6;
  }

  .safe-details-text-first {
    font-size: 13px;
  }
}

.safe-image-section-2 {
  width: 100%;
  padding: 60px 100px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.safe-image-wrapper-2 {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.safe-image-content-2 {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .safe-image-section-2 {
    padding: 50px 30px;
  }
}

@media screen and (max-width: 768px) {
  .safe-image-section-2 {
    padding: 40px 20px;
  }

  .safe-image-content-2 {
    content: url('../assets/images/Group 2292.png');
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .safe-image-section-2 {
    padding: 30px 16px;
  }

  .safe-image-content-2 {
    content: url('../assets/images/Group 2292.png');
    width: 100%;
  }
}

.safe-suitable-section {
  width: 100%;
  padding: 60px 40px;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

.safe-suitable-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.safe-suitable-title {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #999;
  margin: 0 0 50px 0;
  text-align: center;
  line-height: 1.3;
}

.safe-suitable-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.safe-suitable-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safe-suitable-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.safe-suitable-image {
  width: 100%;
  max-width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.safe-suitable-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.safe-suitable-number {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.safe-suitable-text {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 15px;
  color: #333;
  margin: 0;
  line-height: 1.6;
  text-align: left;
  padding-bottom: 10px;
}

@media screen and (max-width: 1200px) {
  .safe-suitable-section {
    padding: 50px 30px;
  }

  .safe-suitable-title {
    font-size: 22px;
  }

  .safe-suitable-cards {
    gap: 20px;
  }

  .safe-suitable-card {
    padding: 25px;
  }

  .safe-suitable-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .safe-suitable-section {
    padding: 40px 20px;
  }

  .safe-suitable-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .safe-suitable-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .safe-suitable-card {
    padding: 25px;
  }

  .safe-suitable-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .safe-suitable-section {
    padding: 30px 16px;
  }

  .safe-suitable-title {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .safe-suitable-card {
    padding: 20px;
  }

  .safe-suitable-text {
    font-size: 13px;
  }
}

.safe-installation-section {
  width: 100%;
  padding: 60px 100px;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

.safe-installation-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.safe-installation-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 50px 0;
  line-height: 1.3;
}

.safe-installation-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.safe-installation-step {
  display: flex;
  flex-direction: column;
}

.safe-installation-number {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #999;
  line-height: 1;
  margin-bottom: 15px;
}

.safe-installation-step-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.safe-installation-step-text {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

@media screen and (max-width: 1200px) {
  .safe-installation-section {
    padding: 50px 60px;
  }

  .safe-installation-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .safe-installation-number {
    font-size: 26px;
  }

  .safe-installation-step-title {
    font-size: 17px;
  }

  .safe-installation-step-text {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .safe-installation-section {
    padding: 40px 20px;
  }

  .safe-installation-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .safe-installation-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .safe-installation-number {
    font-size: 22px;
  }

  .safe-installation-step-title {
    font-size: 16px;
  }

  .safe-installation-step-text {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .safe-installation-section {
    padding: 30px 16px;
  }

  .safe-installation-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .safe-installation-number {
    font-size: 26px;
  }

  .safe-installation-step-title {
    font-size: 15px;
  }

  .safe-installation-step-text {
    font-size: 12px;
  }
}

@media screen and (max-width: 1200px) {
  .safe-principle-section {
    padding: 60px 60px 0 60px;
  }

  .safe-principle-subtitle {
    font-size: 22px;
  }

  .safe-principle-title-line1,
  .safe-principle-title-line2 {
    font-size: 48px;
  }

  .safe-principle-description {
    font-size: 17px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .safe-principle-section {
    padding: 50px 20px 0 20px;
  }

  .safe-principle-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .safe-principle-title-line1,
  .safe-principle-title-line2 {
    font-size: 36px;
  }

  .safe-principle-title {
    margin-bottom: 30px;
  }

  .safe-principle-description {
    font-size: 16px;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .safe-principle-section {
    padding: 40px 16px 0 16px;
  }

  .safe-principle-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .safe-principle-title-line1,
  .safe-principle-title-line2 {
    font-size: 28px;
  }

  .safe-principle-title {
    margin-bottom: 25px;
  }

  .safe-principle-description {
    font-size: 14px;
    text-align: center;
  }
}

.safe-alarm-section {
  width: 100%;
  padding: 60px 100px;
  box-sizing: border-box;
  background-color: #1a1a1a;
}

.safe-alarm-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.safe-alarm-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #e0e0e0;
  margin: 0 0 50px 0;
  line-height: 1.3;
}

.safe-alarm-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.safe-alarm-step {
  display: flex;
  flex-direction: column;
}

.safe-alarm-number {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #999;
  line-height: 1;
  margin-bottom: 15px;
}

.safe-alarm-step-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #e0e0e0;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.safe-alarm-step-text {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 14px;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.6;
}

@media screen and (max-width: 1200px) {
  .safe-alarm-section {
    padding: 50px 60px;
  }

  .safe-alarm-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .safe-alarm-number {
    font-size: 26px;
  }

  .safe-alarm-step-title {
    font-size: 17px;
  }

  .safe-alarm-step-text {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .safe-alarm-section {
    padding: 40px 20px;
  }

  .safe-alarm-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .safe-alarm-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .safe-alarm-number {
    font-size: 22px;
  }

  .safe-alarm-step-title {
    font-size: 16px;
  }

  .safe-alarm-step-text {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .safe-alarm-section {
    padding: 30px 16px;
  }

  .safe-alarm-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .safe-alarm-number {
    font-size: 20px;
  }

  .safe-alarm-step-title {
    font-size: 15px;
  }

  .safe-alarm-step-text {
    font-size: 12px;
  }
}

.safe-kit-section {
  margin: 60px 0;
  padding: 0 100px;
}

.safe-kit-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.safe-kit-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Gilroy-Bold', Arial, sans-serif;
}

.safe-warranty-banner {
  background: #292929;
  border-radius: 15px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.safe-warranty-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.safe-warranty-text {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Gilroy-Semibold', Arial, sans-serif;
}

.safe-devices-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.safe-device-card {
  background: white;
  border-radius: 0;
  padding: 10px;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #D0D0D0;
  height: 120px;
}

.safe-device-card:last-child {
  border-bottom: none;
}

.safe-device-icon-block {
  background: #F5F5F5;
  border-radius: 8px;
  padding: 12px;
  width: 80px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safe-device-icon-block img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.safe-device-text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.safe-device-content-block {
  flex: 1;
  background: #F5F5F5;
  border-radius: 8px;
  padding: 12px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.safe-device-model {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  font-family: 'Gilroy-Bold', Arial, sans-serif;
}

.safe-device-description {
  font-size: 0.9rem;
  color: #666;
  font-family: 'Gilroy-Regular', Arial, sans-serif;
}

.safe-device-price-block {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.safe-in-kit-badge {
  background: #4CAC26;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Gilroy-Semibold', Arial, sans-serif;
}

.safe-device-quantity {
  color: #999;
  font-size: 0.9rem;
  font-family: 'Gilroy-Regular', Arial, sans-serif;
}

@media screen and (max-width: 1200px) {
  .safe-kit-section {
    margin-top: 30px;
    padding: 0 50px;
  }

  .safe-kit-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .safe-devices-container {
    gap: 10px;
    margin-top: 20px;
  }

  .safe-device-card {
    padding: 12px;
    height: 100px;
  }

  .safe-device-icon-block {
    width: 70px;
    height: 90px;
  }

  .safe-device-icon-block img {
    width: 45px;
    height: 45px;
  }

  .safe-device-content-block {
    height: 90px;
  }

  .safe-in-kit-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1000px) {
  .safe-kit-section {
    margin-top: 25px;
    padding: 0 40px;
  }

  .safe-kit-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .safe-devices-container {
    gap: 8px;
    margin-top: 18px;
  }

  .safe-device-card {
    padding: 10px;
    height: 95px;
  }

  .safe-device-icon-block {
    width: 65px;
    height: 85px;
  }

  .safe-device-icon-block img {
    width: 40px;
    height: 40px;
  }

  .safe-device-content-block {
    height: 85px;
  }

  .safe-in-kit-badge {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 900px) {
  .safe-kit-section {
    margin-top: 20px;
    padding: 0 35px;
  }

  .safe-kit-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .safe-devices-container {
    gap: 7px;
    margin-top: 15px;
  }

  .safe-device-card {
    padding: 8px;
    height: 90px;
  }

  .safe-device-icon-block {
    width: 60px;
    height: 80px;
  }

  .safe-device-icon-block img {
    width: 35px;
    height: 35px;
  }

  .safe-device-content-block {
    height: 80px;
  }

  .safe-in-kit-badge {
    padding: 4px 8px;
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 768px) {
  .safe-kit-section {
    margin-top: 25px;
    padding: 0 20px;
  }

  .safe-kit-title {
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .safe-devices-container {
    gap: 6px;
  }

  .safe-device-card {
    padding: 10px;
    height: 100px;
  }

  .safe-device-icon-block {
    width: 60px;
    height: 80px;
  }

  .safe-device-icon-block img {
    width: 40px;
    height: 40px;
  }

  .safe-device-content-block {
    height: 80px;
  }
}

@media screen and (max-width: 600px) {
  .safe-kit-section {
    margin-top: 20px;
    padding: 0 15px;
  }

  .safe-kit-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .safe-devices-container {
    gap: 5px;
    margin-top: 12px;
  }

  .safe-device-card {
    padding: 6px;
    height: 70px;
    margin-bottom: 5px;
  }

  .safe-device-icon-block {
    width: 45px;
    height: 55px;
  }

  .safe-device-icon-block img {
    width: 30px;
    height: 30px;
  }

  .safe-device-content-block {
    height: 55px;
    padding: 8px;
  }

  .safe-device-model {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }

  .safe-device-description {
    font-size: 0.7rem;
  }

  .safe-in-kit-badge {
    padding: 2px 4px;
    font-size: 0.65rem;
  }

  .safe-device-quantity {
    font-size: 0.7rem;
  }
}

.safe-response-section {
  width: 100%;
  padding: 80px 100px;
  box-sizing: border-box;
  background-color: #1a1a1a;
}

.safe-response-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.safe-response-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 50px 0;
  text-align: center;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.safe-response-title-line1,
.safe-response-title-line2 {
  display: block;
}

.safe-response-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.safe-response-panel {
  display: flex;
  flex-direction: column;
}

.safe-response-image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.safe-response-image {
  width: 100%;
  height: auto;
  display: block;
}

.safe-response-product-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 6px;
}

.safe-response-product-model {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  margin-bottom: 2px;
}

.safe-response-product-name {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 10px;
  color: #666;
}

.safe-response-caption {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 16px;
  color: #e0e0e0;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 1200px) {
  .safe-response-section {
    padding: 60px 60px;
  }

  .safe-response-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .safe-response-panels {
    gap: 25px;
  }

  .safe-response-caption {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .safe-response-section {
    padding: 50px 20px;
  }

  .safe-response-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .safe-response-panels {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .safe-response-caption {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .safe-response-section {
    padding: 40px 16px;
  }

  .safe-response-title {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .safe-response-panels {
    gap: 25px;
  }

  .safe-response-product-label {
    bottom: 10px;
    left: 10px;
    padding: 6px 10px;
  }

  .safe-response-product-model {
    font-size: 11px;
  }

  .safe-response-product-name {
    font-size: 9px;
  }

  .safe-response-caption {
    font-size: 13px;
  }
}

.safe-scenario-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 80px;
}

.safe-scenario-image-block {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safe-scenario-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(-20px 0 30px rgba(255, 255, 255, 0.3));
}

.safe-scenario-text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -30px;
}

.safe-scenario-title {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.safe-scenario-intro {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.safe-scenario-description {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 16px;
  color: #e0e0e0;
  margin: 0;
  line-height: 1.6;
}

@media screen and (max-width: 1200px) {
  .safe-scenario-content {
    gap: 40px;
    margin-top: 60px;
  }

  .safe-scenario-image {
    max-width: 340px;
    filter: drop-shadow(-15px 0 25px rgba(255, 255, 255, 0.3));
  }

  .safe-scenario-title {
    font-size: 17px;
  }

  .safe-scenario-intro {
    font-size: 17px;
  }

  .safe-scenario-description {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .safe-scenario-content {
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .safe-scenario-image-block {
    width: 100%;
  }

  .safe-scenario-image {
    max-width: 100%;
    filter: drop-shadow(-12px 0 20px rgba(255, 255, 255, 0.25));
  }

  .safe-scenario-text-block {
    width: 100%;
    align-items: center;
    text-align: center;
    margin-top: 0;
  }

  .safe-scenario-title {
    font-size: 16px;
  }

  .safe-scenario-intro {
    font-size: 20px;
  }

  .safe-scenario-description {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .safe-scenario-content {
    margin-top: 40px;
    gap: 25px;
  }

  .safe-scenario-image-block {
    max-width: 100%;
  }

  .safe-scenario-image {
    filter: drop-shadow(-10px 0 15px rgba(255, 255, 255, 0.2));
  }

  .safe-scenario-title {
    font-size: 15px;
  }

  .safe-scenario-intro {
    font-size: 18px;
  }

  .safe-scenario-description {
    font-size: 13px;
  }
}

.safe-why-section {
  margin-top: 80px;
}

.safe-why-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 40px 0;
  line-height: 1.3;
}

.safe-why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.safe-why-card {
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  overflow: visible;
}

.safe-why-card-image {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 1200px) {
  .safe-why-section {
    margin-top: 60px;
  }

  .safe-why-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .safe-why-cards {
    gap: 12px;
  }

}

@media screen and (max-width: 768px) {
  .safe-why-section {
    margin-top: 50px;
  }

  .safe-why-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .safe-why-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

}

@media screen and (max-width: 480px) {
  .safe-why-section {
    margin-top: 40px;
  }

  .safe-why-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

}

.safe-tariffs-section {
  width: 100%;
  padding: 0;
  margin-bottom: 100px;
  box-sizing: border-box;
  background-color: transparent;
}

.safe-union-section {
  width: 100%;
  padding: 20px 20px 60px 20px;
  margin-top: -60px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.safe-union-wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.safe-union-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.safe-union-content {
  width: 100%;
 
  text-align: center;
  margin-top: 40px;
}

.safe-union-quote {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: #333;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.safe-union-quote-gray {
  color: #666;
  font-weight: 400;
}

.safe-union-quote-bold {
  color: #000;
  font-weight: 600;
  font-family: 'Gilroy-Semibold', Arial, sans-serif;
}

.safe-union-description {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.safe-recommendation-section {
  width: 100%;
  padding: 0px 100px;
  box-sizing: border-box;
  background-color: transparent;
  margin-top: 50px;
}

.safe-recommendation-wrapper {
  
  margin: 0 auto;
}

.safe-recommendation-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0 0 20px 0;
  line-height: 1.3;
  text-align: left;
}

.safe-recommendation-text {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

@media screen and (max-width: 1200px) {
  .safe-recommendation-section {
    padding: 0px 60px;
  }
}

@media screen and (max-width: 768px) {
  .safe-recommendation-section {
    padding: 40px 20px;
  }

  .safe-recommendation-title {
    font-size: 22px;
  }

  .safe-recommendation-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .safe-recommendation-section {
    padding: 30px 16px;
  }

  .safe-recommendation-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .safe-recommendation-text {
    font-size: 13px;
  }
}

.safe-services-carousel-section {
  width: 100%;
  padding: 60px 0 80px 0;
  box-sizing: border-box;
  background-color: transparent;
}

.safe-services-carousel-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 100px;
  box-sizing: border-box;
}

.safe-services-carousel-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.safe-services-carousel-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}

.safe-services-carousel-track::-webkit-scrollbar {
  display: none;
}

.safe-services-carousel-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-width: 340px;
  height: 185px;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.safe-services-carousel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.safe-services-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.safe-services-carousel-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.safe-services-carousel-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.safe-services-carousel-arrow:hover {
  background-color: #f5f5f5;
  border-color: #333;
}

.safe-services-carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.safe-services-carousel-arrow:disabled:hover {
  background-color: #fff;
  border-color: #ddd;
}

@media screen and (max-width: 1200px) {
  .safe-services-carousel-section {
    padding: 50px 0 70px 0;
  }

  .safe-services-carousel-wrapper {
    padding: 0 60px;
  }

  .safe-services-carousel-track {
    margin-left: -60px;
    margin-right: -60px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .safe-services-carousel-card {
    min-width: 320px;
    height: 178px;
  }
}

@media screen and (max-width: 768px) {
  .safe-services-carousel-section {
    padding: 40px 0 60px 0;
  }

  .safe-services-carousel-wrapper {
    padding: 0 20px;
  }

  .safe-services-carousel-container {
    gap: 15px;
  }

  .safe-services-carousel-track {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .safe-services-carousel-card {
    min-width: 280px;
    height: 160px;
  }

  .safe-services-carousel-arrow {
    width: 32px;
    height: 32px;
  }

  .safe-services-carousel-arrow svg {
    width: 14px;
    height: 14px;
  }
}

@media screen and (max-width: 480px) {
  .safe-services-carousel-section {
    padding: 30px 0 50px 0;
  }

  .safe-services-carousel-wrapper {
    padding: 0 16px;
  }

  .safe-services-carousel-container {
    gap: 12px;
  }

  .safe-services-carousel-track {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .safe-services-carousel-card {
    min-width: 260px;
    height: 150px;
  }

  .safe-services-carousel-arrow {
    width: 28px;
    height: 28px;
  }

  .safe-services-carousel-arrow svg {
    width: 12px;
    height: 12px;
  }
}

#footer-container {
  width: 100%;
  margin-top: 60px;
  position: relative;
  z-index: 1;
  overflow: visible;
  clear: both;
}

#footer-container .pcn-footer {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  overflow: visible !important;
  min-height: auto !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  color: #ffffff !important;
  padding: 60px 0 0 0 !important;
  position: relative !important;
  font-family: 'Gilroy-Regular', Arial, sans-serif !important;
}

#footer-container .pcn-footer::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, #4CAC26, transparent) !important;
}

#footer-container .pcn-footer-container {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 100px !important;
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 40px !important;
}

#footer-container .pcn-footer-section {
  margin-bottom: 40px !important;
}

#footer-container .pcn-footer-title {
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 25px !important;
  color: #4CAC26 !important;
  position: relative !important;
  padding-bottom: 10px !important;
}

#footer-container .pcn-footer-title::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 30px !important;
  height: 2px !important;
  background: #4CAC26 !important;
}

#footer-container .pcn-footer-contact-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

@media screen and (max-width: 1200px) {
  #footer-container .pcn-footer-container {
    padding: 0 60px;
  }
}

@media screen and (max-width: 768px) {
  #footer-container .pcn-footer-container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  #footer-container .pcn-footer-container {
    padding: 0 16px;
  }
}

@media screen and (max-width: 768px) {
  .safe-union-section {
    padding: 10px 16px 40px 16px;
    margin-top: -40px;
  }

  .safe-union-content {
    margin-top: 30px;
  }

  .safe-union-quote {
    font-size: 30px;
  }

  .safe-union-description {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .safe-union-section {
    padding: 10px 12px 30px 12px;
    margin-top: -30px;
  }

  .safe-union-content {
    margin-top: 20px;
  }

  .safe-union-quote {
    font-size: 24px;
  }

  .safe-union-description {
    font-size: 14px;
  }
}

.safe-tariffs-wrapper {
  max-width: 100%;
  margin: 0;
  position: relative;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.safe-tariffs-title {
  font-family: 'Gilroy-Bold', Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 0;
  padding: 80px 0 50px 100px;
  text-align: left;
  line-height: 1.3;
  box-sizing: border-box;
}

.safe-tariffs-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
  padding: 0;
  width: 100%;
}

.safe-tariff-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background-image: url('../assets/images/Group 2172.svg');
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 0;
  min-height: auto;
  height: auto;
  overflow: hidden;
  width: 100%;
  padding-bottom: 0;
}

.safe-tariff-block:nth-child(2) {
  background-image: url('../assets/images/Group 2173.svg');
}

.safe-tariff-card {
  border-radius: 0;
  padding: 50px 40px 50px 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 2;
  background: transparent;
  min-height: auto;
  height: auto;
  box-sizing: border-box;
  flex: 1;
  width: 100%;
  min-width: 0;
}

.safe-tariff-card-dark {
  background-color: transparent;
  color: #fff;
}

.safe-tariff-card-light {
  background-color: transparent;
  color: #333;
}

.safe-tariff-icon-bg {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 120px;
  height: 120px;
  opacity: 0.2;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

.safe-tariff-icon-house {
  background-image: url('../assets/icons/Home абн.svg');
}

.safe-tariff-icon-building {
  background-image: url('../assets/icons/Buildings.svg');
}

.safe-tariff-label {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 15px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 15px;
  display: inline-block;
  width: fit-content;
  align-self: flex-start;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.safe-tariff-card-light .safe-tariff-label {
  color: #333;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.safe-tariff-card-light .safe-tariff-price {
  color: #333;
}

.safe-tariff-card-light .safe-tariff-period {
  color: rgba(0, 0, 0, 0.5);
}

.safe-tariff-card-light .safe-tariff-name {
  color: #333;
}

.safe-tariff-price {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 84px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #fff;
}

.safe-tariff-currency {
  font-size: 84px;
  font-weight: 400;
}

.safe-tariff-period {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 2px;
}

.safe-tariff-name {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 35px;
  line-height: 1.4;
  color: #fff;
}

.safe-tariff-name-bold {
  font-weight: 700;
}

.safe-tariff-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex: 0;
}

.safe-tariff-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-family: 'Gilroy-Regular', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.safe-tariff-feature:last-child {
  margin-bottom: 0;
}

.safe-tariff-feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

.safe-tariff-button {
  width: auto;
  max-width: 100%;
  padding: 18px 32px;
  border: none;
  border-radius: 30px;
  font-family: 'Gilroy-Semibold', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0;
  align-self: flex-start;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
}

.safe-tariff-button-light {
  background-color: #fff;
  color: #000;
}

.safe-tariff-button-light:hover {
  background-color: #f0f0f0;
}

.safe-tariff-button-dark {
  background-color: #000;
  color: #fff;
}

.safe-tariff-button-dark:hover {
  background-color: #333;
}

@media screen and (max-width: 1400px) and (min-width: 1221px) {
  .safe-tariffs-title {
    font-size: 28px;
    padding: 60px 0 40px 70px;
  }
  
  .safe-tariff-card {
    padding: 42px 32px 42px 70px;
  }
  
  .safe-tariff-price {
    font-size: 68px;
  }
  
  .safe-tariff-currency {
    font-size: 68px;
  }
  
  .safe-tariff-name {
    font-size: 20px;
  }
  
  .safe-tariff-button {
    padding: 16px 28px;
    font-size: 15px;
    max-width: 100%;
  }
  
  .safe-tariff-icon-bg {
    width: 105px;
    height: 105px;
    top: 42px;
    right: 42px;
  }
}

@media screen and (max-width: 1220px) and (min-width: 1201px) {
  .safe-tariffs-title {
    font-size: 27px;
    padding: 55px 0 38px 60px;
  }
  
  .safe-tariff-card {
    padding: 40px 28px 40px 60px;
  }
  
  .safe-tariff-price {
    font-size: 64px;
  }
  
  .safe-tariff-currency {
    font-size: 64px;
  }
  
  .safe-tariff-name {
    font-size: 19px;
  }
  
  .safe-tariff-button {
    padding: 15px 24px;
    font-size: 14px;
    max-width: 100%;
  }
  
  .safe-tariff-icon-bg {
    width: 100px;
    height: 100px;
    top: 40px;
    right: 40px;
  }
}

@media screen and (max-width: 1200px) and (min-width: 1111px) {
  .safe-tariffs-section {
    padding: 0;
    margin-bottom: 100px;
  }

  .safe-tariffs-title {
    font-size: 26px;
    padding: 50px 0 35px 50px;
    margin: 0;
  }
  
  .safe-tariff-card {
    padding: 38px 26px 38px 48px;
  }

  .safe-tariffs-cards {
    gap: 0;
  }

  .safe-tariff-price {
    font-size: 54px;
  }
  
  .safe-tariff-currency {
    font-size: 54px;
  }
  
  .safe-tariff-period {
    font-size: 16px;
  }

  .safe-tariff-name {
    font-size: 18px;
  }
  
  .safe-tariff-feature {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  .safe-tariff-feature-icon {
    width: 26px;
    height: 26px;
  }
  
  .safe-tariff-label {
    font-size: 13px;
    padding: 6px 14px;
  }
  
  .safe-tariff-button {
    padding: 14px 22px;
    font-size: 14px;
    max-width: 100%;
  }
  
  .safe-tariff-icon-bg {
    width: 88px;
    height: 88px;
    top: 35px;
    right: 30px;
  }
}

@media screen and (max-width: 1110px) {
  .safe-tariffs-section {
    padding: 0;
    margin-bottom: 100px;
  }

  .safe-tariffs-title {
    font-size: 24px;
    padding: 45px 0 32px 45px;
    margin: 0;
  }
  
  .safe-tariff-card {
    padding: 35px 22px 35px 45px;
  }

  .safe-tariffs-cards {
    gap: 0;
  }

  .safe-tariff-price {
    font-size: 52px;
  }
  
  .safe-tariff-currency {
    font-size: 52px;
  }
  
  .safe-tariff-period {
    font-size: 15px;
  }

  .safe-tariff-name {
    font-size: 17px;
  }
  
  .safe-tariff-feature {
    font-size: 14px;
    margin-bottom: 14px;
  }
  
  .safe-tariff-feature-icon {
    width: 24px;
    height: 24px;
  }
  
  .safe-tariff-label {
    font-size: 12px;
    padding: 5px 12px;
  }
  
  .safe-tariff-button {
    padding: 13px 20px;
    font-size: 13px;
    max-width: 100%;
  }
  
  .safe-tariff-icon-bg {
    width: 85px;
    height: 85px;
    top: 32px;
    right: 28px;
  }
}

@media screen and (max-width: 768px) {
  .safe-tariffs-section {
    padding: 0;
    margin-bottom: 80px;
  }

  .safe-tariffs-title {
    font-size: 22px;
    padding: 40px 0 25px 20px;
    margin: 0;
  }

  .safe-tariffs-cards {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .safe-tariff-card {
    padding: 35px 20px 35px 20px;
    min-height: auto;
    height: 100%;
  }
  
  .safe-tariff-block {
    height: 100%;
    overflow: hidden;
  }

  .safe-tariff-price {
    font-size: 48px;
  }
  
  .safe-tariff-currency {
    font-size: 48px;
  }
  
  .safe-tariff-period {
    font-size: 15px;
  }

  .safe-tariff-name {
    font-size: 17px;
    margin-bottom: 25px;
  }
  
  .safe-tariff-features {
    margin-bottom: 25px;
  }

  .safe-tariff-feature {
    font-size: 14px;
    margin-bottom: 14px;
    gap: 12px;
  }
  
  .safe-tariff-feature-icon {
    width: 24px;
    height: 24px;
  }
  
  .safe-tariff-label {
    font-size: 12px;
    padding: 6px 12px;
    margin-top: 15px;
    margin-bottom: 12px;
  }
  
  .safe-tariff-button {
    padding: 14px 24px;
    font-size: 14px;
    max-width: 100%;
  }
  
  .safe-tariff-icon-bg {
    width: 80px;
    height: 80px;
    top: 30px;
    right: 20px;
  }
}

@media screen and (max-width: 480px) {
  .safe-tariffs-section {
    padding: 30px 12px;
    margin-bottom: 60px;
  }

  .safe-tariffs-title {
    font-size: 20px;
    padding: 30px 0 20px 12px;
    margin: 0 0 20px 0;
  }
  
  .safe-tariff-card {
    padding: 25px 12px 25px 12px;
    min-height: auto;
    height: 100%;
  }
  
  .safe-tariff-block {
    height: 100%;
    overflow: hidden;
  }
  
  .safe-tariff-price {
    font-size: 40px;
  }
  
  .safe-tariff-currency {
    font-size: 40px;
  }
  
  .safe-tariff-period {
    font-size: 14px;
  }
  
  .safe-tariff-name {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .safe-tariff-features {
    margin-bottom: 20px;
  }
  
  .safe-tariff-feature {
    font-size: 13px;
    margin-bottom: 12px;
    gap: 10px;
  }
  
  .safe-tariff-feature-icon {
    width: 22px;
    height: 22px;
  }
  
  .safe-tariff-label {
    font-size: 11px;
    padding: 5px 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .safe-tariff-icon-bg {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 15px;
  }
  
  .safe-tariff-button {
    padding: 12px 20px;
    font-size: 13px;
    max-width: 100%;
  }

}

@media screen and (max-width: 460px) {
  .safe-tariff-card {
    padding: 20px 6px 20px 6px;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .safe-tariff-button {
    padding: 10px 12px;
    font-size: 11px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    align-self: stretch;
  }
  
  .safe-tariff-price {
    font-size: 32px;
  }
  
  .safe-tariff-currency {
    font-size: 32px;
  }
  
  .safe-tariff-period {
    font-size: 12px;
  }
  
  .safe-tariff-name {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .safe-tariff-feature {
    font-size: 11px;
    margin-bottom: 10px;
  }
  
  .safe-tariff-feature-icon {
    width: 18px;
    height: 18px;
  }
  
  .safe-tariff-label {
    font-size: 10px;
    padding: 4px 8px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  
  .safe-tariff-icon-bg {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 10px;
  }
  
  .safe-tariff-block {
    overflow: hidden;
  }
}

@media screen and (max-width: 390px) {
  .safe-tariff-card {
    padding: 18px 5px 18px 5px;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .safe-tariff-button {
    padding: 9px 10px;
    font-size: 10px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    align-self: stretch;
  }
  
  .safe-tariff-price {
    font-size: 28px;
  }
  
  .safe-tariff-currency {
    font-size: 28px;
  }
  
  .safe-tariff-period {
    font-size: 11px;
  }
  
  .safe-tariff-name {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .safe-tariff-feature {
    font-size: 10px;
    margin-bottom: 8px;
    gap: 8px;
  }
  
  .safe-tariff-feature-icon {
    width: 16px;
    height: 16px;
  }
  
  .safe-tariff-label {
    font-size: 9px;
    padding: 3px 6px;
    margin-top: 6px;
    margin-bottom: 6px;
  }
  
  .safe-tariff-icon-bg {
    width: 45px;
    height: 45px;
    top: 12px;
    right: 8px;
  }
  
  .safe-tariff-block {
    overflow: hidden;
  }
}

@media screen and (min-width: 1600px) {
  .safe-tariffs-title {
    font-size: 36px;
    padding: 100px 0 60px 120px;
  }
  
  .safe-tariff-card {
    padding: 60px 50px 60px 120px;
    min-height: auto;
  }
  
  .safe-tariff-price {
    font-size: 96px;
  }
  
  .safe-tariff-currency {
    font-size: 96px;
  }
  
  .safe-tariff-period {
    font-size: 20px;
  }
  
  .safe-tariff-name {
    font-size: 24px;
  }
  
  .safe-tariff-feature {
    font-size: 18px;
  }
  
  .safe-tariff-feature-icon {
    width: 32px;
    height: 32px;
  }
  
  .safe-tariff-icon-bg {
    width: 150px;
    height: 150px;
    top: 60px;
    right: 60px;
  }
}

@media screen and (min-width: 1920px) {
  .safe-tariffs-title {
    font-size: 40px;
    padding: 120px 0 70px 150px;
  }
  
  .safe-tariff-card {
    padding: 70px 60px 70px 150px;
    min-height: auto;
  }
  
  .safe-tariff-price {
    font-size: 110px;
  }
  
  .safe-tariff-currency {
    font-size: 110px;
  }
  
  .safe-tariff-period {
    font-size: 22px;
  }
  
  .safe-tariff-name {
    font-size: 26px;
  }
  
  .safe-tariff-feature {
    font-size: 19px;
  }
  
  .safe-tariff-feature-icon {
    width: 34px;
    height: 34px;
  }
  
  .safe-tariff-icon-bg {
    width: 180px;
    height: 180px;
    top: 70px;
    right: 70px;
  }
}

