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

body.tempo-zandri-9621-body-root {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0A0D10; /* Dark Graphite */
    color: #E6FBFF; /* Light Ice */
    line-height: 1.6;
    overflow-x: hidden;
}

.tempo-zandri-9621-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img.tempo-zandri-9621-img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

p.tempo-zandri-9621-body-txt {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #cbd5e0;
}

/* HEADER STYLES */
.tempo-zandri-9621-header-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 13, 16, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(230, 251, 255, 0.2);
    padding: 15px 0;
}

.tempo-zandri-9621-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tempo-zandri-9621-logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #E6FBFF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tempo-zandri-9621-nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

.tempo-zandri-9621-nav-link {
    text-decoration: none;
    color: #E6FBFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.tempo-zandri-9621-nav-link:hover {
    color: #a0aec0;
}

/* BURGER MENU (No JS) */
.tempo-zandri-9621-menu-checkbox {
    display: none;
}

.tempo-zandri-9621-burger-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.tempo-zandri-9621-burger-btn span {
    width: 30px;
    height: 3px;
    background-color: #E6FBFF;
    transition: 0.3s;
}

/* HERO SECTION */
.tempo-zandri-9621-hero-section {
    padding: 100px 0;
}

.tempo-zandri-9621-red-outline-box {
    border: 2px solid #ff4d4d; /* Required Red Outline */
    padding: 40px;
    border-radius: 8px;
}

.tempo-zandri-9621-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.tempo-zandri-9621-h1-title {
    font-size: 3rem;
    margin-bottom: 25px;
}

.tempo-zandri-9621-lead-text {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #E6FBFF;
}

.tempo-zandri-9621-hero-cta {
    margin-top: 30px;
}

/* BUTTONS */
.tempo-zandri-9621-btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #E6FBFF;
    color: #0A0D10;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 1px solid #E6FBFF;
}

.tempo-zandri-9621-btn-primary:hover {
    background-color: transparent;
    color: #E6FBFF;
    box-shadow: 0 0 15px rgba(230, 251, 255, 0.4);
}

.tempo-zandri-9621-btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #E6FBFF;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #E6FBFF;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tempo-zandri-9621-btn-secondary:hover {
    background-color: #E6FBFF;
    color: #0A0D10;
}

/* REVIEWS SECTION */
.tempo-zandri-9621-reviews-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.tempo-zandri-9621-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.tempo-zandri-9621-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tempo-zandri-9621-review-card {
    background: #14181d;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #E6FBFF;
}

.tempo-zandri-9621-review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.tempo-zandri-9621-review-author {
    font-weight: 700;
    color: #E6FBFF;
}

/* PRICING SECTION */
.tempo-zandri-9621-pricing-section {
    padding: 100px 0;
}

.tempo-zandri-9621-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tempo-zandri-9621-price-card {
    background: #1a1f26;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(230, 251, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.tempo-zandri-9621-price-featured {
    border: 2px solid #E6FBFF;
    transform: scale(1.05);
    background: #1f252d;
}

.tempo-zandri-9621-price-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.tempo-zandri-9621-price-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #E6FBFF;
}

.tempo-zandri-9621-price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.tempo-zandri-9621-price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tempo-zandri-9621-price-quick-links {
    margin-bottom: 20px;
}

.tempo-zandri-9621-price-quick-links a {
    color: #cbd5e0;
    font-size: 0.85rem;
    text-decoration: underline;
}

/* AUDIENCE SECTION */
.tempo-zandri-9621-audience-section {
    padding: 100px 0;
    background: #0d1116;
}

.tempo-zandri-9621-audience-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.tempo-zandri-9621-check-list {
    list-style: none;
    margin: 25px 0;
}

.tempo-zandri-9621-check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.tempo-zandri-9621-check-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E6FBFF;
}

.tempo-zandri-9621-product-highlight {
    margin-top: 40px;
    padding: 25px;
    border: 1px dashed #E6FBFF;
    background: rgba(230, 251, 255, 0.03);
}

.tempo-zandri-9621-highlight-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 10px;
    color: #E6FBFF;
}

.tempo-zandri-9621-border-ice {
    border: 10px solid #1a1f26;
    box-shadow: 0 0 20px rgba(230, 251, 255, 0.1);
}

/* PRACTITIONER SECTION */
.tempo-zandri-9621-practitioner-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0A0D10 0%, #151920 100%);
}

.tempo-zandri-9621-quote-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tempo-zandri-9621-blockquote {
    font-size: 2rem;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 30px;
    color: #E6FBFF;
}

