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

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #4CAF50;
    --white: #ffffff;
}

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

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

.narrow-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-split {
    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;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.hero-split {
    padding: 80px 0;
}

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

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

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

.hero-content .label {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-primary-alt {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background: var(--bg-gray);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.hero-image,
.image-block {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.problem-section,
.solution-intro,
.features-split,
.tech-section,
.benefits-section,
.testimonial-section,
.pricing-section,
.form-section,
.cta-section {
    padding: 80px 0;
}

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

.content-block {
    padding: 40px 0;
}

.content-block h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.content-block h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.label-small {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

.stat-item strong {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-item span {
    font-size: 14px;
    color: var(--text-light);
}

.solution-intro {
    text-align: center;
}

.solution-intro h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.solution-intro p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 48px;
}

.benefit-card {
    flex: 1;
    min-width: 260px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.testimonial-split {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-content blockquote {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.pricing-section {
    background: var(--bg-light);
}

.pricing-header {
    text-align: center;
    margin-bottom: 56px;
}

.pricing-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

.service-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    width: 340px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

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

.service-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.service-features li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}

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

.btn-select {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

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

.form-section {
    background: var(--bg-gray);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    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-color);
}

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

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

.cta-section {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s;
}

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

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

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

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

.btn-sticky {
    display: block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.5);
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

.btn-cookie:hover {
    opacity: 0.9;
}

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

.btn-cookie-alt:hover {
    opacity: 0.8;
}

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

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

.page-hero .lead {
    font-size: 20px;
    color: var(--text-light);
}

.story-section,
.mission-section,
.approach-section {
    padding: 80px 0;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.team-section {
    padding: 80px 0;
    text-align: center;
}

.team-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.team-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.achievements-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.achievements-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 56px;
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.achievement-item {
    text-align: center;
    min-width: 240px;
}

.achievement-number {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 12px;
}

.achievement-item p {
    font-size: 16px;
    opacity: 0.9;
}

.services-detail-section {
    padding: 80px 0;
}

.services-detail-section.gray-bg {
    background: var(--bg-light);
}

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

.process-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 56px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 48px;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

.contact-item {
    margin-bottom: 32px;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-item p,
.contact-item a {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-item a {
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.contact-box {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.btn-link:hover {
    text-decoration: underline;
}

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

.directions-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 48px;
}

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.direction-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.direction-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

.thanks-service {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next {
    text-align: left;
    background: var(--bg-gray);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.thanks-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

.legal-container h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
}

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

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.legal-container li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background: var(--bg-gray);
    font-weight: 700;
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

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

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

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

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

    .content-block h2 {
        font-size: 32px;
    }

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

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

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

@media (max-width: 640px) {
    .nav-container {
        height: auto;
        padding: 16px 20px;
        flex-wrap: wrap;
    }

    .nav-links {
        width: 100%;
        margin-top: 16px;
        flex-wrap: wrap;
        gap: 16px;
    }

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

    .hero-content p {
        font-size: 17px;
    }

    .stats-inline {
        flex-direction: column;
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

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

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