/* RESET AND BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.pelv-selvora-9401-body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #000F2B; /* Темно-синій майже чорний */
    color: #D9FAFF; /* Айс-блакитний */
    line-height: 1.6;
    overflow-x: hidden;
}

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

img.ps9401-img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    color: #D9FAFF;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ps9401-h2-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.ps9401-h2-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #D9FAFF;
    margin: 20px auto 0;
    box-shadow: 0 0 10px #D9FAFF;
}

/* HEADER STYLE */
.pelv-selvora-9401-header {
    background: rgba(0, 15, 43, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 250, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.ps9401-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.pelv-selvora-9401-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #D9FAFF;
    text-transform: uppercase;
}

.ps9401-menu-toggle-input {
    display: none;
}

.ps9401-burger-label {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.ps9401-burger-label span {
    width: 100%;
    height: 2px;
    background: #D9FAFF;
    transition: 0.3s;
}

.pelv-selvora-9401-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.ps9401-nav-link {
    text-decoration: none;
    color: #D9FAFF;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

.ps9401-nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #D9FAFF;
}

/* HERO SECTION */
.ps9401-hero-section {
    padding: 160px 0 80px;
}

.ps9401-hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.ps9401-hero-image-side, .ps9401-hero-content-side {
    flex: 1;
}

.ps9401-h1-main {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.ps9401-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(217, 250, 255, 0.8);
    margin-bottom: 30px;
}

.ps9401-hero-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: rgba(217, 250, 255, 0.7);
}

.ps9401-hero-extra-blocks {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.ps9401-extra-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 250, 255, 0.1);
    padding: 20px;
    border-radius: 4px;
    transition: transform 0.3s;
}

.ps9401-extra-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.ps9401-extra-item img {
    border-radius: 4px;
    margin-bottom: 15px;
}

.ps9401-extra-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* BUTTONS */
.ps9401-btn-primary {
    display: inline-block;
    background: #D9FAFF;
    color: #000F2B;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.ps9401-btn-primary:hover {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(217, 250, 255, 0.6);
}

.ps9401-btn-secondary {
    display: inline-block;
    background: transparent;
    color: #D9FAFF;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #D9FAFF;
    border-radius: 2px;
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
}

.ps9401-btn-secondary:hover {
    background: rgba(217, 250, 255, 0.1);
    box-shadow: 0 0 10px rgba(217, 250, 255, 0.3);
}

.ps9401-btn-wide {
    width: 100%;
}

/* PRICE SECTION */
.ps9401-price-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.ps9401-price-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ps9401-price-card {
    flex: 1;
    min-width: 250px;
    padding: 2px;
    background: rgba(217, 250, 255, 0.1);
    border-radius: 4px;
    transition: 0.3s;
}

.ps9401-card-inner {
    background: #000F2B;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ps9401-price-card:hover {
    background: #D9FAFF;
    transform: scale(1.02);
}

.ps9401-card-featured {
    background: #D9FAFF;
    transform: scale(1.05);
    z-index: 10;
}

.ps9401-price-val {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
    color: #D9FAFF;
}

.ps9401-price-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.ps9401-price-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(217, 250, 255, 0.1);
    font-size: 0.95rem;
}

.ps9401-price-list li::before {
    content: '❄';
    margin-right: 10px;
    color: #D9FAFF;
}

/* FOR WHOM SECTION */
.ps9401-for-whom-section {
    padding: 100px 0;
}

.ps9401-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: rgba(217, 250, 255, 0.8);
}

.ps9401-for-whom-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ps9401-for-whom-list-box {
    flex: 1;
}

.ps9401-custom-list {
    list-style: none;
}

.ps9401-custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.ps9401-custom-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D9FAFF;
    font-weight: bold;
}

.ps9401-for-whom-image {
    flex: 1;
    position: relative;
}

.ps9401-rounded {
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.ps9401-product-label {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #D9FAFF;
    color: #000F2B;
    padding: 20px;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* BENEFITS SECTION */
.ps9401-benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000F2B 0%, #001a3d 100%);
}

.ps9401-benefits-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ps9401-benefits-content {
    flex: 1;
}

.ps9401-benefits-image {
    flex: 1;
}

.ps9401-benefits-list {
    list-style: none;
    margin-top: 30px;
}

.ps9401-benefits-list li {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #D9FAFF;
}

.ps9401-benefits-list li strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #D9FAFF;
}

/* EXPERT QUOTE */
.ps9401-expert-section {
    padding: 100px 0;
}

