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

html {
    scroll-behavior: smooth;
}

body.flow-praxo-1836-body-wrapper {
    background-color: #07090C;
    color: #E0E0E0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.flow-praxo-1836-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.flow-praxo-1836-main-header-nav {
    background-color: #07090C;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1A1D23;
}

.flow-praxo-1836-container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-praxo-1836-logo-text-box {
    font-size: 24px;
    font-weight: 800;
    color: #4FF7FF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.flow-praxo-1836-nav-links-list {
    display: flex;
    gap: 25px;
}

.flow-praxo-1836-nav-item {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.flow-praxo-1836-nav-item:hover {
    color: #4FF7FF;
}

.flow-praxo-1836-cyan-rail-decoration {
    height: 3px;
    background: linear-gradient(90deg, transparent, #4FF7FF, transparent);
    width: 100%;
}

/* Burger Menu (No JS) */
.flow-praxo-1836-menu-checkbox {
    display: none;
}

.flow-praxo-1836-burger-label {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.flow-praxo-1836-burger-label span {
    width: 25px;
    height: 2px;
    background-color: #4FF7FF;
    transition: 0.3s;
}

/* Hero Section */
.flow-praxo-1836-hero-section-wrap {
    padding: 80px 0;
    position: relative;
}

.flow-praxo-1836-quick-links-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.flow-praxo-1836-quick-btn {
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 12px;
    border-radius: 4px;
    transition: background 0.3s, box-shadow 0.3s;
}

.flow-praxo-1836-quick-btn:hover {
    background: rgba(79, 247, 255, 0.1);
    box-shadow: 0 0 10px rgba(79, 247, 255, 0.4);
}

.flow-praxo-1836-hero-grid-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.flow-praxo-1836-hero-image-side {
    flex: 1;
}

.flow-praxo-1836-hero-main-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 0px rgba(79, 247, 255, 0.05);
}

.flow-praxo-1836-hero-text-side {
    flex: 1;
}

.flow-praxo-1836-h1-main-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.flow-praxo-1836-hero-subtitle {
    font-size: 20px;
    color: #4FF7FF;
    margin-bottom: 30px;
    font-weight: 300;
}

.flow-praxo-1836-hero-description {
    margin-bottom: 20px;
    font-size: 16px;
    color: #B0B0B0;
}

.flow-praxo-1836-primary-action-button {
    display: inline-block;
    background-color: #4FF7FF;
    color: #07090C;
    padding: 18px 36px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(79, 247, 255, 0.3);
}

.flow-praxo-1836-primary-action-button:hover {
    box-shadow: 0 0 25px rgba(79, 247, 255, 0.7);
    transform: translateY(-2px);
}

/* Reviews */
.flow-praxo-1836-reviews-section-wrap {
    padding: 100px 0;
    background-color: #0D1117;
}

.flow-praxo-1836-h2-title-center {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #FFFFFF;
}

.flow-praxo-1836-reviews-grid-list {
    display: flex;
    gap: 30px;
}

.flow-praxo-1836-review-card-item {
    flex: 1;
    background-color: #07090C;
    padding: 40px;
    border-left: 4px solid #4FF7FF;
    border-radius: 0 8px 8px 0;
}

.flow-praxo-1836-review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.flow-praxo-1836-review-author {
    color: #4FF7FF;
    font-weight: bold;
}

/* Pricing */
.flow-praxo-1836-pricing-section-wrap {
    padding: 100px 0;
}

.flow-praxo-1836-pricing-grid-list {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.flow-praxo-1836-price-card-box {
    flex: 1;
    background-color: #111418;
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #1A1D23;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.flow-praxo-1836-price-card-box:hover {
    border-color: #4FF7FF;
}

.flow-praxo-1836-featured-card {
    border-color: #4FF7FF;
    transform: scale(1.05);
    background-color: #161B22;
}

.flow-praxo-1836-discount-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4FF7FF;
    color: #07090C;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 20px;
    font-size: 12px;
}

.flow-praxo-1836-price-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.flow-praxo-1836-price-value {
    font-size: 42px;
    font-weight: 800;
    color: #4FF7FF;
    margin-bottom: 30px;
}

.flow-praxo-1836-price-features-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.flow-praxo-1836-price-features-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
}

.flow-praxo-1836-price-features-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4FF7FF;
}

.flow-praxo-1836-price-btn-link {
    display: block;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    text-decoration: none;
    padding: 15px;
    border-radius: 4px;
    transition: 0.3s;
}

.flow-praxo-1836-price-btn-link:hover {
    background-color: #4FF7FF;
    color: #07090C;
}

/* Audience */
.flow-praxo-1836-audience-section-wrap {
    padding: 100px 0;
    background-color: #0D1117;
}

