/* ============================================================
   GLOBAL
   ============================================================ */

body.page-template {
    background: #f5f6fa !important;
}

#eut-header, header {
    background: rgba(0, 0, 0, 0.82) !important;
    backdrop-filter: blur(12px);
    z-index: 9999;
}

/* ============================================================
   HERO
   ============================================================ */

.lineo-hero {
    margin-top: 0 !important;
    height: 78vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 6%;
    border-radius: 0 0 26px 26px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 0%, rgba(65,120,255,0.35), transparent 55%),
        radial-gradient(circle at 90% 0%, rgba(130,190,255,0.28), transparent 60%),
        linear-gradient(145deg, #05060a, #101727);
}

.lineo-hero > * {
    position: relative;
    z-index: 10;
}

.lineo-fog {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url('https://i.imgur.com/8Km9tLL.png') repeat;
    opacity: 0.09;
    filter: blur(45px);
    animation: fogMove 95s linear infinite;
    z-index: 1;
}

@keyframes fogMove {
    0% { transform: translate(0,0); }
    100% { transform: translate(800px,300px); }
}

.lineo-hero-content {
    max-width: 50%;
}

.lineo-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.05em;
}

.lineo-hero-content p {
    color: #c7cfdd;
    font-size: 20px;
    margin-bottom: 30px;
}

.lineo-hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2f6dff, #1d55bd);
    background-size: 200% 200%;
    padding: 16px 40px;
    border-radius: 14px;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    transition: .25s;
    box-shadow: 0 10px 28px rgba(23,78,215,0.45);
}

.lineo-hero-btn:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(23,78,215,0.6);
}

.lineo-hero-image {
    width: 46%;
}

.lineo-hero-image img {
    float: right;
    max-width: 750px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.75), 0 0 40px rgba(65,120,255,0.32);
}

/* ============================================================
   WRAP
   ============================================================ */

.lineo-wrap {
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 0 30px 80px;
}

/* ============================================================
   FEATURES
   ============================================================ */

/* FEATURES — обновлённые карточки */
.lineo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    margin-bottom: 80px;
}

.lineo-feature {
    background: #ffffff;
    border-radius: 22px;
    padding: 26px;
    height: 230px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-shadow: 0 6px 22px rgba(15,20,30,0.06);
    position: relative;
    overflow: hidden;
    transition: .3s ease;
}

.lineo-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 34px rgba(15,20,30,0.18);
}

/* Новая иконка — мягкая, фонова */
.lineo-feature .feature-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 110px;
    opacity: 0.09;
    filter: blur(1px);
    user-select: none;
    pointer-events: none;
}

/* Заголовок сверху */
.lineo-feature h3 {
    margin: 0;
    font-size: 22px;
    color: #0c0c0c;
    font-weight: 700;
}

/* Текст у нижнего края */
.lineo-feature p {
    margin: 0;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.55;
}


/* ============================================================
   MODULES
   ============================================================ */

.lineo-modules {
    margin-bottom: 80px;
}

.lineo-modules h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #0c0c0c;
}

.lineo-modules-list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}

.lineo-module {
    background: #e5e5e5;
    padding: 26px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.08);
    transition: .25s;
}

.lineo-module:hover {
    border-color: #1d55bd;
    box-shadow: 0 0 14px rgba(29,85,189,.30);
}

/* ============================================================
   SEO BLOCK
   ============================================================ */

.lineo-seo2 {
    margin: 120px 0 80px;
}

.lineo-seo2 h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #0c0c0c;
}

.seo2-card {
    background: #eceff5;
    border-radius: 26px;
    padding: 40px 46px;
    margin-bottom: 32px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    box-shadow: 0 12px 40px rgba(15,25,40,0.12), 0 0 0 1px rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
}

.seo2-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0 0, rgba(130,180,255,0.18), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(80,130,255,0.12), transparent 60%);
    opacity: 0.9;
}

.seo2-number {
    font-size: 120px;
    font-weight: 900;
    line-height: 0.8;
    margin-top: -4px;
    flex-shrink: 0;

    background: linear-gradient(135deg,#9ec5ff,#3068ff);
    -webkit-background-clip: text;
    color: transparent;

    text-shadow:
        0 0 18px rgba(34,92,200,0.65),
        0 0 38px rgba(34,92,200,0.4);

    filter: drop-shadow(0 0 10px rgba(170,210,255,0.6));

    animation: seoPulse 6s ease-in-out infinite;
}
@keyframes seoPulse {
    0% { opacity: .82; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-4px); }
    100% { opacity: .82; transform: translateY(0); }
}

.seo2-text h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #0c0c0c;
}

.seo2-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
}

/* ============================================================
   CTA GRID
   ============================================================ */

.lineo-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.lineo-cta-card {
    border-radius: 26px;
    padding: 30px 32px;
    box-shadow: 0 14px 40px rgba(15,25,40,0.16);
    position: relative;
    overflow: hidden;
}

/* левая */
.lineo-cta-main {
    background: #e5e5e5;
}

.lineo-cta-main h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.lineo-cta-main p {
    font-size: 15px;
    margin-bottom: 24px;
    color: #555;
}

