﻿/* ==============================
   BASE STYLES
   ============================== */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    background-color: #0f172a; /* тёмный спокойный фон */
    color: #e2e8f0; /* мягкий светлый текст */
    font-family: "Segoe UI", sans-serif;
}

a {
    text-decoration: none;
    transition: color 0.2s ease;
}

    a:hover {
        color: #facc15;
    }

/* ==============================
   BUTTONS
   ============================== */
.btn-warning {
    background-color: #facc15;
    color: #111827;
    border: none;
}

    .btn-warning:hover {
        background-color: #eab308;
    }

.btn-dark {
    background-color: #6b46c1;
    color: #f8fafc;
}

    .btn-dark:hover {
        background-color: #805ad5;
    }

/* ==============================
   HERO
   ============================== */
.hero {
    background: #0f172a;
    color: #f8fafc;
    padding: 5rem 0;
    text-align: center;
}

/* ==============================
   FREE TRIAL BANNER
   ============================== */
.bg-gradient-free-trial {
    background: linear-gradient(135deg, #6b46c1 0%, #805ad5 100%);
    color: #f8fafc;
    padding: 25px 40px;
    border-radius: 24px;
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .bg-gradient-free-trial:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    }

/* ==============================
   FEATURES
   ============================== */
.features .feature-card {
    background: #1a202c;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

    .features .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    }

.features i {
    font-size: 2.5rem;
}

/* ==============================
   PRICING CARDS
   ============================== */
.price-card {
    background: #1a202c;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

    .price-card:hover {
        transform: translateY(-5px);
    }

    /* Featured Yearly Plan */
    .price-card.featured {
        background: linear-gradient(135deg, #6b46c1 0%, #805ad5 100%);
        color: #f8fafc;
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    }

/* Badge Best Value */
.badge-featured {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #facc15;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==============================
   FADE-IN ANIMATION
   ============================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

    .fade-in.delay-1 {
        animation-delay: 0.2s;
    }

    .fade-in.delay-2 {
        animation-delay: 0.4s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================
   DECLARATIONS
   ============================== */
.declarations {
    background: #0f172a;
}

.declaration-card {
    background: #1a202c;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

    .declaration-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    }

    .declaration-card a {
        color: #facc15;
        font-weight: 500;
    }

/* ==============================
   CHEAPER THAN GESTOR
   ============================== */
.bg-gradient-to-br {
    background: linear-gradient(135deg, #6b46c1 0%, #facc15 60%);
    color: #111827;
}

.border-warning {
    border-color: #facc15 !important;
}

.border-secondary {
    border-color: #374151 !important;
}
.autonomo-card {
    position: relative;
    background: linear-gradient(135deg, #6b46c1 0%, #facc15 60%);
    color: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .autonomo-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.35); /* затемнение для читаемости текста */
        border-radius: 20px;
        z-index: 0;
    }

    .autonomo-card * {
        position: relative;
        z-index: 1;
    }

    /* Парящий эффект при наведении */
    .autonomo-card:hover {
        transform: translateY(-8px) scale(1.04);
        box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    }

/* Бейдж Best Value */
.badge-featured {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #facc15;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* Плавное появление пунктов списка */
.autonomo-card ul li {
    margin-bottom: 8px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInItem 0.5s forwards;
}

    .autonomo-card ul li.delay-0 {
        animation-delay: 0.1s;
    }

    .autonomo-card ul li.delay-1 {
        animation-delay: 0.3s;
    }

    .autonomo-card ul li.delay-2 {
        animation-delay: 0.5s;
    }

    .autonomo-card ul li.delay-3 {
        animation-delay: 0.7s;
    }

    .autonomo-card ul li.delay-4 {
        animation-delay: 0.9s;
    }

    .autonomo-card ul li.delay-5 {
        animation-delay: 1.1s;
    }
.autonomo-card h5 {
    color: #e0d8ff; /* светло-сиреневый для названия */
}

.autonomo-card h3 {
    color: #ffeb7f; /* светло-жёлтый для цены */
}
@keyframes fadeInItem {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.gestor-card {
    background: #1a1f28; /* тёмный фон */
    border: 1px solid #374151; /* мягкая граница */
    color: #f8fafc; /* основной текст чуть светлее */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    border-radius: 10px;
}

    .gestor-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    }



        .gestor-card ul li::before {
            content: "❌";
            color: #ff4d4f;
            margin-right: 6px;
        }
    .gestor-card ul {
        padding-left: 0; /* убрать лишний отступ */
        margin: 0 auto; /* центрировать список */
        
    }

        .gestor-card ul li {
            
            text-overflow: ellipsis; /* показать "..." если текст не помещается */
            margin-bottom: 8px;
            font-size: 0.95rem;

            text-align: left; /* текст слева внутри блока */
        }

.btn-gradient {
    background: linear-gradient(90deg, #facc15, #f59e0b);
    color: #1f2937;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    color: #1f2937;
}

.btn-hover {
    transition: all 0.3s;
}

    .btn-hover:hover {
        background-color: rgba(255,255,255,0.2);
        color: #fff;
        transform: translateY(-2px);
    }

@media (min-width: 992px) {
    #animated-word {
        min-width: 420px;
    }
}
.hero-title {
    font-size: 2rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
}
.hero {
    min-height: auto;
    padding: 60px 0;
}
@media (max-width: 576px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
.hero-badge {
    white-space: normal;
    max-width: 600px;
}

@media (max-width: 576px) {
    .hero-badge {
        font-size: 0.9rem;
        padding: 8px 12px !important;
    }
}