/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.motion-morda-8115-body-wrapper {
    background-color: #050A18;
    color: #E0E0E0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* HEADER */
.motion-morda-8115-header-main {
    background-color: rgba(5, 10, 24, 0.95);
    border-bottom: 2px solid #6AA9FF33;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(106, 169, 255, 0.1);
}

.motion-morda-8115-container-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.motion-morda-8115-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #6AA9FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.motion-morda-8115-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.motion-morda-8115-nav-item {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.motion-morda-8115-nav-item:hover {
    color: #6AA9FF;
}

.motion-morda-8115-nav-item-btn {
    background-color: #6AA9FF;
    color: #050A18;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.motion-morda-8115-nav-item-btn:hover {
    box-shadow: 0 0 15px #6AA9FF;
    transform: translateY(-2px);
}

.motion-morda-8115-checkbox-hide {
    display: none;
}

.motion-morda-8115-burger-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.motion-morda-8115-burger-icon span {
    width: 25px;
    height: 3px;
    background-color: #6AA9FF;
    border-radius: 2px;
}

/* HERO SECTION */
.motion-morda-8115-hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.motion-morda-8115-container-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.motion-morda-8115-hero-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.motion-morda-8115-hero-image-box {
    flex: 1 1 450px;
}

.motion-morda-8115-hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 30px 30px 0px rgba(106, 169, 255, 0.05);
    object-fit: cover;
}

.motion-morda-8115-hero-content-box {
    flex: 1 1 500px;
}

.motion-morda-8115-h1-main {
    font-size: 42px;
    color: #FFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.motion-morda-8115-hero-sub {
    font-size: 18px;
    margin-bottom: 35px;
    color: #B0B0B0;
}

.motion-morda-8115-hero-text-blocks {
    margin-bottom: 40px;
}

.motion-morda-8115-hero-text-item {
    margin-bottom: 20px;
    border-left: 3px solid #6AA9FF;
    padding-left: 20px;
}

.motion-morda-8115-h3-hero {
    color: #6AA9FF;
    font-size: 20px;
    margin-bottom: 5px;
}

.motion-morda-8115-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #6AA9FF;
    color: #050A18;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.motion-morda-8115-cta-button:hover {
    background-color: transparent;
    color: #6AA9FF;
    border-color: #6AA9FF;
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.3);
}

/* AUDIENCE SECTION */
.motion-morda-8115-audience-section {
    padding: 100px 0;
    background-color: #080E1F;
}

.motion-morda-8115-h2-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #FFF;
}

.motion-morda-8115-audience-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #B0B0B0;
}

.motion-morda-8115-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.motion-morda-8115-audience-card {
    background: #0A1428;
    padding: 40px;
    border: 1px solid #6AA9FF1A;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease;
}

.motion-morda-8115-audience-card:hover {
    transform: translateY(-10px);
    border-color: #6AA9FF44;
}

.motion-morda-8115-line-decor {
    display: block;
    width: 50px;
    height: 4px;
    background-color: #6AA9FF;
    margin-bottom: 20px;
}

.motion-morda-8115-discount-tag {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #6AA9FF;
    color: #050A18;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
}

/* PRICING */
.motion-morda-8115-pricing-section {
    padding: 100px 0;
}

.motion-morda-8115-pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.motion-morda-8115-price-card {
    flex: 1 1 350px;
    max-width: 400px;
    background: #0D1B33;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1A2E4E;
    transition: all 0.4s ease;
}

.motion-morda-8115-card-inner {
    padding: 40px;
}

.motion-morda-8115-card-featured {
    border: 2px solid #6AA9FF;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(106, 169, 255, 0.15);
}

.motion-morda-8115-price-name {
    font-size: 24px;
    color: #6AA9FF;
    margin-bottom: 15px;
    text-align: center;
}

.motion-morda-8115-price-value {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

.motion-morda-8115-price-list {
    list-style: none;
    margin-bottom: 40px;
}

.motion-morda-8115-price-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #CCC;
}

.motion-morda-8115-price-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

.motion-morda-8115-quick-links a {
    display: block;
    text-align: center;
    padding: 15px;
    background: #1A2E4E;
    color: #FFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.motion-morda-8115-card-featured .motion-morda-8115-quick-links a {
    background: #6AA9FF;
    color: #050A18;
}

/* BENEFITS */
.motion-morda-8115-benefits-section {
    padding: 100px 0;
    background-color: #080E1F;
}

.motion-morda-8115-benefits-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap-reverse;
}

.motion-morda-8115-benefits-content {
    flex: 1 1 500px;
}

.motion-morda-8115-benefits-ul {
    list-style: none;
    margin-top: 30px;
}

.motion-morda-8115-benefits-ul li {
    margin-bottom: 25px;
    font-size: 17px;
}

.motion-morda-8115-benefits-ul li strong {
    color: #6AA9FF;
    display: block;
    margin-bottom: 5px;
}

.motion-morda-8115-benefits-img-box {
    flex: 1 1 450px;
}

