/* CORPORATE CLEAN MINIMAL — СТРОГИЙ ЕВРОПЕЙСКИЙ БАНКОВСКИЙ СТИЛЬ */

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff; /* Светлый классический деловой фон */
    color: #1e293b; /* Глубокий slate для идеальной читаемости текста */
    line-height: 1.6;
}

.cc-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }

/* БЛОК 1: НАВИГАЦИЯ (Sabadell Style Header) */
.cc-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.cc-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0033a0; /* Королевский синий банковский оттенок */
    text-decoration: none;
    letter-spacing: -0.5px;
}

.cc-logo span {
    color: #00b4d8; /* Бирюзовый акцент */
}

.cc-nav a {
    color: #334155;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-right: 30px;
    transition: color 0.15s;
}

.cc-nav a:hover {
    color: #0033a0;
}

.cc-phone-top {
    font-weight: 600;
    color: #0033a0;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid #0033a0;
    padding: 8px 18px;
    border-radius: 4px;
}

/* БЛОК 2: HERO ZONE */
.cc-hero {
    padding: 90px 0;
    background-color: #f8fafc; /* Чистый светло-серый премиальный фон */
    border-bottom: 1px solid #e2e8f0;
}

.hero-two-columns {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.cc-tag-blue {
    display: inline-block;
    background-color: rgba(0, 51, 160, 0.06);
    color: #0033a0;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0033a0;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-left p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 35px;
}

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

.btn-cc {
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-cc-main {
    background-color: #00b4d8; /* Бирюзовый маркер клика */
    color: #ffffff;
}

.btn-cc-main:hover {
    background-color: #0096b4;
}

.btn-cc-outline {
    border: 1px solid #cbd5e1;
    color: #1e293b;
    background-color: #ffffff;
}

.btn-cc-outline:hover {
    background-color: #f1f5f9;
    border-color: #94a3b8;
}

.office-preview-box {
    background-color: #0033a0;
    height: 340px;
    border-radius: 6px;
    padding: 25px;
    display: flex;
    align-items: flex-end;
}

.office-inner-border {
    border-left: 2px solid #00b4d8;
    padding-left: 15px;
    width: 100%;
}

.office-tag {
    font-size: 0.75rem;
    color: #93c5fd;
    font-family: monospace;
}

/* БЛОК 3: TELEMETRY BAR */
.cc-bar-indicators {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

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

.ind-item {
    flex: 1;
    min-width: 240px;
}

.ind-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0033a0;
    display: block;
}

.ind-txt {
    font-size: 0.85rem;
    color: #475569;
}

/* БЛОК 4: SERVICES COLUMNS */
.cc-services {
    padding: 90px 0;
    background-color: #f8fafc;
}

.cc-section-title h2 {
    font-size: 2.2rem;
    color: #0033a0;
    margin-bottom: 15px;
}

.cc-section-desc {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 50px;
}

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

.srv-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px 35px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.srv-top-bar {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 180, 216, 0.1);
    border-radius: 4px;
    margin-bottom: 25px;
}

.srv-box h3 {
    font-size: 1.25rem;
    color: #0033a0;
    margin-bottom: 15px;
}

.srv-box p {
    font-size: 0.95rem;
    color: #475569;
}

/* БЛОК 5: VALUES SPLIT */
.cc-values {
    padding: 90px 0;
    border-bottom: 1px solid #e2e8f0;
}

.values-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.values-left-info h2 {
    font-size: 2rem;
    color: #0033a0;
    margin-bottom: 20px;
}

.values-left-info p {
    color: #475569;
}

.value-row {
    margin-bottom: 30px;
    border-left: 2px solid #0033a0;
    padding-left: 20px;
}

.value-row strong {
    display: block;
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.value-row p {
    font-size: 0.95rem;
    color: #475569;
}

/* БЛОК 6: CASE STUDIES */
.cc-cases {
    padding: 90px 0;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.cases-dual-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.case-card-flat {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 4px;
}

.case-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: #00b4d8;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.case-card-flat h4 {
    font-size: 1.3rem;
    color: #0033a0;
    margin-bottom: 15px;
}

.case-card-flat p {
    font-size: 0.95rem;
    color: #475569;
}

/* БЛОК 7: PRICING */
.cc-pricing {
    padding: 90px 0;
}

.pricing-three-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.price-box {
    border: 1px solid #e2e8f0;
    padding: 45px 35px;
    border-radius: 4px;
    background-color: #ffffff;
}

.featured-price-box {
    border: 2px solid #0033a0;
    box-shadow: 0 4px 12px rgba(0, 51, 160, 0.05);
}

.price-box h4 {
    font-size: 1.3rem;
    color: #0033a0;
    margin-bottom: 10px;
}

.price-p {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
}

.price-features li {
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.price-features li::before {
    content: "✓";
    color: #00b4d8;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* БЛОК 8: LOCATIONS */
.cc-locations {
    padding: 90px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.location-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.loc-text h2 {
    font-size: 2rem;
    color: #0033a0;
    margin-bottom: 15px;
}

.address-entry {
    margin-bottom: 25px;
}

.address-entry h5 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.address-entry p {
    font-size: 0.9rem;
    color: #475569;
}

/* БЛОК 9: ACCREDITATIONS */
.cc-accreditations {
    padding: 35px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.acc-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.acc-title {
    font-size: 0.85rem;
    color: #64748b;
}

.acc-items-row span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
    margin-left: 25px;
}

/* БЛОК 10: FAQ FLAT */
.cc-faq {
    padding: 90px 0;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-flat {
    margin-top: 50px;
}

.faq-row-flat {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.faq-row-flat h4 {
    font-size: 1.15rem;
    color: #0033a0;
    margin-bottom: 12px;
}

.faq-row-flat p {
    font-size: 0.95rem;
    color: #475569;
}

/* БЛОК 11: CONTACT LEAD ZONE */
.cc-contact-zone {
    padding: 90px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.contact-two-columns {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
}

.contact-left-message h2 {
    font-size: 2.2rem;
    color: #0033a0;
    margin-bottom: 20px;
}

.contact-left-message p {
    color: #475569;
}

.corporate-clean-form {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 4px;
}

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

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

.corporate-clean-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.corporate-clean-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 0.95rem;
}

.corporate-clean-form input:focus {
    outline: none;
    border-color: #0033a0;
}

.form-check-legal {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    color: #475569;
    margin-bottom: 25px;
}

.form-check-legal a {
    color: #0033a0;
}

.btn-cc-submit {
    background-color: #0033a0;
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-cc-submit:hover {
    background-color: #002270;
}

/* БЛОК 12: COMPLIANCE FOOTER */
.cc-footer {
    background-color: #1e293b;
    color: #94a3b8;
    padding: 70px 0 35px 0;
    font-size: 0.85rem;
    border-top: 1px solid #cbd5e1;
}

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

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

.footer-credits {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.footer-rgpd-text {
    font-size: 0.75rem;
    line-height: 1.6;
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: justify;
    color: #64748b;
}

/* АДАПТИВНАЯ МАТРИЦА (Mobile Optimization) */
@media (max-width: 992px) {
    .hero-two-columns, .values-layout, .cases-dual-layout, .location-split, .contact-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row-cc {
        flex-direction: column;
        gap: 0;
    }
    .hero-left h1 {
        font-size: 2.2rem;
    }
    .cc-nav {
        display: none;
    }
    .header-box {
        flex-direction: column;
        gap: 15px;
    }
}