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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

img {
    object-fit: cover;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #229954;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.main-nav {
    background: #0a1628;
    padding: 18px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    letter-spacing: -0.5px;
}

.nav-disclosure {
    font-size: 11px;
    color: #95a5a6;
    font-style: italic;
    margin: 0 20px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-offset {
    display: flex;
    min-height: 88vh;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-block {
    flex: 1;
    padding: 120px 60px 80px 80px;
    max-width: 650px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-block h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-content-block p {
    font-size: 18px;
    color: #b8c5d6;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

.cta-hero:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39,174,96,0.4);
}

.hero-visual-offset {
    flex: 1;
    position: relative;
    margin: 40px 40px 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    background: #1a2744;
}

.hero-visual-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    align-items: center;
    background: #f8f9fa;
}

.intro-left {
    flex: 0.9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    background: #e9ecef;
    transform: translateY(-30px);
}

.intro-left img {
    width: 100%;
    height: auto;
}

.intro-right-offset {
    flex: 1.1;
    padding-left: 20px;
}

.intro-right-offset h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #0a1628;
    font-weight: 700;
}

.intro-right-offset p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-diagonal {
    background: linear-gradient(165deg, #2c3e50 0%, #34495e 100%);
    padding: 90px 80px;
    position: relative;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.insight-box {
    flex: 1.3;
    background: rgba(255,255,255,0.05);
    padding: 50px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.insight-box h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.insight-box p {
    font-size: 16px;
    color: #d5dbe3;
    line-height: 1.8;
}

.insight-stats {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: rgba(52,152,219,0.15);
    padding: 40px 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(52,152,219,0.3);
}

.stat-number {
    font-size: 48px;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #b8c5d6;
    line-height: 1.5;
}

.services-select {
    padding: 100px 80px;
    background: #ffffff;
}

.services-select h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #0a1628;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card.offset-1 {
    flex: 0 0 calc(55% - 20px);
}

.service-card.offset-2 {
    flex: 0 0 calc(45% - 20px);
    transform: translateY(40px);
}

.service-card.offset-3 {
    flex: 0 0 calc(48% - 20px);
}

.service-card.offset-4 {
    flex: 0 0 calc(52% - 20px);
    transform: translateY(-40px);
}

.service-card.offset-5 {
    flex: 0 0 100%;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
}

.service-card.offset-5 h3,
.service-card.offset-5 p,
.service-card.offset-5 .service-price {
    color: #ffffff;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card.offset-2:hover,
.service-card.offset-4:hover {
    transform: translateY(34px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    background: #dee2e6;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #0a1628;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #495057;
    margin-bottom: 18px;
    line-height: 1.7;
    flex: 1;
}

.service-price {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 16px;
}

.btn-select-service {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.service-card.offset-5 .btn-select-service {
    background: #27ae60;
}

.service-card.offset-5 .btn-select-service:hover {
    background: #229954;
}

.form-section-offset {
    display: flex;
    padding: 100px 80px;
    gap: 70px;
    background: linear-gradient(135deg, #ecf0f1 0%, #d5dbe3 100%);
    align-items: center;
}

.form-container-asymmetric {
    flex: 1.2;
}

.form-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #0a1628;
    font-weight: 700;
}

.form-header p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 32px;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

.form-visual {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    background: #bdc3c7;
    transform: translateY(40px);
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-block {
    padding: 80px 80px 90px;
    background: #ffffff;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0a1628;
    font-weight: 700;
}

.trust-block > p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 40px;
}

.disclaimer-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 24px 28px;
    border-radius: 6px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.footer-asymmetric {
    background: #0a1628;
    color: #b8c5d6;
    padding: 60px 80px 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #3498db;
    font-weight: 600;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block ul li a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid rgba(184,197,214,0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-block {
        max-width: 100%;
        padding: 60px 40px;
    }

    .hero-visual-offset {
        margin: 0 40px 40px;
        height: 400px;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .intro-left {
        transform: translateY(0);
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5 {
        flex: 0 0 100%;
        transform: translateY(0);
    }

    .form-section-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

    .form-visual {
        transform: translateY(0);
        height: 350px;
        width: 100%;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 14px 20px;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content-block h1 {
        font-size: 36px;
    }

    .services-select,
    .trust-block {
        padding: 60px 20px;
    }

    .insight-diagonal {
        padding: 60px 20px;
    }

    .insight-wrapper {
        flex-direction: column;
    }
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
    text-align: center;
}

.thanks-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-hero p {
    font-size: 18px;
    color: #b8c5d6;
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-return {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-return:hover {
    background: #229954;
    transform: translateY(-2px);
}

.about-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 80px;
    text-align: center;
    color: #ffffff;
}

.about-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #d5dbe3;
    line-height: 1.7;
}

.about-content {
    padding: 80px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0a1628;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-header {
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
    padding: 100px 80px;
    text-align: center;
    color: #ffffff;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #b8c5d6;
    line-height: 1.7;
}

.services-list {
    padding: 80px 80px;
    background: #f8f9fa;
}

.contact-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 100px 80px;
    text-align: center;
    color: #ffffff;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info {
    padding: 80px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #0a1628;
    font-weight: 700;
}

.contact-info p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #0a1628;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page p,
.legal-page li {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}