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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a2332;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2563eb;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: #475569;
    margin-bottom: 36px;
    line-height: 1.5;
}

.hero-visual-block {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin-left: -60px;
    margin-top: 40px;
    margin-bottom: -40px;
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #1e40af;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1e3a8a;
}

.intro-offset {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1;
    max-width: 480px;
}

.intro-narrow h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    color: #334155;
    line-height: 1.7;
}

.intro-wide-card {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 60px;
}

.intro-wide-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 40px 30px 30px;
    color: #ffffff;
}

.card-overlay-text h3 {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 700;
}

.card-overlay-text p {
    font-size: 16px;
    opacity: 0.95;
}

.services-asymmetric {
    padding: 120px 60px;
    background-color: #fafbfc;
}

.section-header-diagonal {
    transform: translateX(-20px);
    margin-bottom: 60px;
}

.section-header-diagonal h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 800;
    max-width: 700px;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card.large-card {
    flex: 1 1 calc(55% - 12px);
}

.service-card.medium-card {
    flex: 1 1 calc(45% - 12px);
}

.service-card.small-card {
    flex: 1 1 calc(30% - 16px);
}

.service-visual {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-visual-small {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.service-visual-small img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 700;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 700;
}

.service-content p,
.service-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #1e40af;
    margin-top: auto;
    margin-bottom: 16px;
}

.btn-select-service {
    background-color: #0f172a;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select-service:hover {
    background-color: #1e293b;
}

.trust-diagonal {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    background-color: #f1f5f9;
}

.trust-content-overlap {
    flex: 1.3;
    padding-right: 40px;
}

.trust-content-overlap h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #0f172a;
    font-weight: 800;
}

.trust-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-block {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid #1e40af;
}

.trust-block h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 700;
}

.trust-block p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.trust-visual-offset {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-top: -40px;
    margin-bottom: 40px;
}

.trust-visual-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonials-stacked {
    padding: 100px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-stacked h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #0f172a;
    font-weight: 800;
}

.testimonial-item {
    margin-bottom: 40px;
    padding: 36px;
    background-color: #f8fafc;
    border-radius: 10px;
}

.testimonial-item.offset-right {
    margin-left: 120px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    color: #64748b;
    font-weight: 600;
}

.cta-immersive {
    padding: 120px 60px;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content-centered p {
    font-size: 20px;
    color: #e2e8f0;
    margin-bottom: 36px;
}

.cta-light {
    display: inline-block;
    background-color: #ffffff;
    color: #1a2332;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.cta-light:hover {
    background-color: #f1f5f9;
}

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

.form-container-offset {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #0f172a;
    font-weight: 800;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    background-color: #1e40af;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #1e3a8a;
}

.form-visual-block {
    flex: 0.8;
    overflow: hidden;
}

.form-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-asymmetric {
    background-color: #0f172a;
    color: #e2e8f0;
    padding: 60px 60px 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
}

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

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

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 200;
    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: 30px;
}

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

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cookie.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background-color: #64748b;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #475569;
}

.page-hero-minimal {
    padding: 100px 60px 60px;
    text-align: center;
    background-color: #f8fafc;
}

.page-hero-minimal h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 800;
}

.page-subtitle {
    font-size: 20px;
    color: #475569;
}

.about-story {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

.story-block-offset {
    flex: 1;
}

.story-block-offset h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 700;
}

.story-block-offset p {
    font-size: 18px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 20px;
}

.story-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.story-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-asymmetric {
    padding: 80px 60px;
    background-color: #f8fafc;
}

.values-asymmetric h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #0f172a;
    font-weight: 800;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(45% - 14px);
    background-color: #ffffff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.value-card.offset-card {
    margin-top: 40px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

.team-section {
    padding: 80px 60px;
}

.team-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #0f172a;
    font-weight: 800;
}

.competenze-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.competenza-item {
    flex: 1 1 calc(48% - 12px);
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.competenza-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 700;
}

.competenza-item p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.cta-section-centered {
    padding: 100px 60px;
    text-align: center;
    background-color: #f8fafc;
}

.cta-section-centered h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 800;
}

.cta-section-centered p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 60px 100px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    font-size: 16px;
    color: #475569;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.5;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-price-large {
    font-size: 36px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 20px;
}

.btn-service-cta {
    display: inline-block;
    background-color: #1e40af;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.btn-service-cta:hover {
    background-color: #1e3a8a;
}

.service-detail-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-layout {
    display: flex;
    padding: 80px 60px;
    gap: 80px;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0f172a;
    font-weight: 800;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
}

.contact-email-text {
    font-weight: 600;
    color: #1e40af;
}

.contact-visual-section {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

.contact-visual-section img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-additional-info {
    padding: 80px 60px;
    background-color: #f8fafc;
}

.contact-additional-info h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #0f172a;
    font-weight: 800;
}

.help-options {
    display: flex;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.help-option {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.help-option h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 700;
}

.help-option p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 16px;
}

.link-inline {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.link-inline:hover {
    color: #1e40af;
    text-decoration: underline;
}

.thanks-page {
    padding: 100px 60px;
    min-height: 60vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    color: #475569;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f0f9ff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 8px;
}

.thanks-details strong {
    color: #0f172a;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #0f172a;
    font-weight: 700;
}

.steps-list {
    display: flex;
    gap: 28px;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 240px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #1e40af;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-item p {
    font-size: 15px;
    line-height: 1.5;
    color: #475569;
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1e40af;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1e40af;
    border-radius: 6px;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background-color: #1e40af;
    color: #ffffff;
}

.legal-page {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #0f172a;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 10px;
}

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #64748b;
}

@media (max-width: 768px) {
    .hero-asymmetric,
    .intro-offset,
    .services-grid-irregular,
    .trust-diagonal,
    .form-section-asymmetric,
    .footer-main,
    .about-story,
    .values-grid,
    .competenze-list,
    .service-detail-block,
    .contact-layout,
    .help-options,
    .steps-list,
    .thanks-cta {
        flex-direction: column;
    }

    .nav-floating {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 16px;
    }

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

    .hero-visual-block {
        margin-left: 0;
        margin-top: 0;
        height: 300px;
    }

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

    .testimonial-item.offset-right {
        margin-left: 0;
    }

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