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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    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;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

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

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

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-primary,
.btn-secondary,
.btn-select,
.btn-primary-large {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary,
.btn-primary-large {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover,
.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.btn-select {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-select:hover {
    background: var(--secondary-color);
}

.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

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

.split-left,
.split-right {
    flex: 1;
}

.split-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.split-left h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.split-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.insight-split,
.about-split,
.problem-split,
.cta-split,
.values-split,
.experience-split,
.contact-split,
.location-split {
    padding: 80px 0;
}

.insight-split {
    background: var(--bg-white);
}

.about-split {
    background: var(--bg-light);
}

.problem-split {
    background: var(--bg-light);
}

.trust-block,
.testimonial-block,
.mission-block {
    padding: 80px 0;
    background: var(--bg-white);
}

.trust-block h2,
.mission-block h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.principles-grid,
.approach-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.principle-card,
.approach-item {
    flex: 1;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.principle-card h3,
.approach-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-block {
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.testimonial p {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

.services-select,
.form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-select h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.service-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    min-height: 80px;
}

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

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

.benefits-list {
    list-style: none;
    margin: 25px 0;
}

.benefits-list li,
.values-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 20px;
}

.values-list strong {
    color: var(--primary-color);
}

.lead-form {
    max-width: 600px;
    margin: 40px auto 0;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

.final-cta {
    padding: 100px 0;
    background: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.sticky-btn {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.9);
}

.team-overview {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.team-overview h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.team-overview p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
    color: var(--text-light);
}

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

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
}

.cta-simple {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-light);
}

.cta-simple h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-simple p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.services-detailed {
    padding: 60px 0;
}

.service-block {
    margin-bottom: 80px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block.reverse {
    background: var(--bg-light);
    padding: 60px 0;
}

.service-block.featured-service {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%);
    padding: 60px 0;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
}

.service-features li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.badge-large {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.comparison-block {
    padding: 80px 0;
    background: var(--bg-white);
}

.comparison-block h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

.comparison-grid {
    display: flex;
    gap: 40px;
}

.comparison-item {
    flex: 1;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 10px;
}

.comparison-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info {
    margin-top: 30px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-methods {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-methods h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.methods-grid {
    display: flex;
    gap: 40px;
}

.method-card {
    flex: 1;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

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

.method-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.response-info {
    padding: 60px 0;
    text-align: center;
}

.response-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.response-info p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-light);
}

.thanks-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: var(--bg-white);
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

.thanks-hero .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 22px;
}

.thanks-info {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    margin: 50px 0;
    color: var(--text-dark);
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

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

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

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

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

.selected-service {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    display: none;
}

.selected-service h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.selected-service p {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.additional-resources {
    padding: 80px 0;
    background: var(--bg-white);
}

.additional-resources h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.resources-grid {
    display: flex;
    gap: 40px;
}

.resource-card {
    flex: 1;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 10px;
}

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

.resource-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.resource-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 60px 0;
    min-height: 70vh;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.legal-page .updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-page ul {
    margin: 15px 0 25px 30px;
}

.legal-page li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 20px 0;
        gap: 15px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .split-left h2 {
        font-size: 28px;
    }

    .services-grid,
    .principles-grid,
    .approach-grid,
    .steps-grid,
    .methods-grid,
    .resources-grid,
    .comparison-grid,
    .stats-grid {
        flex-direction: column;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

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

    .legal-page h1 {
        font-size: 32px;
    }
}
