/* RESET & VARIABLES */
:root {
    --motion-brulma-bg: #07090C;
    --motion-brulma-surface: #0E1217;
    --motion-brulma-accent: #4FF7FF;
    --motion-brulma-accent-dim: #1A3D40;
    --motion-brulma-text-primary: #FFFFFF;
    --motion-brulma-text-secondary: #A0AEC0;
    --motion-brulma-border: #1D242D;
    --motion-brulma-glow: 0 0 15px rgba(79, 247, 255, 0.4);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.motion-brulma-3725-body-root {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--motion-brulma-bg);
    color: var(--motion-brulma-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.motion-brulma-3725-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.motion-brulma-3725-header-main {
    background-color: var(--motion-brulma-bg);
    border-bottom: 2px solid var(--motion-brulma-accent);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.motion-brulma-3725-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* MOBILE MENU (No JS) */
.motion-brulma-3725-burger-checkbox {
    display: none;
}

.motion-brulma-3725-burger-label {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.motion-brulma-3725-burger-label span {
    width: 30px;
    height: 3px;
    background-color: var(--motion-brulma-accent);
    transition: 0.3s;
}

.motion-brulma-3725-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.motion-brulma-3725-nav-link {
    color: var(--motion-brulma-text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.motion-brulma-3725-nav-link:hover {
    color: var(--motion-brulma-accent);
    text-shadow: var(--motion-brulma-glow);
}

/* HERO SECTION */
.motion-brulma-3725-hero-section {
    padding: 100px 0;
    position: relative;
}

.motion-brulma-3725-hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.motion-brulma-3725-hero-visual {
    flex: 1;
}

.motion-brulma-3725-hero-img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--motion-brulma-accent);
    box-shadow: 10px 10px 0px var(--motion-brulma-accent-dim);
    object-fit: cover;
}

.motion-brulma-3725-hero-content {
    flex: 1.2;
}

.motion-brulma-3725-hero-h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--motion-brulma-text-primary);
}

.motion-brulma-3725-hero-subtitle {
    font-size: 20px;
    color: var(--motion-brulma-accent);
    margin-bottom: 30px;
    font-weight: 300;
}

.motion-brulma-3725-hero-text-block {
    margin-bottom: 20px;
}

.motion-brulma-3725-hero-p {
    color: var(--motion-brulma-text-secondary);
    font-size: 16px;
}

.motion-brulma-3725-hero-actions {
    margin-top: 40px;
}

/* BUTTONS */
.motion-brulma-3725-btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--motion-brulma-accent);
    color: var(--motion-brulma-bg);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    transition: 0.3s;
    cursor: pointer;
}

.motion-brulma-3725-btn-primary:hover {
    box-shadow: var(--motion-brulma-glow);
    transform: translateY(-2px);
}

.motion-brulma-3725-btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--motion-brulma-accent);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid var(--motion-brulma-accent);
    transition: 0.3s;
    text-transform: uppercase;
    text-align: center;
}

.motion-brulma-3725-btn-secondary:hover {
    background-color: var(--motion-brulma-accent);
    color: var(--motion-brulma-bg);
}

/* REVIEWS */
.motion-brulma-3725-reviews-section {
    padding: 80px 0;
    background-color: var(--motion-brulma-surface);
}

.motion-brulma-3725-section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.motion-brulma-3725-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--motion-brulma-accent);
}

.motion-brulma-3725-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.motion-brulma-3725-review-card {
    background: var(--motion-brulma-bg);
    padding: 40px;
    border-left: 4px solid var(--motion-brulma-accent);
}

.motion-brulma-3725-review-text {
    font-style: italic;
    color: var(--motion-brulma-text-secondary);
    margin-bottom: 20px;
}

.motion-brulma-3725-review-author {
    font-weight: 700;
    color: var(--motion-brulma-accent);
}

/* AUDIENCE */
.motion-brulma-3725-audience-section {
    padding: 100px 0;
}

.motion-brulma-3725-section-intro {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 50px;
    color: var(--motion-brulma-text-secondary);
}

