.modern-faq {
    padding: 6rem 5%;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #2563eb;
    margin: 1rem auto 0;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-card {
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.active {
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.12);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    color: #2563eb;
    font-size: 1.4rem;
}

.faq-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #1a365d;
    flex-grow: 1;
}

.arrow {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.line {
    position: absolute;
    width: 12px;
    height: 2px;
    background: #2563eb;
    transition: all 0.3s ease;
}

.line:first-child {
    transform: rotate(45deg) translateX(4px);
}

.line:last-child {
    transform: rotate(-45deg) translateX(-4px);
}

.faq-card.active .line:first-child {
    transform: rotate(-45deg) translateX(4px);
}

.faq-card.active .line:last-child {
    transform: rotate(45deg) translateX(-4px);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-wrapper-faq {
    padding:1.5rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

ol, ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

li {
    margin: 0.8rem 0;
    color: #4a5568;
    line-height: 1.6;
}

.timeline {
    display: grid;
    gap: 1.5rem;
    padding: 1rem 0;
}

.time-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.03);
    border-radius: 10px;
}

.time-item span {
    font-weight: 600;
    color: #2563eb;
    min-width: 80px;
}

.security-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
    
  .faq-header {
    padding: 1rem;
    gap: 1rem;
  }
    
  .faq-header h3 {
    font-size: 1.1rem;
  }
    
  .icon-box {
    width: 40px;
    height: 40px;
  }
}



.unified-tariff {
    padding: 0rem 5% 3rem;
    background: radial-gradient(circle at center, #f8fafc 0%, #e2e8f012 100%);
}

.tariff-container {
/*    max-width: 1000px;*/
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.full-package-badge {
    position: absolute;
    top: 35px;
    right: -65px;
/*    background: #2563eb;*/
    background: #eb7925;
/*    background: #429a22;*/
    color: white;
    padding: 12px 50px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 15px rgba(37, 99, 235, 0.3);
}

.badge-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.2) 10px,
        rgba(255,255,255,0.2) 20px
    );
}

.tariff-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e4bb5 100%);
    color: white;
    position: relative;
}

.tariff-header h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.price {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.price span {
    font-size: 1.2rem;
    font-weight: normal;
    display: block;
    opacity: 0.9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.main-benefit {
    background: #fff7e6;
    border: 2px solid #ffd700;
    position: relative;
}

.main-benefit:before {
    content: "★ Бесплатно";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #1a365d;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.benefit-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
    position: relative;
}

.main-benefit .benefit-icon {
    color: #ffd700;
}

.main-benefit .benefit-icon i:last-child {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 1.2rem;
    background: white;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: #f8fafc;
    margin: 0 2rem 2rem;
    border-radius: 15px;
}

.guarantee-item {
    text-align: center;
}

.guarantee-item i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.super-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #48bb78;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 2rem auto;
    transition: transform 0.3s ease;
}

.tariff-footer {
  display: flex;
}

.super-cta:hover {
    transform: scale(1.05);
    background: #38a169;
}

@media (max-width: 820px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantees {
        flex-direction: column;
        gap: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}




      .simple-footer {
        background: #2d3748;
        color: #fff;
        padding: 2rem 5%;
        font-size: 0.9rem;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #4a5568;
    }

    .footer-logo .logo {
        font-size: 1.5rem;
        color: #4299e1;
        font-weight: bold;
        display: block;
        margin-bottom: 0.5rem;
    }

    .slogan {
        color: #cbd5e0;
        font-size: 0.9rem;
    }

    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-link {
        color: #cbd5e0;
        text-decoration: none;
        transition: color 0.3s;
    }

    .contact-link:hover {
        color: #4299e1;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
/*        opacity: 0;*/
    }

    .social-icon {
        color: #cbd5e0;
        font-size: 1.5rem;
        transition: color 0.3s;
    }

    .social-icon:hover {
        color: #4299e1;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 1rem auto 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 1rem;
        color: #cbd5e0;
    }

    .policy-link {
        color: #cbd5e0;
        text-decoration: none;
        transition: color 0.3s;
    }

    .policy-link:hover {
        color: #4299e1;
    }

    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 0.5rem;
            text-align: center;
        }
    }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            line-height: 1.6;
        }

        /* Навигация */
        .navbar {
            background: rgba(255, 255, 255, 0.9);
            padding: 1rem 5%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            color: #2563eb;
            font-weight: bold;
        }

        .auth-button {
            background: #2563eb;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .auth-button:hover {
            background: #1e4bb5;
        }












