:root { 
    --background: #0F051E; 
    --panel-bg: rgba(26, 16, 60, 0.7); 
    --border-color: rgba(255, 255, 255, 0.1); 
    --text-primary: #E0E0E0; 
    --text-secondary: #a3a3a3; 
}

@font-face {
    font-family: 'HederFont';
    src: url('fonts/hederfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BPG Glaho Sylfaen';
    src: url('fonts/bpg_glaho_sylfaen.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body { 
    font-family: 'Inter', sans-serif;
    background-color: #0F051E; 
    color: #E0E0EE; 
}
.bg-custom-dark { background-color: #0F051E; }
.bg-custom-dark-blue { background-color: #1a103c; }
.bg-glass { 
    background-color: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1); 
}
.text-gradient { 
    background: linear-gradient(90deg, #a78bfa, #f472b6);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
    text-fill-color: transparent; 
}
.btn-gradient { 
    background-image: linear-gradient(to right, #8b5cf6, #ec4899);
    transition: all 0.3s ease; 
    background-size: 200% auto; 
}
.btn-gradient:hover { 
    background-position: right center;
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.25); 
}
.fade-in { 
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; 
}
.fade-in.visible { 
    opacity: 1;
    transform: translateY(0); 
}
#scroll-progress { 
    position: fixed; 
    top: 0; 
    left: 0; 
    height: 4px;
    background: linear-gradient(90deg, #a78bfa, #f472b6); 
    width: 0%; 
    z-index: 100; 
    transition: width 0.1s linear;
}

.nav-link { 
    position: relative;
    padding-bottom: 4px; 
    font-family: 'HederFont', sans-serif; 
    letter-spacing: 0.5px; 
    font-size: 1.1rem; 
}
.nav-link::after { 
    content: '';
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: linear-gradient(90deg, #a78bfa, #f472b6); 
    transition: width 0.3s ease-out;
}
.nav-link:hover::after { width: 100%; }

.nav-link.active {
    color: #ffffff;
}
.nav-link.active::after {
    width: 100%;
}

#hero-canvas { 
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 1;
}
.nav-slider .swiper-slide { width: auto; }
.nav-slider .nav-link { font-size: 1rem; }

.pricing-card {
    position: relative;
    padding: 2px; 
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    transition: all 0.4s ease-in-out; 
    transform-style: preserve-3d;
}
.pricing-card:hover { 
    transform: scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.4), 0 0 25px rgba(236, 72, 153, 0.25); 
}
.card-content {
    background-color: rgba(26, 15, 61, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 1.5rem; 
    border-radius: 1.15rem; 
    height: 100%;
    display: flex; 
    flex-direction: column; 
    text-align: center; 
    position: relative; 
    z-index: 1;
}
.icon-wrapper { 
    margin: 0 auto 1rem; 
    transition: transform 0.3s ease;
}
.group:hover .icon-wrapper { 
    transform: translateY(-5px) scale(1.1);
}
.card-title {
    font-family: 'HederFont', sans-serif;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
    min-height: 40px;
}
.card-price { 
    font-size: 2.25rem;
    font-weight: 800; 
    color: #ffffff; 
    margin: 0.5rem 0; 
    line-height: 1; 
}
.card-price .currency { 
    font-size: 1.5rem;
    font-weight: 700; 
    color: #d1d5db; 
}
.card-price .price-from { 
    font-size: 1rem; 
    font-weight: 500;
    color: #9ca3af; 
}
.card-description { 
    flex-grow: 1;
    color: #d1d5db; 
    margin-bottom: 1.5rem; 
    font-family: 'BPG Glaho Sylfaen', sans-serif;
    font-size: 0.9rem; 
    line-height: 1.6;
    word-break: break-word;
}
.card-button {
    width: 100%;
    margin-top: auto; 
    background-image: linear-gradient(to right, #8b5cf6, #ec4899); 
    color: white;
    font-weight: 600; 
    padding: 0.75rem 1rem; 
    border-radius: 9999px; 
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    gap: 0.5rem; 
    transition: all 0.3s ease;
    background-size: 200% auto; 
    border: 2px solid transparent;
}
.card-button:hover { 
    background-position: right center; 
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3); 
}

.faq-section-title { 
    font-family: 'HederFont', sans-serif;
}
.faq-item { 
    background: #1a103c; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; 
    overflow: hidden; 
    transition: all 0.3s ease; 
    position: relative;
}
.faq-item:before {
    content: '';
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    border-radius: 12px; 
    padding: 2px;
    background: linear-gradient(120deg, #ec4899, #8b5cf6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out; 
    mask-composite: exclude;
    opacity: 0; 
    transition: opacity 0.4s ease;
}
.faq-item:hover:before, .faq-item[open]:before { 
    opacity: 1;
}
.faq-item summary { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1.25rem;
    font-family: 'HederFont', sans-serif; 
    font-size: 1.2rem; 
    font-weight: 600; 
    color: #ffffff; 
    cursor: pointer; 
    position: relative; 
    z-index: 2;
}
.faq-item summary::-webkit-details-marker { 
    display: none;
}
.faq-item .faq-content { 
    padding: 0 1.25rem 1.25rem; 
    color: #d1d5db; 
    line-height: 1.7;
}
.faq-icon { 
    transition: transform 0.3s ease; 
    color: #ec4899;
}
.faq-item[open] > summary .faq-icon { 
    transform: rotate(45deg);
}
.faq-item[open] { 
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

body.panel-page {
    background-color: var(--background); 
    color: var(--text-primary); 
    font-family: 'Inter', sans-serif; 
}
.input-field { 
    background-color: #1f1344; 
    border: 1px solid #3c2a8b; 
    width: 100%; 
    padding: 0.75rem; 
    border-radius: 0.5rem; 
    outline: none; 
    transition: all 0.2s ease; 
}
.input-field:focus { 
    border-color: #ec4899; 
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.4); 
}
.modal { 
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.7); 
}
.modal.active { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    animation: fadeIn 0.3s; 
}
.modal-content { 
    position: relative; 
    width: 95%; 
    max-width: 600px; 
    margin: auto; 
    animation: slideIn 0.3s; 
}
@keyframes fadeIn { 
    from { opacity: 0; } to { opacity: 1; } 
}
@keyframes slideIn { 
    from { transform: translateY(-30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } 
}