.motion-brulma-3725-audience-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.motion-brulma-3725-audience-content {
    flex: 1;
}

.motion-brulma-3725-audience-list {
    list-style: none;
}

.motion-brulma-3725-audience-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--motion-brulma-border);
    position: relative;
    padding-left: 25px;
}

.motion-brulma-3725-audience-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--motion-brulma-accent);
}

.motion-brulma-3725-audience-image-box {
    flex: 1;
    position: relative;
}

.motion-brulma-3725-audience-img {
    width: 100%;
    border: 1px solid var(--motion-brulma-border);
}

.motion-brulma-3725-price-teaser {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--motion-brulma-accent);
    color: var(--motion-brulma-bg);
    padding: 15px 25px;
    font-weight: 800;
    box-shadow: 5px 5px 0px var(--motion-brulma-bg);
}

/* SERVICES DETAILED */
.motion-brulma-3725-h3-center {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.motion-brulma-3725-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.motion-brulma-3725-service-item {
    background: var(--motion-brulma-surface);
    padding: 30px;
    border: 1px solid var(--motion-brulma-border);
    transition: 0.3s;
}

.motion-brulma-3725-service-item:hover {
    border-color: var(--motion-brulma-accent);
}

.motion-brulma-3725-service-item h4 {
    color: var(--motion-brulma-accent);
    margin-bottom: 15px;
}

/* PRICES */
.motion-brulma-3725-price-section {
    padding: 100px 0;
    background-color: var(--motion-brulma-surface);
}

.motion-brulma-3725-price-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.motion-brulma-3725-price-card {
    flex: 1 1 220px;
    max-width: 300px;
    background: var(--motion-brulma-bg);
    padding: 40px 30px;
    border: 1px solid var(--motion-brulma-accent);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.motion-brulma-3725-card-highlight {
    transform: scale(1.05);
    background: linear-gradient(135deg, #07090C 0%, #0E2A2C 100%);
    box-shadow: 0 0 30px rgba(79, 247, 255, 0.1);
}

.motion-brulma-3725-price-header {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.motion-brulma-3725-price-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--motion-brulma-accent);
    margin-bottom: 30px;
}

.motion-brulma-3725-price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.motion-brulma-3725-price-features li {
    padding: 10px 0;
    color: var(--motion-brulma-text-secondary);
    font-size: 14px;
    border-bottom: 1px solid var(--motion-brulma-border);
}

/* QUOTE */
.motion-brulma-3725-quote-section {
    padding: 120px 0;
}

.motion-brulma-3725-quote-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.motion-brulma-3725-blockquote {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--motion-brulma-text-primary);
}

.motion-brulma-3725-cite {
    font-size: 18px;
    color: var(--motion-brulma-accent);
    font-weight: 700;
    display: block;
}

/* BENEFITS */
.motion-brulma-3725-benefits-section {
    padding: 100px 0;
    background: var(--motion-brulma-surface);
}

.motion-brulma-3725-benefits-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.motion-brulma-3725-benefits-text {
    flex: 1;
}

.motion-brulma-3725-benefits-img-box {
    flex: 1;
}

.motion-brulma-3725-benefits-img {
    width: 100%;
    border-radius: 4px;
}

.motion-brulma-3725-benefits-list {
    list-style: none;
    margin-top: 30px;
}

.motion-brulma-3725-benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.motion-brulma-3725-benefits-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--motion-brulma-accent);
}

/* TEXT CONTENT BLOCKS */
.motion-brulma-3725-text-block-section {
    padding: 100px 0;
}

.motion-brulma-3725-alt-bg {
    background: var(--motion-brulma-surface);
}

.motion-brulma-3725-content-rich p {
    margin-bottom: 25px;
    font-size: 18px;
    color: var(--motion-brulma-text-secondary);
}

.motion-brulma-3725-bullet-list {
    margin-top: 20px;
    list-style: none;
}

.motion-brulma-3725-bullet-list li {
    padding: 10px 0;
    font-weight: 600;
    color: var(--motion-brulma-accent);
}