/* Герой секция */
  .hero {
        background: linear-gradient(rgba(37, 99, 235, 0.8), rgba(37, 99, 235, 0.8)), url('https://plus.unsplash.com/premium_photo-1683288446489-71997f24255d?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
        color: white;
        padding: 120px 5% 60px;
        text-align: center;
        min-height: 100vh; /* Изменили с 100vh на auto */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5em;
        margin-bottom: 1rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero p {
        font-size: 1.2em;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        max-width: 600px;
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .hero {
            padding: 100px 5% 40px;
        }
        
        .hero h1 {
            font-size: 2rem;
            padding: 0 10px;
        }
        
        .hero p {
            font-size: 1rem;
            padding: 0 10px;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 1.5rem;
            line-height: 1.3;
        }
        
        .hero p {
            font-size: 0.9rem;
        }
        
        .cta-button {
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
        }
    }
    
    .cta-button {
            display: inline-block;
            background: #ffd700;
            color: #1a365d;
            padding: 1rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 2rem;
            transition: background 0.3s ease;
        }

        .cta-button:hover {
            background: #e6c200;
        }















         /* Блок "Наши преимущества" */
        .advantages {
            padding: 4rem 5%;
            background: #f8fafc;
            text-align: center;
        }

        .advantages h2 {
            margin-bottom: 2rem;
            font-size: 2em;
            color: #2563eb;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .advantage-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .advantage-icon {
            font-size: 2.5rem;
            color: #2563eb;
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }

        .advantage-card:hover .advantage-icon {
            color: #1e4bb5;
        }

        .advantage-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1a365d;
        }

        .advantage-description {
            color: #4a5568;
            line-height: 1.6;
        }

        /* Особенности */
        .features {
            padding: 4rem 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            background: #f8fafc;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #2563eb;
            margin-bottom: 1rem;
        }

        /* Как это работает */
        .how-it-works {
            padding: 4rem 5%;
            background: white;
            text-align: center;
        }

        .timeline {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            margin-top: 3rem;
            gap: 20px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 5%;
            right: 5%;
            height: 4px;
            background: #2563eb;
            z-index: 1;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: #2563eb;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1rem;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .step:hover .step-icon {
            transform: scale(1.1);
            background: #1e4bb5;
        }

        .step-content {
            background: white;
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-top: 1rem;
        }

        .step-number {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2563eb;
            margin-bottom: 0.5rem;
        }

        /* Адаптивность для временной шкалы */
        @media (max-width: 768px) {
            .timeline {
                flex-direction: column;
                align-items: flex-start;
            }

            .timeline::before {
                top: 0;
                left: 40px;
                right: auto;
                width: 4px;
                height: 100%;
            }

            .step {
                display: flex;
                align-items: center;
                margin-bottom: 2rem;
                width: 100%;
                text-align: left;
            }

            .step-icon {
                margin: 0 1rem 0 0;
                flex-shrink: 0;
            }

            .step-content {
                margin-top: 0;
                box-shadow: none;
                background: transparent;
            }
          }








/* Анимации */
@keyframes modalEntry {
  0% {
    opacity: 0;
    transform: translateY(40px) rotateX(30deg) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

@keyframes overlayAppear {
  from { backdrop-filter: blur(0); opacity: 0; }
  to { backdrop-filter: blur(6px); opacity: 1; }
}

/* Стили модального окна */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: overlayAppear 0.4s forwards;
}

.modal-container {
  perspective: 1000px;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  transform-origin: center top;
  animation: modalEntry 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  position: relative;
}

/* Стиль кнопки закрытия */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: overlayAppear 0.4s forwards;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.modal-close-btn::before,
.modal-close-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: background 0.3s;
}

.modal-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-close-btn:hover {
  transform: rotate(90deg);
}

.modal-close-btn:hover::before,
.modal-close-btn:hover::after {
  background: #ff4757;
}

/* Адаптивность */
@media (max-width: 768px) {
  .modal-content {
    border-radius: 15px;
    padding: 20px;
  }
}

/* Прокрутка */
.modal-body {
  line-height: 1.6;
  padding: 20px 0;
}

.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
}