.ps9401-quote-box {
    background: rgba(217, 250, 255, 0.03);
    border: 1px solid rgba(217, 250, 255, 0.1);
    padding: 60px;
    border-radius: 8px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ps9401-quote-box::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 10rem;
    color: rgba(217, 250, 255, 0.05);
    line-height: 1;
}

.ps9401-quote-text {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.ps9401-expert-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ps9401-expert-avatar {
    border-radius: 50%;
    border: 2px solid #D9FAFF;
}

.ps9401-expert-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}

.ps9401-expert-desc {
    display: block;
    font-size: 0.9rem;
    color: rgba(217, 250, 255, 0.6);
}

/* FAQ SECTION */
.ps9401-faq-section {
    padding: 100px 0;
}

.ps9401-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.ps9401-faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 250, 255, 0.1);
    border-radius: 4px;
}

.ps9401-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ps9401-faq-summary::after {
    content: '+';
    font-size: 1.5rem;
}

.ps9401-faq-item[open] .ps9401-faq-summary::after {
    content: '-';
}

.ps9401-faq-answer {
    padding: 0 20px 20px;
    color: rgba(217, 250, 255, 0.8);
}

/* TEXT SECTIONS */
.ps9401-text-section {
    padding: 100px 0;
}

.ps9401-bg-alt {
    background: rgba(255, 255, 255, 0.02);
}

.ps9401-rich-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.ps9401-rich-text p {
    margin-bottom: 25px;
}

.ps9401-rich-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.ps9401-rich-text li {
    margin-bottom: 10px;
}

/* FORM SECTION */
.ps9401-form-section {
    padding: 100px 0;
    background: #001a3d;
}

.ps9401-form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #000F2B;
    padding: 60px;
    border: 1px solid #D9FAFF;
    box-shadow: 0 0 40px rgba(217, 250, 255, 0.1);
}

.ps9401-form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: rgba(217, 250, 255, 0.7);
}

.ps9401-form-group {
    margin-bottom: 25px;
}

.ps9401-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.ps9401-form-group input, .ps9401-form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 250, 255, 0.2);
    padding: 12px 15px;
    color: #fff;
    border-radius: 2px;
}

.ps9401-form-group input:focus, .ps9401-form-group textarea:focus {
    outline: none;
    border-color: #D9FAFF;
    box-shadow: 0 0 10px rgba(217, 250, 255, 0.2);
}

.ps9401-form-checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ps9401-form-checkbox input {
    margin-top: 5px;
}

.ps9401-form-checkbox label {
    font-size: 0.9rem;
}

.ps9401-form-checkbox a {
    color: #D9FAFF;
}

/* FOOTER */
.pelv-selvora-9401-footer {
    padding: 80px 0 40px;
    background: #000F2B;
    border-top: 1px solid rgba(217, 250, 255, 0.1);
}

.ps9401-footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.ps9401-footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ps9401-footer-contact p {
    margin-bottom: 10px;
    color: rgba(217, 250, 255, 0.7);
}

.ps9401-footer-contact a {
    color: #D9FAFF;
    text-decoration: none;
}

.ps9401-footer-mid {
    text-align: center;
    border-top: 1px solid rgba(217, 250, 255, 0.05);
    padding: 30px 0;
    color: rgba(217, 250, 255, 0.5);
    font-size: 0.9rem;
}

.ps9401-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ps9401-footer-links a {
    color: rgba(217, 250, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.ps9401-footer-links a:hover {
    color: #D9FAFF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ps9401-hero-grid, .ps9401-for-whom-content, .ps9401-benefits-grid {
        flex-direction: column;
    }
    
    .ps9401-hero-extra-blocks {
        flex-wrap: wrap;
    }
    
    .ps9401-h1-main {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .ps9401-burger-label {
        display: flex;
        z-index: 1001;
    }
    
    .pelv-selvora-9401-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #000F2B;
        padding-top: 100px;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .pelv-selvora-9401-nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .ps9401-menu-toggle-input:checked ~ .pelv-selvora-9401-nav {
        right: 0;
    }
    
    .ps9401-menu-toggle-input:checked ~ .ps9401-burger-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .ps9401-menu-toggle-input:checked ~ .ps9401-burger-label span:nth-child(2) {
        opacity: 0;
    }
    
    .ps9401-menu-toggle-input:checked ~ .ps9401-burger-label span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .ps9401-h2-title {
        font-size: 2rem;
    }
    
    .ps9401-form-card {
        padding: 30px 20px;
    }
}