/* FAQ */
.motion-brulma-3725-faq-section {
    padding: 100px 0;
}

.motion-brulma-3725-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.motion-brulma-3725-faq-item {
    border-bottom: 1px solid var(--motion-brulma-border);
}

.motion-brulma-3725-faq-summary {
    padding: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.motion-brulma-3725-faq-summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    color: var(--motion-brulma-accent);
}

.motion-brulma-3725-faq-item[open] .motion-brulma-3725-faq-summary::after {
    content: '-';
}

.motion-brulma-3725-faq-content {
    padding: 0 25px 25px;
    color: var(--motion-brulma-text-secondary);
}

/* FORM */
.motion-brulma-3725-form-section {
    padding: 100px 0;
}

.motion-brulma-3725-form-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--motion-brulma-surface);
    padding: 60px;
    border: 1px solid var(--motion-brulma-accent);
}

.motion-brulma-3725-form-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.motion-brulma-3725-form-subtitle {
    text-align: center;
    color: var(--motion-brulma-text-secondary);
    margin-bottom: 40px;
}

.motion-brulma-3725-form-group {
    margin-bottom: 25px;
}

.motion-brulma-3725-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--motion-brulma-accent);
    text-transform: uppercase;
}

.motion-brulma-3725-input,
.motion-brulma-3725-textarea {
    width: 100%;
    padding: 15px;
    background: var(--motion-brulma-bg);
    border: 1px solid var(--motion-brulma-border);
    color: white;
    font-family: inherit;
}

.motion-brulma-3725-textarea {
    height: 120px;
    resize: vertical;
}

.motion-brulma-3725-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.motion-brulma-3725-checkbox-label {
    font-size: 13px;
    color: var(--motion-brulma-text-secondary);
}

.motion-brulma-3725-checkbox-label a {
    color: var(--motion-brulma-accent);
}

.motion-brulma-3725-btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--motion-brulma-accent);
    color: var(--motion-brulma-bg);
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

/* FOOTER */
.motion-brulma-3725-footer-root {
    padding: 80px 0 40px;
    border-top: 1px solid var(--motion-brulma-border);
}

.motion-brulma-3725-footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.motion-brulma-3725-footer-brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--motion-brulma-accent);
}

.motion-brulma-3725-footer-contact p {
    color: var(--motion-brulma-text-secondary);
}

.motion-brulma-3725-footer-bottom {
    text-align: center;
    border-top: 1px solid var(--motion-brulma-border);
    padding-top: 30px;
}

.motion-brulma-3725-footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.motion-brulma-3725-footer-links a {
    color: var(--motion-brulma-text-secondary);
    font-size: 12px;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .motion-brulma-3725-hero-grid,
    .motion-brulma-3725-audience-grid,
    .motion-brulma-3725-benefits-grid {
        flex-direction: column;
    }
    
    .motion-brulma-3725-hero-visual, .motion-brulma-3725-hero-content,
    .motion-brulma-3725-audience-content, .motion-brulma-3725-audience-image-box,
    .motion-brulma-3725-benefits-text, .motion-brulma-3725-benefits-img-box {
        width: 100%;
    }

    .motion-brulma-3725-hero-visual {
        order: -1;
    }

    .motion-brulma-3725-hero-h1 {
        font-size: 40px;
    }

    .motion-brulma-3725-price-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .motion-brulma-3725-burger-label {
        display: flex;
    }

    .motion-brulma-3725-nav-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--motion-brulma-bg);
        display: none;
        padding: 20px;
        border-bottom: 1px solid var(--motion-brulma-accent);
    }

    .motion-brulma-3725-nav-list {
        flex-direction: column;
        align-items: center;
    }

    .motion-brulma-3725-burger-checkbox:checked ~ .motion-brulma-3725-nav-wrapper {
        display: block;
    }

    .motion-brulma-3725-form-card {
        padding: 30px;
    }
    
    .motion-brulma-3725-footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}