@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --c1: #7109AA;
    --c2: #5F2580;
    --c3: #48036F;
    --c4: #9F3ED5;
    --c5: #AD66D5;
    --bg: #07020a;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary: #9F3ED5;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg);
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.5;
    animation: liquid 25s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--c1);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--c3);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 30%;
    width: 40vw;
    height: 40vw;
    background: var(--c4);
    opacity: 0.2;
}

@keyframes liquid {
    0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    }

    100% {
    transform: translate(100px, 50px) scale(1.1) rotate(20deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.brand-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--c4);
    filter: blur(150px);
    opacity: 0.3;
    z-index: -1;
}

.hero-icon {
    font-size: 100px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, var(--c5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(159, 62, 213, 0.5));
}
.hero-icon.custom-logo {
    width: 128px;
    height: 128px;
    -webkit-mask-image: url('/img/fortuna_logo.svg');
    mask-image: url('/img/fortuna_logo.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    
    background: linear-gradient(135deg, #fff 0%, var(--c5) 100%);
    -webkit-background-clip: padding-box; /* Важно сменить с text на padding-box */
    background-clip: padding-box;
}

.hero h1 {
    font-size: clamp(50px, 10vw, 110px);
    font-weight: 800;
    letter-spacing: -4px;
    margin-bottom: 20px;
    line-height: 0.9;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero p {
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 40px;
    font-weight: 400;
}

.trial-badge {
    background: rgba(159, 62, 213, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 62, 213, 0.5);
    border-radius: 60px;
    padding: 12px 30px;
    margin-bottom: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: white;
    box-shadow: 0 0 30px rgba(159, 62, 213, 0.3);
}

.trial-badge i {
    color: var(--c4);
    font-size: 22px;
}

.btn-liquid {
    position: relative;
    padding: 24px 50px;
    font-size: 20px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.btn-liquid:hover {
    transform: translateY(-5px);
    background: var(--c4);
    border-color: var(--c5);
    box-shadow: 0 0 50px rgba(159, 62, 213, 0.6);
}

.btn-liquid:hover::before {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.scroll-indicator i {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
    transform: translateY(0);
    }

    40% {
    transform: translateY(-10px);
    }

    60% {
    transform: translateY(-5px);
    }
}

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

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

.liquid-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 40px;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.liquid-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--x) var(--y), rgba(159, 62, 213, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.liquid-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(159, 62, 213, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.liquid-card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--c3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--c5);
    border: 1px solid var(--glass-border);
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-muted);
    font-size: 16px;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    margin: 80px 0;
    text-align: center;
}

.stat-item {
    flex: 1 1 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(to bottom, #fff, var(--c4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.pricing-section {
    text-align: center;
    padding: 100px 20px;
}

.price-tag {
    font-size: 80px;
    font-weight: 800;
    background: linear-gradient(to bottom, #fff, var(--c4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
}

.feature-check {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.feature-check li {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-check i {
    color: var(--c4);
    font-size: 18px;
}

.trial-highlight {
    background: rgba(159, 62, 213, 0.1);
    border-radius: 60px;
    padding: 16px 30px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(159, 62, 213, 0.4);
    font-weight: 600;
    margin: 30px 0 20px;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 25px;
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--c4);
    background: rgba(159, 62, 213, 0.05);
}

.faq-question {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-answer {
    color: var(--text-muted);
}

footer {
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-item {
    color: var(--text-muted);
    font-size: 28px;
    transition: 0.3s;
}

.social-item:hover {
    color: var(--c5);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero h1 {
    font-size: 60px;
    letter-spacing: -2px;
    }

    .liquid-card {
    padding: 30px;
    }

    .stat-number {
    font-size: 36px;
    }
}

.footer-legal {
    margin-top: 15px;
}

.footer-legal a {
    color: var(--text-muted); /* Используем вашу переменную цвета */
    font-size: 11px;
    text-decoration: none;
    opacity: 0.4;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--c4); /* Цвет акцента при наведении */
    text-shadow: 0 0 10px var(--c4); /* Эффект неонового свечения */
}