.tempo-zandri-9621-cite {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* BENEFITS SECTION */
.tempo-zandri-9621-benefits-section {
    padding: 100px 0;
}

.tempo-zandri-9621-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.tempo-zandri-9621-list-detailed {
    list-style: none;
    margin-top: 30px;
}

.tempo-zandri-9621-list-detailed li {
    margin-bottom: 25px;
}

.tempo-zandri-9621-list-detailed li strong {
    display: block;
    color: #E6FBFF;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* FAQ SECTION */
.tempo-zandri-9621-faq-section {
    padding: 100px 0;
    background-color: #0d1116;
}

.tempo-zandri-9621-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.tempo-zandri-9621-faq-item {
    border-bottom: 1px solid rgba(230, 251, 255, 0.1);
    padding: 20px 0;
}

.tempo-zandri-9621-faq-summary {
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.tempo-zandri-9621-faq-summary::-webkit-details-marker {
    display: none;
}

.tempo-zandri-9621-faq-summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
}

.tempo-zandri-9621-faq-item[open] .tempo-zandri-9621-faq-summary::after {
    content: '-';
}

.tempo-zandri-9621-faq-content {
    margin-top: 15px;
    color: #cbd5e0;
}

/* FORM SECTION */
.tempo-zandri-9621-form-section {
    padding: 100px 0;
}

.tempo-zandri-9621-form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1f26;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.tempo-zandri-9621-form-title {
    text-align: center;
    margin-bottom: 10px;
}

.tempo-zandri-9621-form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #a0aec0;
}

.tempo-zandri-9621-input-group {
    margin-bottom: 25px;
}

.tempo-zandri-9621-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.tempo-zandri-9621-input-group input,
.tempo-zandri-9621-input-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #0d1116;
    border: 1px solid rgba(230, 251, 255, 0.2);
    border-radius: 4px;
    color: #E6FBFF;
    font-size: 1rem;
}

.tempo-zandri-9621-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.tempo-zandri-9621-checkbox-group a {
    color: #E6FBFF;
}

.tempo-zandri-9621-btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #E6FBFF;
    color: #0A0D10;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.tempo-zandri-9621-btn-submit:hover {
    box-shadow: 0 0 20px rgba(230, 251, 255, 0.5);
    transform: translateY(-2px);
}

/* TEXT BLOCK SECTIONS */
.tempo-zandri-9621-text-block-section {
    padding: 100px 0;
}

.tempo-zandri-9621-bg-alt {
    background-color: #0d1116;
}

.tempo-zandri-9621-h3-title {
    font-size: 2rem;
    border-left: 4px solid #E6FBFF;
    padding-left: 20px;
}

.tempo-zandri-9621-bullet-list {
    margin: 20px 0;
    padding-left: 20px;
}

.tempo-zandri-9621-bullet-list li {
    margin-bottom: 10px;
}

/* FOOTER STYLES */
.tempo-zandri-9621-footer-main {
    background-color: #050709;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(230, 251, 255, 0.05);
}

.tempo-zandri-9621-footer-content {
    text-align: center;
}

.tempo-zandri-9621-footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tempo-zandri-9621-footer-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tempo-zandri-9621-footer-links a {
    color: #718096;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.tempo-zandri-9621-footer-links a:hover {
    color: #E6FBFF;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .tempo-zandri-9621-hero-grid,
    .tempo-zandri-9621-audience-layout,
    .tempo-zandri-9621-benefits-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tempo-zandri-9621-hero-image-box,
    .tempo-zandri-9621-audience-visual,
    .tempo-zandri-9621-benefits-image {
        order: -1;
    }

    .tempo-zandri-9621-reviews-grid,
    .tempo-zandri-9621-pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tempo-zandri-9621-burger-btn {
        display: flex;
    }

    .tempo-zandri-9621-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0A0D10;
        transition: 0.4s;
        padding-top: 50px;
    }

    .tempo-zandri-9621-nav-list {
        flex-direction: column;
        align-items: center;
    }

    .tempo-zandri-9621-menu-checkbox:checked ~ .tempo-zandri-9621-navigation {
        left: 0;
    }

    .tempo-zandri-9621-h1-title {
        font-size: 2.2rem;
    }

    .tempo-zandri-9621-reviews-grid,
    .tempo-zandri-9621-pricing-grid {
        grid-template-columns: 1fr;
    }

    .tempo-zandri-9621-price-featured {
        transform: scale(1);
    }
}