.hero2 {
    padding: 100px 0;
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
    position: relative;
}

.hero-content {
    padding: 40px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 54px;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
}

.highlight {
    color: #4f46e5;
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(79, 70, 229, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 20px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 400;
    padding-right: 20px;
}

.hero-cta {
    background: #4f46e5;
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.hero-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.hero-cta:hover:before {
    left: 100%;
}

.cta-arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.hero-cta:hover .cta-arrow {
    transform: translateX(5px);
}

.screenshot-container {
    position: relative;
    perspective: 1200px;
}

.screenshot-frame {
    background: white;
    border-radius: 24px;
    padding: 20px;
    transform: 
        perspective(1200px)
        rotateY(-12deg)
        rotateX(4deg)
        translateZ(40px);
    transition: transform 0.4s;
    box-shadow:
        0 32px 64px -16px rgba(79, 70, 229, 0.15),
        16px 24px 48px -24px rgba(79, 70, 229, 0.25);
    position: relative;
    z-index: 2;
}

.screenshot-frame:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.05) 0%, transparent 100%);
}

.screenshot-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.unified-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.05) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

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

    .hero-subtitle {
        margin: 0 auto 30px;
        padding-right: 0;
    }

    /*.screenshot-frame {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
        max-width: 600px;
        margin: 0 auto;
    }*/

    .hero-cta {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }

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

    /*.screenshot-frame {
        transform: none;
        padding: 12px;
        border-radius: 16px;
    }*/

    .screenshot-image {
        border-radius: 12px;
    }
}




















.hero3 {
  display: flex;
  align-items: center;
/*  min-height: 100vh;*/
/*  padding: 120px 10%;*/
  max-width: 1200px;
  margin: 0 auto;

  padding-left: 20px;
  padding-right: 20px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero3_content {
  flex: 1;
  padding-right: 80px;
  min-width: 35%;
}

.macbook-wrapper {
/*  flex: 1;*/
  position: relative;
}

.macbook {
  width: 100%;
/*  max-width: 800px;*/
  filter: drop-shadow(0 25px 50px rgba(37, 99, 235, 0.15));
}

.screen {
  position: absolute;
  top: 5.8%;
  left: 12.2%;
  width: 75.5%;
  height: 73.5%;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h1_hero3 {
  font-size: 56px;
  color: #1e293b;
  margin-bottom: 32px;
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p_hero3 {
  font-size: 20px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
  background: white;
  color: var(--dark);
  border: 1px solid #e2e8f0;
}

@media (max-width: 1024px) {
  .hero3 {
    flex-direction: column;
    padding: 80px 5%;
    text-align: center;
  }

  .hero3_content {
    padding-right: 0;
    margin-bottom: 60px;
  }

  .h1_hero3 {
    font-size: 40px;
  }

  .p_hero3 {
    margin: 0 auto 40px;
  }

  .buttons {
    justify-content: center;
  }

  .macbook-wrapper {
    max-width: 600px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .h1_hero3 {
    font-size: 32px;
  }

  .p_hero3 {
    font-size: 18px;
  }

  .btn {
    padding: 12px 24px;
  }
}














.feature-block {
    padding: 80px 0;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    display: flex;
    gap: 25px;
    align-items: center;
}

.screenshot-side {
/*    flex: 1;*/
    position: relative;
}

.mockup-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(10deg);
}

.interface-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.mockup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.1) 0%, rgba(255,255,255,0) 100%);
}

.text-side {
    min-width: 370px;
    flex: 1;
    max-width: 500px;
}

.feature-title {
    font-size: 40px;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 35px;
}

.gradient-highlight {
    background: linear-gradient(45deg, #4f46e5, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item.crossed {
    color: #64748b;
    text-decoration: line-through;
    opacity: 0.8;
}

.icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #fee2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    flex-shrink: 0;
}

.cta-btn {
    background: #4f46e5;
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.2);
}

.cta-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

.arrow {
    font-size: 20px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-btn:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .mockup-wrapper {
        transform: none;
    }
    
    .text-side {
        text-align: center;
    }
    
    .feature-title {
        font-size: 32px;
    }
    
    .feature-item {
        justify-content: center;
    }
}