.flow-praxo-1836-h2-title-left {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.flow-praxo-1836-section-intro {
    max-width: 700px;
    margin-bottom: 60px;
    color: #B0B0B0;
}

.flow-praxo-1836-audience-grid-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.flow-praxo-1836-audience-item-card {
    background-color: #07090C;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.flow-praxo-1836-tech-marker {
    display: block;
    font-size: 12px;
    color: #4FF7FF;
    margin-bottom: 15px;
    font-family: monospace;
}

.flow-praxo-1836-decorative-line-box {
    margin-top: 20px;
    height: 1px;
    background: linear-gradient(90deg, #4FF7FF, transparent);
}

/* Quote */
.flow-praxo-1836-expert-quote-wrap {
    padding: 120px 0;
    background: linear-gradient(rgba(7, 9, 12, 0.9), rgba(7, 9, 12, 0.9)), url('https://placehold.co/1200x400/07090c/4ff7ff?text=Rhythm+Abstract');
    background-attachment: fixed;
    background-size: cover;
}

.flow-praxo-1836-quote-inner-layout {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.flow-praxo-1836-main-quote {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #FFFFFF;
    font-style: italic;
}

.flow-praxo-1836-quote-author-info {
    display: flex;
    flex-direction: column;
}

.flow-praxo-1836-author-name {
    font-weight: bold;
    color: #4FF7FF;
    font-size: 20px;
}

/* Benefits */
.flow-praxo-1836-benefits-section-wrap {
    padding: 100px 0;
}

.flow-praxo-1836-benefits-flex-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.flow-praxo-1836-benefits-text-side {
    flex: 1.2;
}

.flow-praxo-1836-benefits-image-side {
    flex: 0.8;
}

.flow-praxo-1836-benefit-img {
    width: 100%;
    border-radius: 8px;
}

.flow-praxo-1836-benefits-list-styled {
    list-style: none;
    margin-top: 40px;
}

.flow-praxo-1836-benefits-list-styled li {
    margin-bottom: 20px;
    font-size: 18px;
    padding-left: 40px;
    position: relative;
}

.flow-praxo-1836-benefits-list-styled li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4FF7FF;
    font-weight: bold;
}

/* FAQ */
.flow-praxo-1836-faq-section-wrap {
    padding: 100px 0;
    background-color: #0D1117;
}

.flow-praxo-1836-faq-list-container {
    max-width: 800px;
    margin: 0 auto;
}

.flow-praxo-1836-faq-item {
    background-color: #111418;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #1A1D23;
}

.flow-praxo-1836-faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #4FF7FF;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.flow-praxo-1836-faq-summary::after {
    content: '+';
}

.flow-praxo-1836-faq-item[open] .flow-praxo-1836-faq-summary::after {
    content: '-';
}

.flow-praxo-1836-faq-content {
    padding: 0 20px 20px;
    color: #B0B0B0;
}

/* Large Content Blocks */
.flow-praxo-1836-content-large-block {
    padding: 120px 0;
}

.flow-praxo-1836-alt-bg {
    background-color: #0D1117;
}

.flow-praxo-1836-text-columns-wrap {
    column-count: 2;
    column-gap: 50px;
    margin-top: 40px;
}

.flow-praxo-1836-text-columns-wrap p {
    margin-bottom: 25px;
    text-align: justify;
}

/* Form */
.flow-praxo-1836-form-section-wrap {
    padding: 100px 0;
}

.flow-praxo-1836-form-inner-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: #111418;
    padding: 60px;
    border-radius: 12px;
    border: 1px solid #1A1D23;
}

.flow-praxo-1836-form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #B0B0B0;
}

.flow-praxo-1836-form-group {
    margin-bottom: 25px;
}

.flow-praxo-1836-field-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #4FF7FF;
}

.flow-praxo-1836-input-field, .flow-praxo-1836-textarea-field {
    width: 100%;
    background-color: #07090C;
    border: 1px solid #1A1D23;
    padding: 15px;
    color: #E0E0E0;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.flow-praxo-1836-input-field:focus, .flow-praxo-1836-textarea-field:focus {
    border-color: #4FF7FF;
}

.flow-praxo-1836-form-checkbox-wrap {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.flow-praxo-1836-form-checkbox-wrap a {
    color: #4FF7FF;
}

.flow-praxo-1836-submit-btn {
    background-color: #4FF7FF;
    color: #07090C;
    border: none;
    padding: 18px 40px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    width: 100%;
}

.flow-praxo-1836-submit-btn:hover {
    box-shadow: 0 0 20px rgba(79, 247, 255, 0.5);
}

/* Footer */
.flow-praxo-1836-main-footer {
    padding: 80px 0 40px;
    border-top: 1px solid #1A1D23;
    background-color: #07090C;
}

.flow-praxo-1836-footer-top-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.flow-praxo-1836-footer-brand {
    font-size: 24px;
    font-weight: 800;
    color: #4FF7FF;
}

.flow-praxo-1836-footer-contacts p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #B0B0B0;
}

.flow-praxo-1836-footer-copy-text {
    text-align: center;
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
}

.flow-praxo-1836-footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flow-praxo-1836-footer-links-bottom a {
    color: #888;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.flow-praxo-1836-footer-links-bottom a:hover {
    color: #4FF7FF;
}

/* Responsive */
@media (max-width: 992px) {
    .flow-praxo-1836-hero-grid-layout {
        flex-direction: column;
    }
    .flow-praxo-1836-reviews-grid-list, .flow-praxo-1836-pricing-grid-list, .flow-praxo-1836-benefits-flex-layout {
        flex-direction: column;
    }
    .flow-praxo-1836-text-columns-wrap {
        column-count: 1;
    }
    .flow-praxo-1836-featured-card {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .flow-praxo-1836-burger-label {
        display: flex;
    }
    .flow-praxo-1836-nav-links-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0D1117;
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
    .flow-praxo-1836-menu-checkbox:checked ~ .flow-praxo-1836-nav-links-list {
        display: flex;
    }
    .flow-praxo-1836-h1-main-title {
        font-size: 32px;
    }
}