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

html {
    scroll-behavior: smooth;
}

body.tempo-kylqa-8116-body {
    background-color: #050607;
    color: #e0e0e0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.tempo-kylqa-8116-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY */
.tempo-kylqa-8116-h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.tempo-kylqa-8116-h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    padding-left: 20px;
}

.tempo-kylqa-8116-h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background-color: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

.tempo-kylqa-8116-h2-center {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
}

.tempo-kylqa-8116-h3-cyan {
    color: #5AF3FF;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.tempo-kylqa-8116-neon-text {
    color: #5AF3FF;
    text-shadow: 0 0 15px rgba(90, 243, 255, 0.6);
}

/* BUTTONS */
.tempo-kylqa-8116-btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.3);
}

.tempo-kylqa-8116-btn-primary:hover {
    box-shadow: 0 0 25px #5AF3FF;
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.tempo-kylqa-8116-btn-outline {
    display: inline-block;
    padding: 13px 30px;
    background-color: transparent;
    color: #5AF3FF;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #5AF3FF;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tempo-kylqa-8116-btn-outline:hover {
    background-color: rgba(90, 243, 255, 0.1);
    box-shadow: 0 0 15px #5AF3FF;
}

/* HEADER */
.tempo-kylqa-8116-header {
    background-color: rgba(5, 6, 7, 0.9);
    border-bottom: 1px solid #5AF3FF;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.tempo-kylqa-8116-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #5AF3FF;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.5);
    letter-spacing: 1px;
}

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

.tempo-kylqa-8116-nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.tempo-kylqa-8116-nav-link:hover {
    color: #5AF3FF;
}

.tempo-kylqa-8116-nav-toggle {
    display: none;
}

/* HERO SECTION */
.tempo-kylqa-8116-hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tempo-kylqa-8116-hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tempo-kylqa-8116-hero-image-wrap {
    flex: 1;
}

.tempo-kylqa-8116-hero-img {
    width: 100%;
    height: auto;
    border: 2px solid #5AF3FF;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.2);
    object-fit: cover;
}

.tempo-kylqa-8116-hero-content {
    flex: 1.5;
}

.tempo-kylqa-8116-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #ccc;
}

.tempo-kylqa-8116-hero-text-block {
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 2px solid rgba(90, 243, 255, 0.3);
}

.tempo-kylqa-8116-cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(90, 243, 255, 0.05) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(90, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* PRICE SECTION */
.tempo-kylqa-8116-price-section {
    padding: 100px 0;
    background-color: #0a0b0d;
}

.tempo-kylqa-8116-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tempo-kylqa-8116-price-card {
    background-color: #111417;
    border: 1px solid #1a1e23;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tempo-kylqa-8116-price-card:hover {
    transform: translateY(-10px);
    border-color: #5AF3FF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tempo-kylqa-8116-price-featured {
    border: 2px solid #5AF3FF;
    box-shadow: 0 0 20px rgba(90, 243, 255, 0.1);
    position: relative;
    transform: scale(1.05);
}

.tempo-kylqa-8116-price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.tempo-kylqa-8116-price-val {
    font-size: 2rem;
    font-weight: 800;
    color: #5AF3FF;
    margin-bottom: 25px;
}

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

.tempo-kylqa-8116-price-list li {
    padding: 10px 0;
    border-bottom: 1px solid #1a1e23;
    font-size: 0.95rem;
    color: #bbb;
}

/* TARGET SECTION */
.tempo-kylqa-8116-target-section {
    padding: 100px 0;
}

.tempo-kylqa-8116-target-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.tempo-kylqa-8116-target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tempo-kylqa-8116-target-item {
    padding: 30px;
    background-color: #080a0c;
    border: 1px solid #1a1e23;
    position: relative;
    border-left: 4px solid #5AF3FF;
}

.tempo-kylqa-8116-discount-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #5AF3FF;
    color: #050607;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 15px;
    border-radius: 20px;
}

/* BENEFITS SECTION */
.tempo-kylqa-8116-benefits-section {
    padding: 100px 0;
    background-color: #0a0b0d;
}

.tempo-kylqa-8116-benefits-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.tempo-kylqa-8116-benefits-content {
    flex: 1;
}

.tempo-kylqa-8116-benefits-image {
    flex: 1;
}

.tempo-kylqa-8116-resp-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.tempo-kylqa-8116-custom-list {
    list-style: none;
    margin-top: 30px;
}

.tempo-kylqa-8116-custom-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tempo-kylqa-8116-neon-marker {
    width: 12px;
    height: 12px;
    background-color: #5AF3FF;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 0 10px #5AF3FF;
}

