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

:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --accent: #d97706;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border: #e5e7eb;
    --success: #059669;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
    min-width: 300px;
}

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

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

.btn-cookie {
    background: var(--accent);
    color: var(--bg-white);
}

.btn-cookie:hover {
    background: #b45309;
}

.btn-cookie-alt {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--border);
}

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

.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.hero-split {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-split h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 800;
}

.lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
}

.trust-indicators {
    padding: 60px 20px;
    background: var(--bg-white);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 8px;
}

.problem-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.problem-section h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.problem-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-top: 16px;
    transition: all 0.3s;
}

.cta-text:hover {
    color: var(--accent);
}

.services-grid-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 30px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.btn-select-service {
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: var(--primary-light);
}

.testimonial-section {
    padding: 80px 20px;
    background: var(--primary);
}

.testimonial-large {
    border-left: 4px solid var(--accent);
    padding-left: 40px;
}

.testimonial-large p {
    font-size: 28px;
    color: var(--bg-white);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-large cite {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.methodology-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.methodology-section h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.method-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    min-width: 60px;
}

.step-content h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    font-size: 16px;
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.form-header p {
    font-size: 18px;
    color: var(--text-light);
}

.inquiry-form {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.btn-submit {
    background: var(--accent);
    color: var(--bg-white);
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

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

.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 42px;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.final-cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: var(--bg-white);
    margin-bottom: 16px;
    font-size: 18px;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    background: var(--accent);
    color: var(--bg-white);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
    transition: all 0.3s;
    display: block;
}

.sticky-cta-btn:hover {
    background: #b45309;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.5);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        display: none;
        gap: 16px;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-card {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

    .testimonial-large p {
        font-size: 22px;
    }

    .inquiry-form {
        padding: 32px 24px;
    }
}
