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

:root {
    --bg-deep: #060708;
    --accent: #FFC55E;
    --accent-hover: #ffd180;
    --text-light: #f4f4f4;
    --text-dim: #a0a0a0;
    --card-bg: #111214;
    --border-color: #2a2c30;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body.tempo-bexvo-body-wrapper {
    background-color: var(--bg-deep);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
}

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

.tempo-bexvo-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header & Nav */
.tempo-bexvo-header-main {
    background-color: var(--bg-deep);
    border-bottom: 2px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.tempo-bexvo-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.tempo-bexvo-nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.tempo-bexvo-nav-link:hover {
    color: var(--accent);
}

/* Burger Menu (No JS) */
.tempo-bexvo-nav-checkbox {
    display: none;
}

.tempo-bexvo-burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.tempo-bexvo-burger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--accent);
    transition: 0.3s;
}

/* Hero Section */
.tempo-bexvo-hero-block {
    padding: 80px 0;
}

.tempo-bexvo-hero-flex-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.tempo-bexvo-hero-image-col, .tempo-bexvo-hero-content-col {
    flex: 1;
}

.tempo-bexvo-hero-main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
}

.tempo-bexvo-hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
}

.tempo-bexvo-hero-subtitle {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.tempo-bexvo-hero-desc {
    margin-bottom: 20px;
    color: var(--text-dim);
}

.tempo-bexvo-btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent);
    color: var(--bg-deep);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 197, 94, 0.3);
}

.tempo-bexvo-btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 20px var(--accent);
    transform: translateY(-2px);
}

/* Hero Sub Grid */
.tempo-bexvo-hero-sub-grid {
    display: flex;
    gap: 30px;
}

.tempo-bexvo-hero-card {
    flex: 1;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.tempo-bexvo-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.tempo-bexvo-card-title {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 18px;
}

.tempo-bexvo-card-text {
    font-size: 14px;
    color: var(--text-dim);
}

/* Testimonials Slider (Pure CSS) */
.tempo-bexvo-feedback-block {
    padding: 100px 0;
    background-color: #0c0d0f;
}

.tempo-bexvo-section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

.tempo-bexvo-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 15px auto 0;
}

.tempo-bexvo-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.tempo-bexvo-radio-hide {
    display: none;
}

.tempo-bexvo-slides-container {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.tempo-bexvo-slide-item {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}

.tempo-bexvo-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-light);
}

.tempo-bexvo-cite {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    color: var(--accent);
    font-style: normal;
}

.tempo-bexvo-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.tempo-bexvo-dot {
    width: 12px;
    height: 12px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

#slide1:checked ~ .tempo-bexvo-slides-container { transform: translateX(0%); }
#slide2:checked ~ .tempo-bexvo-slides-container { transform: translateX(-100%); }
#slide3:checked ~ .tempo-bexvo-slides-container { transform: translateX(-200%); }

#slide1:checked ~ .tempo-bexvo-slider-dots label[for="slide1"],
#slide2:checked ~ .tempo-bexvo-slider-dots label[for="slide2"],
#slide3:checked ~ .tempo-bexvo-slider-dots label[for="slide3"] {
    background-color: var(--accent);
}

/* Pricing */
.tempo-bexvo-pricing-block {
    padding: 100px 0;
}

.tempo-bexvo-pricing-flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tempo-bexvo-price-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.tempo-bexvo-price-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.tempo-bexvo-price-header h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.tempo-bexvo-cost {
    font-size: 32px;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 25px;
}

.tempo-bexvo-price-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.tempo-bexvo-price-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dim);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tempo-bexvo-btn-outline {
    display: block;
    padding: 12px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
}

.tempo-bexvo-btn-outline:hover {
    background: var(--accent);
    color: var(--bg-deep);
}

/* Benefits Section */
.tempo-bexvo-benefits-block {
    padding: 100px 0;
    background-color: #090a0c;
}

.tempo-bexvo-benefits-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tempo-bexvo-benefits-text, .tempo-bexvo-benefits-img-col {
    flex: 1;
}

.tempo-bexvo-section-title-left {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
}

.tempo-bexvo-section-title-left::before {
    content: '✦';
    color: var(--accent);
    margin-right: 10px;
}

