/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.zenvora-ligraf-9926-body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #000F2B; /* Dark Navy Ink */
    color: #F0F8FF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
.zenvora-ligraf-9926-h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #D9FAFF; /* Ice Blue */
    text-shadow: 0 0 10px rgba(217, 250, 255, 0.3);
}

.zenvora-ligraf-9926-h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #D9FAFF;
    position: relative;
    padding-bottom: 15px;
}

.zenvora-ligraf-9926-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D9FAFF, transparent);
}

.zenvora-ligraf-9926-h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #D9FAFF;
}

.zenvora-ligraf-9926-p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #CBD5E1;
}

.zenvora-ligraf-9926-subtitle {
    font-size: 1.3rem;
    color: #D9FAFF;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Header */
.zenvora-ligraf-9926-header {
    background: rgba(0, 15, 43, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 250, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.zenvora-ligraf-9926-header .zenvora-ligraf-9926-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zenvora-ligraf-9926-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #D9FAFF;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.zenvora-ligraf-9926-nav-toggle {
    display: none;
}

.zenvora-ligraf-9926-nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.zenvora-ligraf-9926-nav-link {
    text-decoration: none;
    color: #F0F8FF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zenvora-ligraf-9926-nav-link:hover {
    color: #D9FAFF;
    text-shadow: 0 0 8px rgba(217, 250, 255, 0.8);
}

/* Mobile Nav */
@media (max-width: 991px) {
    .zenvora-ligraf-9926-nav-btn {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }
    .zenvora-ligraf-9926-nav-btn span,
    .zenvora-ligraf-9926-nav-btn span::before,
    .zenvora-ligraf-9926-nav-btn span::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background-color: #D9FAFF;
        position: absolute;
        transition: 0.3s;
    }
    .zenvora-ligraf-9926-nav-btn span::before { top: -8px; }
    .zenvora-ligraf-9926-nav-btn span::after { bottom: -8px; }

    .zenvora-ligraf-9926-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #000F2B;
        transition: 0.4s;
        padding-top: 50px;
    }
    .zenvora-ligraf-9926-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .zenvora-ligraf-9926-nav-toggle:checked ~ .zenvora-ligraf-9926-nav {
        left: 0;
    }
}

/* Hero Section */
.zenvora-ligraf-9926-hero-section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(217, 250, 255, 0.1);
}

.zenvora-ligraf-9926-hero-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.zenvora-ligraf-9926-hero-gallery {
    flex: 1;
    min-width: 300px;
}

.zenvora-ligraf-9926-img-main {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(217,250,255,0.1);
    margin-bottom: 20px;
}

.zenvora-ligraf-9926-gallery-grid {
    display: flex;
    gap: 15px;
}

.zenvora-ligraf-9926-img-thumb {
    width: calc(33.333% - 10px);
    border-radius: 8px;
    border: 1px solid rgba(217, 250, 255, 0.2);
    transition: 0.3s;
}

.zenvora-ligraf-9926-img-thumb:hover {
    transform: scale(1.05);
    border-color: #D9FAFF;
}

.zenvora-ligraf-9926-hero-text {
    flex: 1;
    min-width: 300px;
}

/* Buttons */
.zenvora-ligraf-9926-btn-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: #D9FAFF;
    color: #000F2B;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid #D9FAFF;
    margin-top: 20px;
}

.zenvora-ligraf-9926-btn-primary:hover {
    background-color: transparent;
    color: #D9FAFF;
    box-shadow: 0 0 20px rgba(217, 250, 255, 0.6);
}

/* Reviews */
.zenvora-ligraf-9926-reviews-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.zenvora-ligraf-9926-reviews-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.zenvora-ligraf-9926-review-card {
    flex: 1;
    min-width: 300px;
    background: rgba(217, 250, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(217, 250, 255, 0.1);
    transition: 0.3s;
}

.zenvora-ligraf-9926-review-card:hover {
    transform: translateY(-10px);
    border-color: #D9FAFF;
    background: rgba(217, 250, 255, 0.08);
}

.zenvora-ligraf-9926-review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #F0F8FF;
}

.zenvora-ligraf-9926-review-author {
    font-weight: bold;
    color: #D9FAFF;
}

/* Pricing */
.zenvora-ligraf-9926-pricing-section {
    padding: 80px 0;
}

.zenvora-ligraf-9926-pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.zenvora-ligraf-9926-price-card {
    flex: 1;
    min-width: 280px;
    background: rgba(0, 15, 43, 0.5);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(217, 250, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zenvora-ligraf-9926-price-card-popular {
    border: 2px solid #D9FAFF;
    box-shadow: 0 0 30px rgba(217, 250, 255, 0.1);
    transform: scale(1.05);
}

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

.zenvora-ligraf-9926-price-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.zenvora-ligraf-9926-price-list li {
    margin-bottom: 12px;
    color: #CBD5E1;
}

.zenvora-ligraf-9926-quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zenvora-ligraf-9926-quick-link {
    text-decoration: none;
    color: #D9FAFF;
    padding: 10px;
    border: 1px solid rgba(217, 250, 255, 0.4);
    border-radius: 4px;
    transition: 0.3s;
}

.zenvora-ligraf-9926-quick-link:hover {
    background: #D9FAFF;
    color: #000F2B;
}

/* Audience */
.zenvora-ligraf-9926-audience-section {
    padding: 80px 0;
}

.zenvora-ligraf-9926-img-wide {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 40px;
    object-fit: cover;
}

.zenvora-ligraf-9926-audience-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
    list-style: none;
}

.zenvora-ligraf-9926-audience-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-left: 3px solid #D9FAFF;
}

