    
.service-area {
    background: #ffffff;
    padding: 80px 0;
}

.service-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    margin-bottom: 40px;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Золотая линия сверху (остается красиво видно) */
.service-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 4px;
    background: #1797c2;
    transition: 0.35s ease;
}

.service-step:hover::before {
    width: 100%;
    left: 0;
}

/* Hover — легкий подъем */
.service-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Иконка */
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    background: rgba(198,176,105,0.12);
    transition: 0.35s ease;

    /* лёгкая тень чтоб не пропадала на белом */
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.service-icon span {
    font-size: 36px;
    color: #1797c2;
    transition: 0.35s ease;
}

/* Hover эффект */
.service-step:hover .service-icon {
    background: #1797c2;
    box-shadow: 0 12px 28px rgba(198,176,105,0.45);
}

.service-step:hover .service-icon span {
    color: #ffffff;
}

/* Заголовок */
.service-step h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

/* Текст */
.service-step p {
    font-size: 15px;
    color: #555;
}

    /* Фон секции с легким градиентом */
.benefits-area {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    background: radial-gradient(circle at top left, #172a45 0%, #0b1220 45%, #050816 100%);
    overflow: hidden;
}

/* Едва заметные световые пятна на фоне */
.benefits-area::before,
.benefits-area::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    opacity: 0.25;
    pointer-events: none;
}

.benefits-area::before {
    background: #ffae00;
    top: -60px;
    left: -40px;
}

.benefits-area::after {
    background: #4fd1ff;
    bottom: -80px;
    right: -20px;
}

/* Карточка преимущества */
.benefit-item {
    position: relative;
    text-align: center;
    padding: 28px 22px 26px;
    margin-bottom: 35px;
    border-radius: 18px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    transform: translateY(0) translateZ(0);
    overflow: hidden;
    height:270px;
}

/* Светящийся контур поверх карточки */
.benefit-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(255,174,0,0.0), rgba(79,209,255,0.0));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Hover — 3D-подъём и подсветка */
.benefit-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    background: #ffffff;
}

.benefit-item:hover::before {
    opacity: 1;
}

/* Иконка внутри кружка */
.benefit-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255,174,0,0.16), rgba(255,174,0,0.03));
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    animation: benefit-float 4s ease-in-out infinite;
}

.benefit-icon span {
    font-size: 30px;
    color: #1797c2;
    transition: color 0.35s ease, transform 0.35s ease;
}

/* Hover — иконка чуть «выстреливает» и светится */
.benefit-item:hover .benefit-icon {
    transform: translateY(-4px) scale(1.05);
    background:#1797c2;
}

.benefit-item:hover .benefit-icon span {
    color: #ffffff;
    transform: scale(1.03);
}

/* Заголовок и текст */
.benefit-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
    letter-spacing: 0.2px;
}

.benefit-item p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 0;
}

/* Лёгкая подсветка снизу при наведении */
.benefit-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 60%;
    height: 18px;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.benefit-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(4px);
}

/* Плавающая анимация иконок (чуть-чуть, чтобы было живо) */
@keyframes benefit-float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}


    /* Карточка */
.ceiling-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 35px;
    background: #fff;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.ceiling-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

/* Фото */
.ceiling-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ceiling-item:hover img {
    transform: scale(1.08);
}

/* Постоянный затемняющий градиент */
.ceiling-item::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
    opacity: 1; /* ВСЕГДА включён */
    transition: opacity 0.35s ease;
}

/* Название видно всегда */
.ceiling-title {
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.3px;
    opacity: 1; /* ВСЕГДА видно */
    transform: translateY(0); /* Без анимации появления */
    transition: all 0.35s ease;
}

/* Дополнительная “живость” при наведении */
.ceiling-item:hover .ceiling-title {
    transform: translateY(-3px);
}


    .stats-area {
    background: #1797c2;
    padding-top: 70px;
    padding-bottom: 70px;
    margin-top:70px;
}

.single-stat {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: .35s ease;
}

.single-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.20);
}

.single-stat .icon {
    font-size: 42px;
    color: #1797c2;
    margin-bottom: 14px;
}

.single-stat h2 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.single-stat p {
    font-size: 15px;
    color: #555;
}


    
    
    .blog-area {
    background: #ffffff;
}

.single-blog-post {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    padding:10px;
    height:400px;
}

.single-blog-post:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}

.single-blog-post .thumb img {
    border-radius: 14px 14px 0 0;
    transition: 0.4s ease;
    height:230px;
}

.single-blog-post:hover .thumb img {
    transform: scale(1.04);
}


    /* Фирменный цвет */
.gold {
    color: #1797c2;
}

.why-premier {
    background: #0f151f;
    padding: 80px 0;
}

/* Карточка */
.premier-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    margin-bottom: 35px;
    transition: 0.35s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    position: relative;
    overflow: hidden;
}

/* Золотая линия сверху */
.premier-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 4px;
    background: #1797c2;
    transition: 0.35s ease;
}

.premier-item:hover::before {
    width: 100%;
    left: 0;
}

/* Hover эффект (премиум) */
.premier-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

/* Иконка */
.premier-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198,176,105,0.12);
    transition: 0.35s ease;
}

.premier-icon span {
    font-size: 32px;
    color: #1797c2;
    transition: 0.35s ease;
}

/* Иконка при наведении */
.premier-item:hover .premier-icon {
    background: #1797c2;
    box-shadow: 0 12px 25px rgba(198,176,105,0.5);
}

.premier-item:hover .premier-icon span {
    color: #fff;
}

/* Заголовок */
.premier-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

/* Текст */
.premier-item p {
    font-size: 15px;
    color: #555;
}