.tempo-bexvo-text-lead {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--accent);
}

.tempo-bexvo-styled-list {
    list-style: none;
}

.tempo-bexvo-styled-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.tempo-bexvo-styled-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.tempo-bexvo-side-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* Audience */
.tempo-bexvo-audience-block {
    padding: 100px 0;
}

.tempo-bexvo-section-subtitle {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tempo-bexvo-audience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tempo-bexvo-audience-item {
    flex: 1;
    min-width: 250px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.tempo-bexvo-item-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.tempo-bexvo-audience-item h4 {
    margin-bottom: 10px;
    color: var(--accent);
}

.tempo-bexvo-cta-box {
    margin-top: 60px;
    background: linear-gradient(135deg, #111214 0%, #060708 100%);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
    text-align: center;
}

/* FAQ */
.tempo-bexvo-faq-block {
    padding: 100px 0;
    background-color: #0c0d0f;
}

.tempo-bexvo-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.tempo-bexvo-faq-item {
    background: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.tempo-bexvo-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    outline: none;
    list-style: none;
}

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

.tempo-bexvo-faq-summary::after {
    content: '+';
    float: right;
    color: var(--accent);
}

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

.tempo-bexvo-faq-content {
    padding: 0 20px 20px;
    color: var(--text-dim);
}

/* Text Sections */
.tempo-bexvo-text-section {
    padding: 80px 0;
}

.tempo-bexvo-text-section.bg-alt {
    background-color: #090a0c;
}

.tempo-bexvo-text-cols {
    column-count: 2;
    column-gap: 40px;
    color: var(--text-dim);
}

.tempo-bexvo-highlight-box {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 197, 94, 0.05);
    border-left: 4px solid var(--accent);
    font-size: 20px;
    font-style: italic;
    color: var(--text-light);
}

/* Contact Form */
.tempo-bexvo-contact-block {
    padding: 100px 0;
}

.tempo-bexvo-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.tempo-bexvo-form-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dim);
}

.tempo-bexvo-form-group {
    margin-bottom: 20px;
}

.tempo-bexvo-form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--accent);
}

.tempo-bexvo-form-input, .tempo-bexvo-form-textarea {
    width: 100%;
    padding: 12px;
    background: #1a1b1d;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: #fff;
    outline: none;
}

.tempo-bexvo-form-input:focus, .tempo-bexvo-form-textarea:focus {
    border-color: var(--accent);
}

.tempo-bexvo-form-checkbox-wrap {
    margin-bottom: 25px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tempo-bexvo-form-checkbox-wrap a {
    color: var(--accent);
}

.tempo-bexvo-btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--accent);
    border: none;
    color: var(--bg-deep);
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.tempo-bexvo-btn-submit:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 15px var(--accent);
}

/* Footer */
.tempo-bexvo-footer-main {
    background-color: #040506;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.tempo-bexvo-footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tempo-bexvo-logo-text-footer {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 15px;
}

.tempo-bexvo-footer-contacts p {
    margin-bottom: 10px;
}

.tempo-bexvo-footer-contacts a {
    color: var(--text-light);
    text-decoration: none;
}

.tempo-bexvo-footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-dim);
}

.tempo-bexvo-footer-links {
    display: flex;
    gap: 20px;
}

.tempo-bexvo-footer-links a {
    color: var(--text-dim);
    text-decoration: none;
}

.tempo-bexvo-footer-links a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 992px) {
    .tempo-bexvo-hero-flex-row, .tempo-bexvo-benefits-flex {
        flex-direction: column;
    }
    .tempo-bexvo-text-cols {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .tempo-bexvo-burger-btn {
        display: flex;
    }
    .tempo-bexvo-nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-deep);
        transition: 0.3s;
        padding: 40px;
        border-top: 1px solid var(--border-color);
    }
    .tempo-bexvo-nav-list {
        flex-direction: column;
        align-items: center;
    }
    .tempo-bexvo-nav-checkbox:checked ~ .tempo-bexvo-nav-menu {
        left: 0;
    }
    .tempo-bexvo-hero-sub-grid {
        flex-direction: column;
    }
    .tempo-bexvo-footer-top, .tempo-bexvo-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}