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

:root {
    --primary-color: #1a4d8f;
    --secondary-color: #2c6bb5;
    --accent-color: #e67e22;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
    min-height: 600px;
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.trust-strip {
    background: var(--dark-bg);
    color: var(--white);
    padding: 40px 20px;
}

.trust-strip .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
}

.trust-label {
    font-size: 16px;
    opacity: 0.85;
}

.split-layout {
    display: flex;
    align-items: center;
}

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

.split-visual {
    flex: 1;
}

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

.split-content {
    flex: 1;
    padding: 60px;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cta-text {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    margin-top: 16px;
    transition: transform 0.2s;
}

.cta-text:hover {
    transform: translateX(5px);
}

.problem-section {
    margin: 80px 0;
}

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

.center-heading {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.insight-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.insight-card {
    flex: 1;
    background: var(--white);
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.insight-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-showcase {
    padding: 90px 20px;
}

.services-showcase h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-intro {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-secondary);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

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

.cta-service:hover {
    background: var(--secondary-color);
}

.testimonial-section {
    margin: 80px 0;
    background: var(--light-bg);
}

.testimonial-block {
    margin-bottom: 32px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.process-section {
    padding: 90px 20px;
    background: var(--white);
}

.process-steps {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    padding: 28px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.form-section {
    padding: 90px 20px;
    background: var(--white);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cta-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-submit:hover {
    background: #d35400;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 16px 20px;
    z-index: 90;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

.cta-sticky-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-sticky-btn:hover {
    background: #d35400;
}

.main-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--border-color);
    padding: 24px 20px;
    z-index: 200;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-primary);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: var(--success-color);
    color: var(--white);
}

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

.btn-reject {
    background: var(--border-color);
    color: var(--text-primary);
}

.btn-reject:hover {
    background: #d1d8de;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 30px;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 40px 20px;
    }

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

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-content {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}