.motion-morda-8115-benefits-img {
    width: 100%;
    border-radius: 12px;
}

/* QUOTE */
.motion-morda-8115-quote-section {
    padding: 100px 0;
}

.motion-morda-8115-quote-box {
    max-width: 900px;
    margin: 0 auto;
    background: #0D1B33;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #6AA9FF22;
}

.motion-morda-8115-blockquote {
    font-size: 28px;
    font-style: italic;
    color: #EEE;
    margin-bottom: 30px;
    line-height: 1.4;
}

.motion-morda-8115-quote-author {
    margin-bottom: 40px;
}

.motion-morda-8115-author-name {
    display: block;
    font-weight: 700;
    color: #6AA9FF;
    font-size: 20px;
}

.motion-morda-8115-author-desc {
    color: #888;
}

.motion-morda-8115-expandable-list {
    text-align: left;
    border-top: 1px solid #1A2E4E;
    padding-top: 30px;
}

.motion-morda-8115-h4-list {
    margin-bottom: 15px;
    color: #FFF;
}

.motion-morda-8115-simple-ul {
    columns: 2;
    list-style: square;
    padding-left: 20px;
    color: #B0B0B0;
}

/* TEXT SECTIONS */
.motion-morda-8115-info-block-one, 
.motion-morda-8115-info-block-two, 
.motion-morda-8115-info-block-three {
    padding: 80px 0;
}

.motion-morda-8115-long-text p {
    margin-bottom: 20px;
    color: #B0B0B0;
    font-size: 18px;
}

.motion-morda-8115-text-list {
    list-style: none;
    margin-top: 30px;
}

.motion-morda-8115-text-list li {
    padding: 15px;
    background: #0D1B33;
    margin-bottom: 10px;
    border-radius: 6px;
}

.motion-morda-8115-tips-box {
    background: #6AA9FF11;
    border: 1px dashed #6AA9FF;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.motion-morda-8115-h4-tips {
    color: #6AA9FF;
    margin-bottom: 15px;
}

/* FAQ */
.motion-morda-8115-faq-section {
    padding: 100px 0;
    background: #080E1F;
}

.motion-morda-8115-faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.motion-morda-8115-faq-item {
    background: #0D1B33;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.motion-morda-8115-faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #6AA9FF;
    outline: none;
    list-style: none;
}

.motion-morda-8115-faq-item summary::-webkit-details-marker {
    display: none;
}

.motion-morda-8115-faq-item p {
    padding: 0 20px 20px;
    color: #B0B0B0;
}

/* FORM */
.motion-morda-8115-form-section {
    padding: 100px 0;
}

.motion-morda-8115-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #0D1B33;
    padding: 50px;
    border-radius: 16px;
}

.motion-morda-8115-form-sub {
    text-align: center;
    margin-bottom: 40px;
    color: #888;
}

.motion-morda-8115-form-group {
    margin-bottom: 25px;
}

.motion-morda-8115-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.motion-morda-8115-form-group input, 
.motion-morda-8115-form-group textarea {
    width: 100%;
    padding: 15px;
    background: #050A18;
    border: 1px solid #1A2E4E;
    border-radius: 6px;
    color: #FFF;
    font-family: inherit;
}

.motion-morda-8115-checkbox-group {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.motion-morda-8115-checkbox-group a {
    color: #6AA9FF;
    text-decoration: underline;
}

.motion-morda-8115-submit-btn {
    width: 100%;
    padding: 18px;
    background: #6AA9FF;
    border: none;
    border-radius: 6px;
    color: #050A18;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.motion-morda-8115-submit-btn:hover {
    box-shadow: 0 0 25px rgba(106, 169, 255, 0.4);
    transform: translateY(-2px);
}

/* FOOTER */
.motion-morda-8115-footer {
    padding: 60px 0;
    border-top: 1px solid #1A2E4E;
    background: #050A18;
}

.motion-morda-8115-footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.motion-morda-8115-footer-brand {
    font-size: 20px;
    font-weight: 700;
    color: #6AA9FF;
    margin-bottom: 10px;
}

.motion-morda-8115-footer-contact a {
    color: #FFF;
    text-decoration: none;
}

.motion-morda-8115-footer-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.motion-morda-8115-footer-bottom a {
    color: #666;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.motion-morda-8115-footer-bottom a:hover {
    color: #6AA9FF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .motion-morda-8115-hero-flex, 
    .motion-morda-8115-benefits-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .motion-morda-8115-hero-text-item {
        text-align: left;
    }
    
    .motion-morda-8115-card-featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .motion-morda-8115-burger-icon {
        display: flex;
    }

    .motion-morda-8115-nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: #0A1428;
        flex-direction: column;
        padding-top: 50px;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    #motion-morda-8115-menu-toggle:checked ~ .motion-morda-8115-nav-links {
        right: 0;
    }

    .motion-morda-8115-h1-main {
        font-size: 32px;
    }

    .motion-morda-8115-form-wrapper {
        padding: 30px;
    }
}