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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

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

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

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

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

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.brand-logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    position: relative;
}

.nav-links a.active {
    color: #1a1a1a;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 0 5rem;
    margin-top: 70px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1593811167562-9cef47bfc4a7?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.page-hero {
    padding: 10rem 0 4rem;
    margin-top: 70px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.section-dark {
    background: #1a1a1a;
    color: #f5f5f5;
}

.section-light {
    background: #ffffff;
    color: #2c2c2c;
}

.section-accent {
    background: #f7f3ed;
    color: #2c2c2c;
}

.section-narrow {
    padding: 5rem 0;
}

.section-spacing {
    padding: 7rem 0;
}

.section-title-center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.text-large {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.text-medium {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.text-center-large {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-image-text {
    padding: 6rem 0;
}

.container-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.split-text {
    flex: 1;
}

.split-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.text-columns {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.text-columns .column {
    flex: 1;
}

.text-columns p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.testimonial-section {
    padding: 5rem 0;
}

.testimonial-large {
    font-size: 1.6rem;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.testimonial-author {
    text-align: center;
    font-size: 1rem;
    opacity: 0.8;
}

.card-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.card-benefit {
    flex: 1;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.card-benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-benefit p {
    font-size: 1rem;
    line-height: 1.6;
}

.list-benefits {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.list-benefits li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-featured {
    border-color: #1a1a1a;
    background: #f9f9f9;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.btn-select-service {
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #333;
}

.faq-simple {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.form-main {
    max-width: 600px;
    margin: 3rem auto 0;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #333;
}

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.3s ease;
}

.cta-secondary:hover {
    background: #333;
}

.cta-inline {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 1rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.97);
    padding: 1rem;
    text-align: center;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.sticky-cta-button {
    display: inline-block;
    background: #ffffff;
    color: #1a1a1a;
    padding: 0.9rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
}

.footer-main {
    background: #1a1a1a;
    color: #f5f5f5;
    padding: 4rem 0 2rem;
}

.footer-columns {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(245, 245, 245, 0.8);
}

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

.footer-col ul li a {
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.8);
}

.footer-col ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

.cookie-content a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

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

.btn-accept {
    background: #ffffff;
    color: #1a1a1a;
}

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

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

.text-image-flow {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.text-content {
    flex: 1.5;
}

.image-content {
    flex: 1;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.team-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.values-list {
    margin-top: 2rem;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-detailed {
    margin-top: 3rem;
}

.service-block {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.featured-service {
    background: #ffffff;
    border: 2px solid #1a1a1a;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.badge-popular {
    position: absolute;
    top: -35px;
    left: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 700;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.btn-cta-service {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.btn-cta-service:hover {
    background: #333;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f7f3ed;
    border-radius: 6px;
}

.map-placeholder {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.map-placeholder p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.map-placeholder ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.map-placeholder ul li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.thanks-hero {
    padding: 8rem 0 4rem;
    margin-top: 70px;
    text-align: center;
}

.thanks-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
}

.steps-list {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-confirmation {
    margin-top: 3rem;
    padding: 2rem;
    background: #f7f3ed;
    border-radius: 8px;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 1.2rem 0 0.6rem;
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f9f9f9;
    font-weight: 700;
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

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

    .text-columns {
        flex-direction: column;
        gap: 1.5rem;
    }

    .card-grid {
        flex-direction: column;
    }

    .pricing-cards {
        flex-direction: column;
    }

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

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

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }

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

    .text-image-flow {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title-center,
    .section-title-left {
        font-size: 1.8rem;
    }

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