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

:root {
    --color-primary: #2563eb;
    --color-secondary: #1e40af;
    --color-accent: #f59e0b;
    --color-dark: #1f2937;
    --color-light: #f3f4f6;
    --color-white: #ffffff;
    --color-text: #374151;
    --color-border: #d1d5db;
    --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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 3rem;
    right: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.nav-disclosure {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    background: #fef3c7;
    border-radius: 6px;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    padding-top: 8rem;
    padding-left: 3rem;
    padding-right: 3rem;
    align-items: center;
    gap: 3rem;
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
    transform: translateY(-3rem);
}

.hero-title-large {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hero-visual-block {
    flex: 1;
    position: relative;
    transform: translateY(2rem);
}

.hero-visual-block img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e5e7eb;
}

.intro-overlapping {
    display: flex;
    flex-wrap: wrap;
    padding: var(--spacing-xl) 3rem;
    gap: 2rem;
    background: var(--color-light);
    position: relative;
}

.intro-text-block {
    flex: 1 1 450px;
    padding: 3rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(2rem);
}

.intro-text-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.intro-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-image-card {
    flex: 0 1 400px;
    transform: translateY(-4rem);
}

.intro-image-card img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e5e7eb;
}

.intro-insight {
    flex: 1 1 500px;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    border-radius: 12px;
    transform: translateX(-2rem);
}

.intro-insight p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.services-grid-offset {
    padding: var(--spacing-xl) 3rem;
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-dark);
    max-width: 700px;
    font-weight: 700;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card-1 {
    transform: translateY(-1rem);
}

.service-card-2 {
    transform: translateY(1rem);
}

.service-card-3 {
    transform: translateY(-0.5rem);
}

.service-card-4 {
    transform: translateY(1.5rem);
}

.service-card-5 {
    transform: translateY(0);
}

.service-card-6 {
    transform: translateY(-1rem);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

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

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

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

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: var(--color-primary);
    transform: scale(1.02);
}

.form-section-diagonal {
    padding: var(--spacing-xl) 3rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.form-wrapper {
    transform: skewY(2deg);
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.form-wrapper > p {
    margin-bottom: 2rem;
    color: #6b7280;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row label {
    font-weight: 600;
    color: var(--color-dark);
}

.form-row input,
.form-row textarea {
    padding: 0.9rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-row input[readonly] {
    background: #f9fafb;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1.1rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.trust-section {
    padding: var(--spacing-lg) 3rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.trust-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.footer-asymmetric {
    background: var(--color-dark);
    color: #d1d5db;
    padding: var(--spacing-lg) 3rem var(--spacing-md);
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h3,
.footer-column h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-disclaimer {
    flex: 1 1 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 2rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #9ca3af;
}

.footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    color: var(--color-white);
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    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: 2rem;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.thanks-card {
    max-width: 600px;
    background: var(--color-white);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-white);
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.thanks-card p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.btn-back-home:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.about-hero {
    padding: 10rem 3rem 4rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    line-height: 1.8;
}

.about-content {
    padding: var(--spacing-xl) 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.contact-page {
    padding: 10rem 3rem 4rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 400px;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

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

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

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

.legal-page {
    padding: 10rem 3rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--color-dark);
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 10rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-content-offset {
        transform: none;
    }

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

    .hero-visual-block {
        transform: none;
    }

    .intro-text-block,
    .intro-insight {
        transform: none;
    }

    .intro-image-card {
        transform: none;
    }

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

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {
        transform: none;
    }

    .section-title-left {
        font-size: 2rem;
    }

    .form-section-diagonal {
        transform: none;
    }

    .form-wrapper {
        transform: none;
        padding: 2rem 1.5rem;
    }
}