/* ==========================================================================
   1. Base & Reset
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&display=swap');

:root {
  --primary-color: #007680;
  --secondary-color: #1B9F8C;
  --dark-blue: #36475B;
  --light-gray: #F6F9FF;
  --text-color: #5E6A75;
  --border-color: #DEE2E6;
  --white: #FFFFFF;
  --font-family: 'Nunito Sans', sans-serif;
  --border-radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

h1, h2, h3, h4 {
  color: var(--dark-blue);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.4rem;
}

/* ==========================================================================
   2. Reusable Components
   ========================================================================== */

.section {
  padding: 80px 0;
}

.section--light-bg {
    background-color: var(--light-gray);
}

.section__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section__subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px auto;
  font-size: 1.1rem;
  color: var(--text-color);
}

.button {
  display: inline-block;
  padding: 12px 28px;
  background: radial-gradient(89.47% 511.56% at 6.67% 0%, #0F7F8E 0%, #107F8C 22.36%, #1B9F8C 100%);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--border-radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 159, 140, 0.3);
}

.button.button--outline {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button.button--outline:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}


.breadcrumbs {
    margin-bottom: 24px;
    color: var(--text-color);
}

.breadcrumbs a {
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   3. Header & Navigation
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  height: 90px;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header__logo img {
  height: 60px; 
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__nav a {
  color: var(--dark-blue);
  font-weight: 600;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.header__nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-blue);
  display: block;
  transition: 0.3s ease;
  border-radius: 2px;
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.hero {
    padding-top: 150px; 
    padding-bottom: 80px;
    background-color: var(--light-gray);
}
.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero__content {
    flex: 1;
    max-width: 550px;
}
.hero h1 {
    margin-bottom: 20px;
}
.hero__subtext {
    font-size: 1.2rem;
    margin-bottom: 32px;
}
.hero__visual {
    flex: 1;
    max-width: 550px;
    display: flex; 
    align-items: center; 
    justify-content: flex-end;
}

.hero__visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}
 /* ==========================================================================
   5. Tabs (Problems & Solutions)
   ========================================================================== */

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}
.tabs__button {
  padding: 12px 24px;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  transition: color 0.3s, border-color 0.3s;
}
.tabs__button:hover {
  color: var(--primary-color);
}
.tabs__button.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}
.tabs__pane {
  display: none;
}
.tabs__pane.active {
  display: block;
}
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}
.problem h3, .solution h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.problem ul {
  list-style: none;
}
.problem ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}
.problem ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}
.solution p {
  font-size: 1.1rem;
}

/* ==========================================================================
   6. Products & SaaS Section
   ========================================================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}
.product-card__icon {
    height: 60px;
    margin: 0 auto 16px auto;
}
.product-card__title {
    margin-bottom: 12px;
}
.product-card__description {
    margin-bottom: 20px;
    min-height: 80px;
}
.product-card__link {
    font-weight: 600;
    color: var(--primary-color);
}

.saas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.saas-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--dark-blue);
    text-align: center;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.saas-card:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
/* ==========================================================================
   7. Advantages Section
   ========================================================================== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.advantage-card {
  background: var(--light-gray);
  padding: 32px;
  border-radius: var(--border-radius);
}
.advantage-card__title {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.advantage-card__title::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* ==========================================================================
   8. CTA Section
   ========================================================================== */
