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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.dynamic-zempo-8459-body-root {
    background-color: #050A18;
    color: #FFFFFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

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

/* HEADER */
.dynamic-zempo-8459-header-main {
    background-color: rgba(5, 10, 24, 0.95);
    border-bottom: 2px solid #6AA9FF;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(106, 169, 255, 0.2);
}

.dynamic-zempo-8459-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dynamic-zempo-8459-header-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #6AA9FF;
    text-shadow: 0 0 10px rgba(106, 169, 255, 0.5);
}

.dynamic-zempo-8459-header-nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.dynamic-zempo-8459-nav-link {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
}

.dynamic-zempo-8459-nav-link:hover {
    color: #6AA9FF;
}

/* BURGER MENU (NO JS) */
.dynamic-zempo-8459-nav-checkbox {
    display: none;
}

.dynamic-zempo-8459-nav-burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.dynamic-zempo-8459-nav-burger span {
    width: 30px;
    height: 3px;
    background-color: #6AA9FF;
    border-radius: 2px;
}

/* HERO SECTION */
.dynamic-zempo-8459-hero-section {
    padding: 150px 0 80px;
    background: radial-gradient(circle at center, #0B1630 0%, #050A18 100%);
}

.dynamic-zempo-8459-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dynamic-zempo-8459-hero-image-side {
    flex: 1;
    position: relative;
}

.dynamic-zempo-8459-hero-main-img {
    border: 3px solid #6AA9FF;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.3);
}

.dynamic-zempo-8459-hero-mini-gallery {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.dynamic-zempo-8459-gallery-thumb {
    width: 80px;
    height: 80px;
    border: 1px solid #6AA9FF;
    border-radius: 8px;
    object-fit: cover;
}

.dynamic-zempo-8459-hero-text-side {
    flex: 1.2;
}

.dynamic-zempo-8459-h1-title {
    font-size: 3rem;
    color: #6AA9FF;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(106, 169, 255, 0.4);
}

.dynamic-zempo-8459-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #B0D4FF;
}

.dynamic-zempo-8459-hero-para {
    margin-bottom: 20px;
    color: #D1D1D1;
}

/* BUTTONS */
.dynamic-zempo-8459-btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #6AA9FF;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(106, 169, 255, 0.4);
}

.dynamic-zempo-8459-btn-primary:hover {
    background-color: transparent;
    border: 2px solid #6AA9FF;
    color: #6AA9FF;
    box-shadow: 0 0 20px #6AA9FF;
}

.dynamic-zempo-8459-btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #6AA9FF;
    color: #6AA9FF;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
}

.dynamic-zempo-8459-btn-secondary:hover {
    background-color: #6AA9FF;
    color: #FFFFFF;
}

/* REVIEWS */
.dynamic-zempo-8459-reviews-section {
    padding: 80px 0;
    background-color: #091024;
}

.dynamic-zempo-8459-section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #6AA9FF;
    margin-bottom: 50px;
}

.dynamic-zempo-8459-reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.dynamic-zempo-8459-review-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #0B1630;
    padding: 30px;
    border-left: 4px solid #6AA9FF;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.dynamic-zempo-8459-review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.dynamic-zempo-8459-review-author {
    font-weight: 700;
    color: #6AA9FF;
}

/* PRICES */
.dynamic-zempo-8459-price-section {
    padding: 80px 0;
    border-top: 1px solid #1E2A44;
}

.dynamic-zempo-8459-price-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.dynamic-zempo-8459-price-card {
    background: #0B1630;
    border: 1px solid #1E2A44;
    padding: 30px;
    border-radius: 15px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.dynamic-zempo-8459-price-card:hover {
    transform: translateY(-10px);
    border-color: #6AA9FF;
    box-shadow: 0 0 25px rgba(106, 169, 255, 0.2);
}

.dynamic-zempo-8459-card-featured {
    border: 2px solid #6AA9FF;
    background: #0D1C3D;
    transform: scale(1.05);
}

.dynamic-zempo-8459-price-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #6AA9FF;
}

.dynamic-zempo-8459-price-value {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.dynamic-zempo-8459-price-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.dynamic-zempo-8459-price-list li {
    padding: 8px 0;
    border-bottom: 1px solid #1E2A44;
    font-size: 0.9rem;
}

.dynamic-zempo-8459-price-list li::before {
    content: "⚡ ";
    color: #6AA9FF;
}

/* TARGET AUDIENCE */
.dynamic-zempo-8459-target-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #050A18 0%, #091024 100%);
}

.dynamic-zempo-8459-target-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.dynamic-zempo-8459-target-item {
    flex: 1;
    min-width: 350px;
    background: #0B1630;
    padding: 30px;
    border: 1px dashed #6AA9FF;
    border-radius: 12px;
}

.dynamic-zempo-8459-discount-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 12px;
    background-color: #FF6A6A;
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* QUOTE SECTION */
.dynamic-zempo-8459-quote-section {
    padding: 100px 0;
    background-color: #050A18;
}

.dynamic-zempo-8459-quote-box {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #0B1630;
    padding: 50px;
    border-radius: 30px;
    box-shadow: inset 0 0 50px rgba(106, 169, 255, 0.1);
}

.dynamic-zempo-8459-quote-image-wrap {
    flex: 1;
}