.lineo-cta-main-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* правая */
.lineo-cta-doc {
    background: linear-gradient(135deg,#1d55bd,#031538);
    color: #fff;
}

.lineo-cta-doc::before {
    content: "";
    position: absolute;
    inset: -80%;
    background:
        radial-gradient(circle at 0 0, rgba(120,180,255,0.45), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(0,0,0,0.6), transparent 65%);
    opacity: .9;
}

.lineo-cta-doc-inner {
    position: relative;
    z-index: 1;
    display:flex;
    flex-direction:column;
    height:100%;
}

.lineo-cta-doc-inner h2{
    color:#fff;
    line-height: 1em;
}

.lineo-cta-doc-actions {
    margin-top:auto;
    display:flex;
    justify-content:flex-end;
}

/* ============================================================
   CTA BUTTONS
   ============================================================ */

.btn-lineo {
    border-radius: 16px;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    background-size: 220% 220%;
    transition: .35s;
}

.btn-primary-lineo {
    color:#fff !important;
    background:linear-gradient(135deg,#2f6dff,#1d55bd);
    box-shadow:0 12px 26px rgba(23,78,215,0.45);
}

.btn-primary-lineo:hover {
    background-position:100% 0;
    transform:translateY(-3px);
    box-shadow:0 16px 34px rgba(23,78,215,0.6);
}

.btn-secondary-lineo {
    color:#1d55bd !important;
    background:linear-gradient(135deg,#fff,#dfe4f1);
    box-shadow:0 10px 20px rgba(20,35,70,0.16);
}

.btn-secondary-lineo:hover {
    background-position:100% 0;
    transform:translateY(-3px);
}

.btn-doc-lineo {
    color:#fff !important;
    background:linear-gradient(135deg,rgba(255,255,255,0.22),rgba(255,255,255,0.08));
    border:1px solid rgba(255,255,255,0.45);
}

.btn-doc-lineo:hover {
    transform:translateY(-3px);
}

.btn-telegram-lineo {
    color:#fff !important;
    background:linear-gradient(135deg,#2bb1ff,#039be5);
    box-shadow:0 12px 26px rgba(0,150,230,0.55);
}

.btn-telegram-lineo:hover {
    background-position:100% 0;
    transform:translateY(-3px);
}

/* ============================================================
   BOTTOM BANNER
   ============================================================ */

.lineo-bottom-banner {
    margin-top:40px;
    padding:38px 40px;
    border-radius:30px;
    background:
        radial-gradient(circle at 0 0, rgba(158,195,255,0.26), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(80,120,220,0.15), transparent 60%),
        #f7f9ff;
    box-shadow:0 22px 60px rgba(15,25,50,0.25),0 0 0 1px rgba(255,255,255,0.8);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    position:relative;
    overflow:hidden;
}

.bottom-banner-text h2 {
    font-size:30px;
    margin-bottom:10px;
    color:#111;
}

.bottom-banner-text p {
    font-size:16px;
    color:#444;
}

.bottom-banner-price {
    font-size:40px;
    font-weight:800;
    background:linear-gradient(135deg,#2f6dff,#1d55bd);
    -webkit-background-clip:text;
    color:transparent;
    text-shadow:0 0 20px rgba(47,109,255,0.7);
    animation:pricePulse 5s infinite;
}

/* ============================================================
   LiNEO+ BANNER
   ============================================================ */

.lineo-plus-banner {
    margin: 40px 0 60px;
    padding: 38px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    background:
        radial-gradient(circle at 0 0, rgba(120,170,255,0.22), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(60,110,255,0.16), transparent 65%),
        #eef3ff;
    border-radius: 28px;

    box-shadow:
        0 18px 40px rgba(20,30,60,0.18),
        0 0 0 1px rgba(255,255,255,0.8);

    position: relative;
    overflow: hidden;
}

/* Легкая боковая подсветка */
.lineo-plus-banner::before,
.lineo-plus-banner::after {
    content: "";
    position: absolute;
    top: -20%;
    bottom: -20%;
    width: 120px;
    filter: blur(40px);
    opacity: .55;
    pointer-events: none;
}

.lineo-plus-banner::before {
    left: -40px;
    background: linear-gradient(to bottom, rgba(150,195,255,0.8), transparent);
}

.lineo-plus-banner::after {
    right: -40px;
    background: linear-gradient(to bottom, rgba(80,120,255,0.5), transparent);
}

.lineo-plus-left h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}

.lineo-plus-left p {
    font-size: 16px;
    color: #444;
    max-width: 640px;
}

/* Кнопка LiNEO+ (неоновая) */
.btn-plus-lineo {
    background-image: linear-gradient(135deg,#3e7bff,#1c49e6);
    color:#fff !important;

    border-radius: 16px;
    padding: 16px 34px;

    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 14px 34px rgba(30,70,180,0.55);

    transition: .35s ease;
}

.btn-plus-lineo:hover {
    transform: translateY(-3px);
    background-position: 100% 0;
    box-shadow: 0 18px 42px rgba(30,70,180,0.75);
}

/* Мобила */
@media (max-width: 1024px) {
    .lineo-plus-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 26px;
    }

    .lineo-plus-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .btn-plus-lineo {
        width: 100%;
    }
}


@keyframes pricePulse {
    50% { text-shadow:0 0 40px rgba(47,109,255,0.9); }
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width:1024px) {
    .lineo-hero { flex-direction:column; text-align:center; height:auto; padding:40px 4% 60px; }
    .lineo-hero-image { width:92%; }
    .seo2-card { flex-direction:column; text-align:center; }
    .lineo-bottom-banner { flex-direction:column; text-align:center; }
}

@media (max-width:640px) {
    .lineo-wrap { padding:0 18px 60px; }
}