.cta-section {
    background: var(--dark-blue);
    text-align: center;
}
.cta-section__title, .cta-section__subtitle {
    color: var(--white);
}
.cta-section__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-section .button {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    padding: 14px 32px;
}
.cta-section .button img {
    height: 24px;
}
.button--telegram {
    background: #27A7E7;
}
.button--whatsapp {
    background: #25D366;
}
.button--telegram:hover {
    background: #2295cc;
    box-shadow: 0 4px 15px rgba(39, 167, 231, 0.3);
}
.button--whatsapp:hover {
    background: #1ebe5a;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
/* ==========================================================================
   9. Footer
   ========================================================================== */

.footer {
  background-color: var(--light-gray);
  padding: 60px 0 20px 0;
  color: var(--dark-blue);
}
.footer__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}
.footer__logo img {
  height: 40px;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 1rem;
  color: var(--text-color);
}
.footer__title {
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer__products, .footer__partners, .footer__contacts, .footer__legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__link {
  color: var(--text-color);
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.footer__bottom {
  padding-top: 20px;
  text-align: center;
}
.footer__copy {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* ==========================================================================
   10. Product & Legal & Partners Pages
   ========================================================================== */
.page-main {
  padding-top: 120px;
}
.product-page__header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}
.product-page__info {
    flex: 1;
}
.product-page__title {
    font-size: 3rem;
    margin-bottom: 16px;
}
.product-page__subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
}
.product-page__visual {
    flex: 1;
    max-width: 450px;
}
.product-page__section {
    margin-bottom: 40px;
}
.section__title--small {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 8px;
    display: inline-block;
}
.features-list, .target-audience-list {
    font-size: 1.1rem;
    list-style: none;
    padding-left: 0;
}
.features-list li, .target-audience-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}
.features-list li::before, .target-audience-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-page h1 {
    text-align: center;
    margin-bottom: 40px;
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

/* ==========================================================================
   11. Responsive Design
   ========================================================================== */

/* ЗАМЕНИТЕ ВЕСЬ ЭТОТ БЛОК В style.css */

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  
  .header { height: 70px; }
  .header__logo img { height: 45px; }

  /* --- НАЧАЛО ИСПРАВЛЕНИЯ --- */
  
  /* 1. По умолчанию прячем навигацию на мобильных устройствах */
  .header__nav {
    display: none; /* <-- Основное исправление */

    /* 2. Добавляем стили для красивого выезжающего меню */
    position: fixed;
    top: 70px; /* Начинается под шапкой */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    gap: 40px;
    
    /* Изначально меню спрятано за правым краем экрана */
    transform: translateX(100%); 
    transition: transform 0.3s ease-in-out;
  }

  /* 3. При клике на бургер (когда JS добавляет класс .open) */
  .header__nav.open {
      display: flex; /* Делаем меню видимым */
      transform: translateX(0); /* Возвращаем его на экран */
  }

  /* --- КОНЕЦ ИСПРАВЛЕНИЯ --- */
  
  .burger {
    display: flex; /* Показываем саму иконку-бургер */
  }
  .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

  .problem-solution { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__description { min-height: auto; }
  .product-page__header { flex-direction: column-reverse; text-align:center;}
  .footer__main { text-align: center; }
  .footer__info {
      display: flex;
      flex-direction: column;
  }
}

/* ==========================================================================
   12. New Blocks & Styles
   ========================================================================== */

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.step-card {
    text-align: center;
}
.step-card__number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px auto;
}
.step-card__title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* SaaS Page Hero */
.saas-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}
.saas-hero__title { font-size: 3rem; margin-bottom: 16px; }
.saas-hero__subtitle { font-size: 1.2rem; margin-bottom: 24px; }
.saas-hero__features { list-style: none; padding-left: 0; margin-bottom: 32px; }
.saas-hero__features li { margin-bottom: 8px; font-weight: 600; }
.saas-hero__visual img { border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}
.pricing-table {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.pricing-table--recommended {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    position: relative;
}
.pricing-table__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}
.pricing-table__title { font-size: 1.5rem; margin-bottom: 4px; }
.pricing-table__desc { color: var(--text-color); margin-bottom: 24px; }
.pricing-table__price { font-size: 2.5rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 24px; }
.pricing-table__price span { font-size: 1rem; font-weight: 400; color: var(--text-color); }
.pricing-table__features { list-style: none; padding: 0; margin-bottom: 32px; }
.pricing-table__features li { margin-bottom: 12px; }

