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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 90vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: var(--spacing-lg) 10%;
    background: var(--bg-white);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

.hero-right {
    background: var(--bg-light);
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s;
}

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

.split-section {
    display: flex;
    min-height: 600px;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-content {
    padding: var(--spacing-lg) 10%;
    max-width: 600px;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
    color: var(--text-dark);
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.split-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.feature-list {
    margin: var(--spacing-md) 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

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

.value-grid {
    padding: var(--spacing-xl) 5%;
    background: var(--bg-light);
}

.value-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.value-intro h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.value-intro p {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.value-cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.value-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    width: calc(33.333% - var(--spacing-md));
    min-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
    border: 2px solid var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
}

.card-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: var(--spacing-md) 0;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    margin-right: 0.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s;
    margin-top: var(--spacing-sm);
}

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

.testimonial-section {
    padding: var(--spacing-xl) 5%;
    background: white;
}

.testimonial-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.testimonials {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.quote {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

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

.process-steps {
    margin-top: var(--spacing-md);
}

.step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-medium);
}

.cta-banner {
    padding: var(--spacing-xl) 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.cta-large:hover {
    transform: scale(1.05);
}

.form-section {
    padding: var(--spacing-xl) 5%;
    background: var(--bg-light);
}

.form-split {
    display: flex;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

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

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.form-left p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.badge-item {
    color: var(--success-color);
    font-weight: 600;
}

.contact-form {
    background: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    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%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: transform 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.footer-split {
    background: var(--text-dark);
    color: white;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 5%;
    flex-wrap: wrap;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: var(--spacing-sm);
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-color), #f5576c);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-md) 5%;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    padding: var(--spacing-xl) 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.team-section {
    padding: var(--spacing-xl) 5%;
    background: white;
}

.team-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.team-intro {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

.team-grid {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    width: 280px;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-sm);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.team-member p {
    color: var(--text-medium);
}

.stats-section {
    padding: var(--spacing-xl) 5%;
    background: var(--bg-light);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-medium);
    font-weight: 600;
}

.values-list {
    margin-top: var(--spacing-md);
}

.value-item {
    margin-bottom: var(--spacing-md);
}

.value-item h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-medium);
}

.services-detailed {
    padding: var(--spacing-lg) 5%;
}

.service-detail {
    margin-bottom: var(--spacing-xl);
}

.service-split {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    min-height: 500px;
}

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

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

.service-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(102, 126, 234, 0.2);
    margin-bottom: var(--spacing-sm);
}

.service-detail h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
}

.service-features {
    margin: var(--spacing-md) 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

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

.service-pricing {
    margin: var(--spacing-md) 0;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
}

.contact-split {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.contact-info {
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    margin-bottom: var(--spacing-md);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-note {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-note h3 {
    margin-bottom: 0.5rem;
}

.map-placeholder {
    width: 100%;
}

.thanks-section {
    padding: var(--spacing-xl) 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto var(--spacing-md);
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
}

.thanks-info {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.next-steps {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.next-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

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

.next-step p {
    color: var(--text-medium);
}

.thanks-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s;
}

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

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

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

.legal-page {
    padding: var(--spacing-xl) 5%;
    background: white;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.legal-updated {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.legal-content ul {
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
}

.legal-content ul li {
    list-style: disc;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
    }

    .hero-split,
    .split-section,
    .form-split,
    .contact-split,
    .service-split {
        flex-direction: column;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .split-content h2,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .value-intro h2 {
        font-size: 2rem;
    }

    .value-card {
        width: 100%;
    }

    .testimonials {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .stats-container {
        flex-direction: column;
    }

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

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

    .thanks-actions a {
        width: 100%;
    }
}
