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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #4CAF50;
    --error-color: #ef4444;
}

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

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

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

a:hover {
    color: var(--primary-dark);
}

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

.container.narrow {
    max-width: 800px;
}

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.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: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.split-section.reverse .split-content {
    flex-direction: row-reverse;
}

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

.split-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.text-block h2 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.text-block p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    color: white;
}

.cta-inline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    border-bottom-color: var(--primary-dark);
}

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

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

.info-card {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

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

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

.testimonial {
    flex: 1;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.quote {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    font-weight: 600;
    opacity: 0.9;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.service-card {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

.form-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.form-group select:disabled {
    background: var(--bg-light);
    cursor: not-allowed;
}

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

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

.btn-submit:disabled {
    background: var(--text-light);
    cursor: not-allowed;
}

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

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

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

.sticky-btn {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: rgba(255,255,255,0.9);
}

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

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

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

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

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

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

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

.benefit-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7;
}

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

.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-banner .cta-primary:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

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

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.service-info {
    flex: 1;
    padding: 60px;
    position: relative;
}

.service-visual {
    flex: 1;
    min-height: 500px;
}

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

.popular-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.service-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-info h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
}

.comparison-table thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table th {
    font-weight: 600;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table td {
    color: var(--text-light);
}

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

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

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

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

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block,
.contact-map-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin: 2rem 0;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

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

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.thanks-section {
    padding: 100px 0;
    min-height: 70vh;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 3rem;
}

.step {
    flex: 1;
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
}

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

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

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

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

.legal-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.update-date {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-contact {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-top: 3rem;
}

.legal-contact h3 {
    margin-top: 0;
}

.cookie-settings {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

#resetCookies {
    margin-top: 1rem;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

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

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

    .split-left h1 {
        font-size: 2rem;
    }

    .card-grid,
    .services-grid,
    .testimonial-grid,
    .values-grid,
    .stats-grid,
    .process-steps,
    .contact-grid,
    .steps-grid {
        flex-direction: column;
    }

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

    .service-info {
        padding: 40px 30px;
    }

    .service-visual {
        min-height: 300px;
    }

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

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

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

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}

@media (max-width: 600px) {
    .split-left h1 {
        font-size: 1.75rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .text-block h2 {
        font-size: 1.75rem;
    }

    .cta-section h2,
    .values-section h2,
    .comparison-section h2,
    .process-section h2,
    .faq-section h2 {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}