/* Guarantees Grid */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.guarantee-card {
    background: var(--light-gray);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
}
.guarantee-card__icon {
    height: 50px;
    margin: 0 auto 16px auto;
}
.guarantee-card__title {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    border-bottom: 1px solid var(--border-color);
}
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}
.accordion-header::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-body p {
    padding: 0 0 20px 0;
}
.accordion-item.active .accordion-body {
    max-height: 200px; /* Adjust as needed */
}

/* Responsive adjustments for new blocks */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-table--recommended {
        transform: scale(1);
    }
    .saas-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .saas-hero__visual {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer__info {
        display: flex;
        flex-direction: column;
    }
}

/* ... all previous styles from 1 to 11 ... */

/* ==========================================================================
   12. New Blocks & Styles
   ========================================================================== */

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.step-card {
    text-align: center;
}
.step-card__number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px auto;
}
.step-card__title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* SaaS Page Hero */
.saas-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}
.saas-hero__title { font-size: 3rem; margin-bottom: 16px; }
.saas-hero__subtitle { font-size: 1.2rem; margin-bottom: 24px; }
.saas-hero__features { list-style: none; padding-left: 0; margin-bottom: 32px; }
.saas-hero__features li { margin-bottom: 8px; font-weight: 600; }
.saas-hero__visual img { border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* NEW: SaaS Gallery */
.saas-gallery {
    padding: 40px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.gallery-grid img {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}
.pricing-table {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.pricing-table--recommended {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    position: relative;
}
.pricing-table__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}
.pricing-table__title { font-size: 1.5rem; margin-bottom: 4px; }
.pricing-table__desc { color: var(--text-color); margin-bottom: 24px; }
.pricing-table__price { font-size: 2.5rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 24px; }
.pricing-table__price span { font-size: 1rem; font-weight: 400; color: var(--text-color); }
.pricing-table__features { list-style: none; padding: 0; margin-bottom: 32px; }
.pricing-table__features li { margin-bottom: 12px; }

/* Guarantees Grid */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.guarantee-card {
    background: var(--light-gray);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
}
.guarantee-card__icon {
    height: 50px;
    margin: 0 auto 16px auto;
}
.guarantee-card__title {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* Accordion */
/* ... accordion styles ... */


/* Responsive adjustments for new blocks */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-table--recommended {
        transform: scale(1);
    }
    .saas-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .saas-hero__visual {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer__info {
        display: flex;
        flex-direction: column;
    }
}

/* Убираем старую галерею, так как она больше не нужна */
.saas-gallery {
    display: none;
}

/* 13. Auto-Scroller (Carousel) */
.scroller-section {
    padding: 40px 0;
}

.scroller {
    max-width: 90%;
    margin: auto;
    overflow: hidden;
    /* Маска для создания эффекта затухания по краям */
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller__inner {
    display: flex;
    gap: 1rem;
    padding-block: 1rem;
    list-style: none; /* Убираем маркеры списка */
    margin: 0; /* Убираем отступы по умолчанию */
    
    /* Анимация прокрутки */
    animation: scroll 5s linear infinite;
}

/* Настройка скорости анимации */
.scroller[data-speed="fast"] {
  animation-duration: 10s;
}

.scroller[data-speed="slow"] {
  animation-duration: 40s;
}

/* Анимация */
@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

.scroller__inner li {
    flex-shrink: 0; /* Запрещаем элементам сжиматься */
}

.scroller__inner img {
    width: 350px; /* Фиксированная ширина для каждого элемента */
    max-width: none;
    height: auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

/* ==========================================================================
   14. New Guarantees Block
   ========================================================================== */

.guarantees-section-new .section__title {
    font-size: 2.5rem; /* Увеличим заголовок для акцента */
}

.guarantees-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guarantee-card-new {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.guarantee-card-new__icon {
    margin-bottom: 20px;
}

.guarantee-card-new__icon img {
    height: 50px;
}

.guarantee-card-new__title {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 16px;
}

.guarantee-card-new__list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: left;
}

.guarantee-card-new__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.guarantee-card-new__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.6;
}