.dynamic-zempo-8459-quote-img {
    border-radius: 50%;
    border: 5px solid #6AA9FF;
}

.dynamic-zempo-8459-quote-text-wrap {
    flex: 2;
}

.dynamic-zempo-8459-main-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    color: #B0D4FF;
}

.dynamic-zempo-8459-quote-author {
    font-weight: 700;
    font-size: 1.2rem;
    color: #6AA9FF;
}

/* BENEFITS SECTION */
.dynamic-zempo-8459-benefits-section {
    padding: 80px 0;
}

.dynamic-zempo-8459-benefits-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.dynamic-zempo-8459-benefits-text {
    flex: 1;
}

.dynamic-zempo-8459-benefits-image {
    flex: 1;
}

.dynamic-zempo-8459-benefits-list {
    list-style: none;
}

.dynamic-zempo-8459-benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.dynamic-zempo-8459-benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6AA9FF;
    font-weight: 900;
}

/* TEXT BLOCKS */
.dynamic-zempo-8459-text-block {
    padding: 80px 0;
    background-color: #091024;
}

.dynamic-zempo-8459-text-block-alt {
    padding: 80px 0;
    background-color: #050A18;
}

.dynamic-zempo-8459-text-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #E0E0E0;
}

.dynamic-zempo-8459-simple-list {
    margin-top: 25px;
    list-style: square;
    padding-left: 20px;
}

.dynamic-zempo-8459-simple-list li {
    margin-bottom: 10px;
    color: #6AA9FF;
}

/* FAQ SECTION */
.dynamic-zempo-8459-faq-section {
    padding: 80px 0;
}

.dynamic-zempo-8459-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.dynamic-zempo-8459-faq-item {
    background: #0B1630;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #1E2A44;
}

.dynamic-zempo-8459-faq-question {
    font-weight: 700;
    cursor: pointer;
    color: #6AA9FF;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.dynamic-zempo-8459-faq-question::-webkit-details-marker {
    display: none;
}

.dynamic-zempo-8459-faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.5rem;
}

.dynamic-zempo-8459-faq-item[open] .dynamic-zempo-8459-faq-question::after {
    content: "-";
}

.dynamic-zempo-8459-faq-answer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #1E2A44;
    color: #D1D1D1;
}

/* FORM SECTION */
.dynamic-zempo-8459-form-section {
    padding: 100px 0;
    background: radial-gradient(circle at top, #0D1C3D 0%, #050A18 100%);
}

.dynamic-zempo-8459-form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #0B1630;
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #6AA9FF;
    box-shadow: 0 0 40px rgba(106, 169, 255, 0.2);
}

.dynamic-zempo-8459-form-title {
    text-align: center;
    margin-bottom: 10px;
}

.dynamic-zempo-8459-form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #B0D4FF;
}

.dynamic-zempo-8459-form-group {
    margin-bottom: 25px;
}

.dynamic-zempo-8459-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.dynamic-zempo-8459-input, .dynamic-zempo-8459-textarea {
    width: 100%;
    padding: 15px;
    background: #050A18;
    border: 1px solid #1E2A44;
    color: #FFFFFF;
    border-radius: 5px;
}

.dynamic-zempo-8459-input:focus, .dynamic-zempo-8459-textarea:focus {
    outline: none;
    border-color: #6AA9FF;
}

.dynamic-zempo-8459-form-checkbox-wrap {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dynamic-zempo-8459-form-checkbox-wrap a {
    color: #6AA9FF;
    text-decoration: underline;
}

.dynamic-zempo-8459-btn-submit {
    width: 100%;
    padding: 18px;
    background: #6AA9FF;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
}

.dynamic-zempo-8459-btn-submit:hover {
    box-shadow: 0 0 30px #6AA9FF;
}

/* FOOTER */
.dynamic-zempo-8459-footer {
    padding: 60px 0;
    background-color: #03060F;
    border-top: 1px solid #1E2A44;
    text-align: center;
}

.dynamic-zempo-8459-footer-top {
    margin-bottom: 30px;
}

.dynamic-zempo-8459-footer-top p {
    margin-bottom: 10px;
    color: #A0A0A0;
}

.dynamic-zempo-8459-footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.dynamic-zempo-8459-footer-links a {
    color: #6AA9FF;
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .dynamic-zempo-8459-hero-wrapper, 
    .dynamic-zempo-8459-benefits-flex,
    .dynamic-zempo-8459-quote-box {
        flex-direction: column;
        text-align: center;
    }
    
    .dynamic-zempo-8459-h1-title {
        font-size: 2.2rem;
    }
    
    .dynamic-zempo-8459-price-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .dynamic-zempo-8459-nav-burger {
        display: flex;
        z-index: 1100;
    }
    
    .dynamic-zempo-8459-header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #050A18;
        padding-top: 100px;
        transition: 0.5s;
        border-left: 2px solid #6AA9FF;
    }
    
    .dynamic-zempo-8459-header-nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .dynamic-zempo-8459-nav-checkbox:checked ~ .dynamic-zempo-8459-header-nav {
        right: 0;
    }
    
    .dynamic-zempo-8459-price-card {
        width: 100%;
    }
    
    .dynamic-zempo-8459-section-title {
        font-size: 1.8rem;
    }
}