/* Expert Section */
.zenvora-ligraf-9926-expert-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(217, 250, 255, 0.05) 0%, transparent 70%);
}

.zenvora-ligraf-9926-expert-quote-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid rgba(217, 250, 255, 0.2);
    border-radius: 20px;
    position: relative;
}

.zenvora-ligraf-9926-blockquote {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #F0F8FF;
}

.zenvora-ligraf-9926-cite {
    display: block;
    font-size: 1.1rem;
    color: #D9FAFF;
    margin-bottom: 20px;
}

.zenvora-ligraf-9926-details {
    margin-top: 20px;
}

.zenvora-ligraf-9926-summary {
    cursor: pointer;
    color: #D9FAFF;
    text-decoration: underline;
    margin-bottom: 10px;
}

.zenvora-ligraf-9926-expert-list {
    list-style: circle;
    padding-left: 20px;
    margin-top: 15px;
}

/* Benefits Section */
.zenvora-ligraf-9926-benefit-section {
    padding: 80px 0;
}

.zenvora-ligraf-9926-benefit-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.zenvora-ligraf-9926-benefit-text, .zenvora-ligraf-9926-benefit-photo {
    flex: 1;
    min-width: 300px;
}

.zenvora-ligraf-9926-img-rounded {
    width: 100%;
    border-radius: 50% 10% 50% 10%;
    border: 2px solid rgba(217, 250, 255, 0.3);
}

.zenvora-ligraf-9926-benefit-list {
    margin-top: 25px;
    list-style: none;
}

.zenvora-ligraf-9926-benefit-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.zenvora-ligraf-9926-benefit-list li::before {
    content: '❄';
    position: absolute;
    left: 0;
    color: #D9FAFF;
}

/* FAQ Section */
.zenvora-ligraf-9926-faq-section {
    padding: 80px 0;
}

.zenvora-ligraf-9926-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.zenvora-ligraf-9926-faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(217, 250, 255, 0.1);
    border-radius: 8px;
    background: rgba(217, 250, 255, 0.02);
}

.zenvora-ligraf-9926-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #D9FAFF;
    list-style: none;
    position: relative;
}

.zenvora-ligraf-9926-faq-summary::after {
    content: '+';
    position: absolute;
    right: 20px;
}

.zenvora-ligraf-9926-faq-item[open] .zenvora-ligraf-9926-faq-summary::after {
    content: '-';
}

.zenvora-ligraf-9926-faq-content {
    padding: 0 20px 20px;
    color: #CBD5E1;
}

/* Form Section */
.zenvora-ligraf-9926-form-section {
    padding: 100px 0;
    background: linear-gradient(0deg, #000F2B 0%, rgba(217, 250, 255, 0.05) 100%);
}

.zenvora-ligraf-9926-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 15, 43, 0.8);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(217, 250, 255, 0.2);
}

.zenvora-ligraf-9926-form-group {
    margin-bottom: 20px;
}

.zenvora-ligraf-9926-label {
    display: block;
    margin-bottom: 8px;
    color: #D9FAFF;
}

.zenvora-ligraf-9926-input, .zenvora-ligraf-9926-textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 250, 255, 0.3);
    color: #fff;
    border-radius: 4px;
}

.zenvora-ligraf-9926-textarea {
    height: 120px;
}

.zenvora-ligraf-9926-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.zenvora-ligraf-9926-btn-submit {
    width: 100%;
    padding: 15px;
    background: #D9FAFF;
    color: #000F2B;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.zenvora-ligraf-9926-btn-submit:hover {
    box-shadow: 0 0 20px #D9FAFF;
}

/* Extra Text Sections */
.zenvora-ligraf-9926-extra-text-section {
    padding: 80px 0;
}

.zenvora-ligraf-9926-bg-alt {
    background: rgba(255, 255, 255, 0.01);
}

.zenvora-ligraf-9926-extra-list {
    margin: 20px 0;
    padding-left: 20px;
    color: #CBD5E1;
}

.zenvora-ligraf-9926-info-box {
    margin-top: 30px;
    padding: 30px;
    background: rgba(217, 250, 255, 0.03);
    border: 1px dashed rgba(217, 250, 255, 0.4);
}

/* Footer */
.zenvora-ligraf-9926-footer {
    padding: 60px 0;
    border-top: 1px solid rgba(217, 250, 255, 0.1);
    background: #000817;
}

.zenvora-ligraf-9926-footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.zenvora-ligraf-9926-footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #D9FAFF;
}

.zenvora-ligraf-9926-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.zenvora-ligraf-9926-footer-links a {
    color: #64748B;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.zenvora-ligraf-9926-footer-links a:hover {
    color: #D9FAFF;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .zenvora-ligraf-9926-h1 { font-size: 2.2rem; }
    .zenvora-ligraf-9926-h2 { font-size: 1.8rem; }
    .zenvora-ligraf-9926-hero-section { padding: 60px 0; }
    .zenvora-ligraf-9926-form-wrapper { padding: 30px; }
    .zenvora-ligraf-9926-price-card-popular { transform: none; }
}