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

:root {
    --primary: #1a73e8;
    --primary-dark: #0d47a1;
    --secondary: #f57c00;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --success: #2ecc71;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

.container-narrow {
    max-width: 800px;
    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: 10000;
    display: none;
    box-shadow: 0 -2px 10px var(--shadow);
}

.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;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

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

.btn-cookie.reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.nav-main {
    background: var(--bg-white);
    box-shadow: 0 2px 4px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background: var(--bg-light);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 6px;
    transition: all 0.3s;
}

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

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

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

.indicator {
    text-align: center;
}

.indicator h3 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 8px;
}

.indicator p {
    font-size: 16px;
    color: var(--text-gray);
}

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

.split-visual {
    flex: 1;
    overflow: hidden;
}

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

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

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.link-inline {
    color: var(--primary);
    font-weight: 600;
    transition: opacity 0.3s;
}

.link-inline:hover {
    opacity: 0.8;
}

.services-pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.service-icon {
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.testimonial-split {
    display: flex;
    background: var(--bg-white);
}

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

.testimonial {
    margin-bottom: 40px;
}

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

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

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

.process-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.process-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-gray);
    font-size: 15px;
}

.cta-split {
    display: flex;
    background: var(--primary);
    color: white;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.split-content p {
    font-size: 18px;
    opacity: 0.9;
}

.split-form {
    flex: 1;
    background: white;
    padding: 60px;
    display: flex;
    align-items: center;
}

.project-form {
    width: 100%;
    max-width: 500px;
}

.project-form.centered {
    max-width: 600px;
    margin: 0 auto;
}

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

.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: 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    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);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

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

.guarantee-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.guarantees-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 8px;
}

.guarantee-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.guarantee-item p {
    color: var(--text-gray);
    font-size: 15px;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: var(--secondary);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-hero {
    padding: 100px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

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

.page-hero p {
    font-size: 18px;
    color: var(--text-gray);
}

.about-split {
    display: flex;
    padding: 80px 0;
}

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

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

.value-card p {
    color: var(--text-gray);
    font-size: 15px;
}

.team-split {
    display: flex;
    background: var(--bg-white);
}

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

.certifications-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.cert-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.cert-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 8px;
}

.cert-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cert-item p {
    color: var(--text-gray);
    font-size: 14px;
}

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

.cta-simple h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-simple p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-simple .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-simple .btn-primary:hover {
    background: var(--bg-light);
}

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

.service-detail-item {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.price-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary);
    color: white;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin: 24px 0 12px;
}

.service-detail-content ul {
    margin-bottom: 24px;
}

.service-detail-content li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

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

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

.cta-form-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-form-section > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-split {
    display: flex;
    padding: 60px 0;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

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

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

.info-block a {
    color: var(--primary);
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.map-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 32px;
}

.map-placeholder {
    background: white;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed var(--border);
}

.map-placeholder p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

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

.availability-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 32px;
}

.availability-text {
    text-align: center;
    font-size: 17px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 20px;
}

.thanks-hero {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.checkmark-circle {
    margin: 0 auto 32px;
    width: 80px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.thanks-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 48px;
}

.thanks-info {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

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

.service-confirm {
    background: var(--success);
    color: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    padding: 60px 0;
    text-align: center;
}

.contact-reminder h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-reminder p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.contact-reminder a {
    color: var(--primary);
    font-weight: 600;
}

.legal-page {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.legal-page p {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

.legal-page a {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .expertise-split,
    .testimonial-split,
    .team-split,
    .cta-split,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .split-text,
    .split-content,
    .split-form {
        padding: 60px 30px;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px var(--shadow);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .split-text h2,
    .section-header h2,
    .process-section h2,
    .page-hero h1 {
        font-size: 32px;
    }

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

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

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}