/* DISEÑO VANGUARDISTA — ПРЕМИАЛЬНЫЙ ТЕМНЫЙ СТИЛЬ С НЕОНОВЫМИ АКЦЕНТАМИ */

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0f172a; /* Глубокий премиальный графит */
    color: #f1f5f9; /* Мягкий белый текст */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.vg-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* БЛОК 1: HEADER */
.vg-header {
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.vg-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -1px;
}

.vg-logo span {
    color: #0ea5e9; /* Голубой неон */
}

.vg-nav a {
    color: #94a3b8;
    text-decoration: none;
    margin-right: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.vg-nav a:hover {
    color: #0ea5e9;
}

.btn-nav {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 10px 22px;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-nav:hover {
    background-color: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
}

/* БЛОК 2: HERO */
.vg-hero {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.05), transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.10fr 0.90fr;
    gap: 60px;
    align-items: center;
}

.vg-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.vg-badge span {
    color: #0ea5e9;
    font-weight: 700;
    margin-right: 8px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-text p {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #10b981; /* Мягкий изумрудный */
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.abstract-glow-card {
    background-color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 380px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.glow-element {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #0ea5e9;
    filter: blur(80px);
    top: -50px;
    right: -50px;
    opacity: 0.4;
}

.visual-label {
    font-size: 0.75rem;
    color: #64748b;
    font-family: monospace;
}

/* БЛОК 3: BRANDS */
.vg-brands {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.01);
}

.brands-title {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.brands-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-item {
    font-weight: 700;
    font-size: 1.1rem;
    color: #334155;
    letter-spacing: 2px;
}

/* БЛОК 4: STATS */
.vg-stats {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
}

.stat-card h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* БЛОК 5: SERVICES */
.vg-services {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header .sub {
    color: #0ea5e9;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

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

.service-card {
    background-color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 45px 35px;
    border-radius: 20px;
    transition: border-color 0.2s;
}

.service-card:hover {
    border-color: #0ea5e9;
}

.srv-icon {
    font-size: 2rem;
    color: #0ea5e9;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* БЛОК 6: FEATURES */
.vg-features {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feat-left h2 {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.feat-left p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.link-arrow {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
}

.mini-feat {
    margin-bottom: 35px;
}

.mini-feat h4 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.mini-feat p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* БЛОК 7: PORTFOLIO */
.vg-portfolio {
    padding: 100px 0;
}

.portfolio-header {
    margin-bottom: 50px;
}

.portfolio-header h2 {
    font-size: 2.4rem;
    color: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.project-visual {
    height: 320px;
    background-color: #1e293b;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.project-item h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.project-item p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* БЛОК 8: PROCESS */
.vg-process {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
}

.title-center {
    text-align: center;
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.p-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(14, 165, 233, 0.3);
    display: block;
    margin-bottom: 10px;
}

.p-step h4 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.p-step p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* БЛОК 9: TESTIMONIALS */
.vg-testimonials {
    padding: 120px 0;
}

.test-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.test-text {
    font-size: 1.6rem;
    color: #ffffff;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
}

.test-author strong {
    display: block;
    color: #ffffff;
}

.test-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* БЛОК 10: FAQ */
.vg-faq {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
}

.faq-max {
    max-width: 800px;
}

.vg-faq h2 {
    font-size: 2.4rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.faq-item p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* БЛОК 11: CONTACT FORM */
.vg-contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-info p {
    color: #94a3b8;
    margin-bottom: 40px;
}

.contact-meta p {
    margin-bottom: 10px;
    color: #ffffff;
}

.vg-form {
    background-color: #1e293b;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
}

.vg-form label {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.vg-form input, .vg-form select {
    width: 100%;
    padding: 14px;
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
}

.vg-form input:focus, .vg-form select:focus {
    outline: none;
    border-color: #0ea5e9;
}

.form-privacy {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 25px;
}

.form-privacy a {
    color: #0ea5e9;
}

.btn-submit {
    background-color: #0ea5e9;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background-color: #0284c7;
}

/* БЛОК 12: FOOTER */
.vg-footer {
    background-color: #0b0f19;
    padding: 60px 0 30px 0;
    font-size: 0.85rem;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-right: 20px;
}

.copy {
    margin-bottom: 20px;
}

.rgpd-notice {
    font-size: 0.75rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 20px;
    text-align: justify;
}

/* ADAPTIVIDAD */
@media (max-width: 992px) {
    .hero-grid, .feature-split, .portfolio-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .vg-nav {
        display: none;
    }
}