/* QUOTE SECTION */
.tempo-kylqa-8116-quote-section {
    padding: 100px 0;
}

.tempo-kylqa-8116-quote-card {
    background-color: #111417;
    padding: 60px;
    border: 1px solid #1a1e23;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.tempo-kylqa-8116-blockquote {
    font-size: 1.6rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.5;
}

.tempo-kylqa-8116-quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.tempo-kylqa-8116-author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #5AF3FF;
}

.tempo-kylqa-8116-author-info {
    text-align: left;
}

.tempo-kylqa-8116-author-info strong {
    display: block;
    font-size: 1.2rem;
    color: #5AF3FF;
}

/* FAQ SECTION */
.tempo-kylqa-8116-faq-section {
    padding: 100px 0;
    background-color: #0a0b0d;
}

.tempo-kylqa-8116-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.tempo-kylqa-8116-faq-item {
    margin-bottom: 20px;
    border: 1px solid #1a1e23;
    background-color: #111417;
}

.tempo-kylqa-8116-faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tempo-kylqa-8116-faq-item summary::after {
    content: '+';
    color: #5AF3FF;
    font-size: 1.5rem;
}

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

.tempo-kylqa-8116-faq-item p {
    padding: 0 20px 20px;
    color: #bbb;
}

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

.tempo-kylqa-8116-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tempo-kylqa-8116-form-info p {
    margin-bottom: 30px;
}

.tempo-kylqa-8116-contact-details p {
    margin-bottom: 10px;
}

.tempo-kylqa-8116-form-wrap {
    background-color: #111417;
    padding: 40px;
    border: 1px solid #1a1e23;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.tempo-kylqa-8116-input-group {
    margin-bottom: 20px;
}

.tempo-kylqa-8116-input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #5AF3FF;
}

.tempo-kylqa-8116-input-group input,
.tempo-kylqa-8116-input-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #050607;
    border: 1px solid #1a1e23;
    color: #fff;
    border-radius: 4px;
}

.tempo-kylqa-8116-input-group input:focus,
.tempo-kylqa-8116-input-group textarea:focus {
    outline: none;
    border-color: #5AF3FF;
}

.tempo-kylqa-8116-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.tempo-kylqa-8116-checkbox-group a {
    color: #5AF3FF;
}

/* CONTENT BLOCKS */
.tempo-kylqa-8116-content-block {
    padding: 80px 0;
}

.tempo-kylqa-8116-bg-alt {
    background-color: #0a0b0d;
}

.tempo-kylqa-8116-content-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #bbb;
}

.tempo-kylqa-8116-content-block ul {
    margin: 20px 0 20px 40px;
    color: #bbb;
}

.tempo-kylqa-8116-content-block ul li {
    margin-bottom: 10px;
}

/* FOOTER */
.tempo-kylqa-8116-footer {
    background-color: #050607;
    border-top: 1px solid #1a1e23;
    padding: 60px 0 30px;
}

.tempo-kylqa-8116-footer-main {
    text-align: center;
    margin-bottom: 40px;
}

.tempo-kylqa-8116-footer-email a {
    color: #5AF3FF;
    text-decoration: none;
}

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

.tempo-kylqa-8116-footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
}

.tempo-kylqa-8116-footer-links a:hover {
    color: #5AF3FF;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 992px) {
    .tempo-kylqa-8116-hero-grid,
    .tempo-kylqa-8116-benefits-flex,
    .tempo-kylqa-8116-form-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tempo-kylqa-8116-h1 {
        font-size: 2.5rem;
    }

    .tempo-kylqa-8116-hero-content {
        order: 1;
    }

    .tempo-kylqa-8116-hero-image-wrap {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .tempo-kylqa-8116-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #050607;
        display: none;
        border-bottom: 1px solid #5AF3FF;
    }

    .tempo-kylqa-8116-nav-list {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .tempo-kylqa-8116-nav-toggle:checked ~ .tempo-kylqa-8116-nav {
        display: block;
    }

    .tempo-kylqa-8116-nav-btn {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }

    .tempo-kylqa-8116-nav-btn span,
    .tempo-kylqa-8116-nav-btn span::before,
    .tempo-kylqa-8116-nav-btn span::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #5AF3FF;
        transition: 0.3s;
    }

    .tempo-kylqa-8116-nav-btn span::before { top: -8px; }
    .tempo-kylqa-8116-nav-btn span::after { top: 8px; }

    .tempo-kylqa-8116-price-featured {
        transform: scale(1);
    }
}