﻿
:root {
    --navy: #071b3a;
    --blue: #0e3f82;
    --red: #c9212b;
    --cream: #f8f1e7;
    --white: #ffffff;
    --ink: #101827;
    --muted: #657083;
    --line: rgba(7,27,58,.14);
    --shadow: 0 24px 70px rgba(7,27,58,.16);
    --radius: 28px;
    --container: 1180px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter,system-ui,-apple-system,Segoe UI,sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55;
    overflow-x: hidden
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.2s ease;
    cursor: pointer;
}

    .flag:hover {
        transform: scale(1.1);
    }
a {
    color: inherit;
    text-decoration: none
}

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

.container {
    width: min(var(--container),calc(100% - 40px));
    margin-inline: auto
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 800;
    color: var(--red)
}

    .eyebrow:before {
        content: "";
        width: 34px;
        height: 2px;
        background: var(--red);
        display: inline-block
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 15px 22px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
    white-space: nowrap
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 16px 36px rgba(201,33,43,.25)
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 44px rgba(201,33,43,.35)
    }

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

.btn-ghost {
    border: 1px solid rgba(255,255,255,.35);
    color: var(--white);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px)
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 16px;
    left: 0;
    width: 100%;
    pointer-events: none
}

.nav {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 12px 18px;
    background: #fff;
    border: 1px solid rgba(255,255,255,.65);
    box-shadow: 0 14px 40px rgba(7,27,58,.12);
    backdrop-filter: blur(18px);
    border-radius: 999px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--navy)
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,var(--navy),var(--blue));
    color: white;
    font-weight: 900;
    box-shadow: inset 0 0 0 4px rgba(255,255,255,.12)
}

.brand span:last-child {
    font-size: 17px
}

.brand small {
    display: block;
    font-size: 10px;
    letter-spacing: .24em;
    color: var(--red);
    line-height: 1;
    text-transform: uppercase
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy)
}

.menu-btn {
    display: none;
    border: 0;
    background: var(--navy);
    color: #fff;
    border-radius: 999px;
    padding: 11px 14px;
    font-weight: 800
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 70px;
    background: radial-gradient(circle at 75% 15%,rgba(201,33,43,.18),transparent 28%),linear-gradient(135deg,#071b3a 0%,#0b2b5b 58%,#09244d 100%);
    color: var(--white);
    overflow: hidden
}

    .hero:before {
        content: "USA";
        position: absolute;
        left: -5vw;
        bottom: -13vw;
        font-size: 30vw;
        font-weight: 900;
        letter-spacing: -.1em;
        color: rgba(255,255,255,.035);
        line-height: 1
    }

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: 58px;
    align-items: center
}

.hero h1 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(54px,8vw,112px);
    line-height: .9;
    margin: 18px 0 24px;
    letter-spacing: -.07em;
    max-width: 790px
}

    .hero h1 span {
        color: #fff1d7;
        text-shadow: 0 8px 30px rgba(0,0,0,.18)
    }

.hero p {
    max-width: 670px;
    color: rgba(255,255,255,.78);
    font-size: clamp(17px,2vw,21px);
    margin: 0 0 34px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 42px;
    max-width: 720px
}

.stat {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px)
}

    .stat strong {
        font-size: 24px;
        display: block
    }

    .stat span {
        font-size: 13px;
        color: rgba(255,255,255,.68);
        font-weight: 700
    }

.visual-card {
    position: relative;
    border-radius: 42px;
    padding: 22px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 40px 120px rgba(0,0,0,.35);
    transform: rotate(2deg)
}

.visual-inner {
    min-height: 560px;
    border-radius: 32px;
    background: linear-gradient(180deg,#fff 0%,#f7f1e8 100%);
    color: var(--navy);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative
}

    .visual-inner:before {
        content: "";
        position: absolute;
        inset: auto -80px -90px auto;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: var(--red);
        opacity: .12
    }

.flag-lines {
    display: grid;
    gap: 10px;
    margin-top: 20px
}

    .flag-lines i {
        height: 20px;
        border-radius: 999px;
        background: var(--red)
    }

        .flag-lines i:nth-child(even) {
            background: var(--cream)
        }

.gateway {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    align-items: end;
    margin-top: 36px
}

.tower {
    background: var(--navy);
    border-radius: 18px 18px 6px 6px;
    min-height: 180px
}

    .tower:nth-child(2) {
        min-height: 245px;
        background: var(--blue)
    }

    .tower:nth-child(3) {
        min-height: 135px;
        background: var(--red)
    }

.badge {
    position: absolute;
    right: -22px;
    bottom: 58px;
    background: var(--red);
    color: white;
    padding: 22px 20px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    font-weight: 900;
    max-width: 210px
}

    .badge small {
        display: block;
        opacity: .78;
        text-transform: uppercase;
        letter-spacing: .14em;
        font-size: 10px
    }

.marquee {
    background: var(--red);
    color: #fff;
    overflow: hidden;
    white-space: nowrap
}

.marquee-track {
    display: flex;
    gap: 36px;
    animation: marquee 26s linear infinite;
    padding: 18px 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em
}

    .marquee-track span:after {
        content: "•";
        margin-left: 36px
    }

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

section {
    padding: 108px 0
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px
}

    .section-head h2 {
        font-family: 'Playfair Display',serif;
        font-size: clamp(42px,5vw,76px);
        line-height: .95;
        letter-spacing: -.055em;
        margin: 12px 0 0;
        color: var(--navy)
    }

    .section-head p {
        max-width: 430px;
        color: var(--muted);
        font-weight: 600
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 18px
}

.service-card {
    position: relative;
    min-height: 330px;
    padding: 28px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(7,27,58,.08);
    overflow: hidden;
    transition: .25s ease
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow)
    }

    .service-card:after {
        content: "";
        position: absolute;
        inset: auto 20px 20px auto;
        width: 94px;
        height: 94px;
        border-radius: 50%;
        background: rgba(201,33,43,.09)
    }

    .service-card .num {
        font-size: 13px;
        font-weight: 900;
        color: var(--red)
    }

    .service-card h3 {
        font-size: 25px;
        line-height: 1.05;
        letter-spacing: -.04em;
        margin: 38px 0 16px;
        color: var(--navy)
    }

    .service-card p {
        color: var(--muted);
        font-weight: 600;
        margin: 0
    }

.icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-top: 24px
}

.about {
    background: #fff
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: center
}

.image-panel {
    min-height: 560px;
    border-radius: 42px;
    background: linear-gradient(145deg,rgba(7,27,58,.92),rgba(14,63,130,.9)),url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80') center/cover;
    position: relative;
    overflow: hidden
}

    .image-panel:after {
        content: "From Italy to USA";
        position: absolute;
        left: 28px;
        bottom: 28px;
        color: #fff;
        font-size: 54px;
        font-family: 'Playfair Display',serif;
        font-weight: 800;
        line-height: .9;
        letter-spacing: -.06em
    }

.content-block h2 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(42px,5vw,74px);
    line-height: .95;
    letter-spacing: -.055em;
    color: var(--navy);
    margin: 12px 0 26px
}

.content-block p {
    color: var(--muted);
    font-size: 18px;
    font-weight: 600
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 30px 0
}

.check {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-weight: 800;
    color: var(--navy)
}

    .check:before {
        content: "✓";
        flex: 0 0 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--red);
        color: white;
        display: grid;
        place-items: center;
        font-size: 14px
    }

.process {
    background: var(--navy);
    color: white
}

    .process .section-head h2 {
        color: white
    }

    .process .section-head p {
        color: rgba(255,255,255,.66)
    }

.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.step {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.13)
}

    .step strong {
        font-size: 46px;
        color: #ffe6c0
    }

    .step h3 {
        font-size: 25px;
        margin: 24px 0 12px
    }

    .step p {
        color: rgba(255,255,255,.68);
        font-weight: 600;
        margin: 0
    }

.cta {
    padding: 90px 0;
    background: linear-gradient(135deg,var(--red),#8b1019);
    color: #fff
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center
}

.cta h2 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(40px,6vw,82px);
    line-height: .92;
    letter-spacing: -.06em;
    margin: 0
}

.cta p {
    font-size: 18px;
    color: rgba(255,255,255,.78);
    max-width: 720px
}

.cta .btn {
    background: #fff;
    color: var(--red)
}

.contact {
    background: var(--cream)
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 26px
}

.contact-card, .form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(7,27,58,.08)
}

.contact-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--line)
}

    .contact-item:last-child {
        border-bottom: 0
    }

    .contact-item span {
        display: block;
        color: var(--muted);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .12em;
        font-weight: 900
    }

    .contact-item a, .contact-item strong {
        font-size: 20px;
        font-weight: 900;
        color: var(--navy)
    }

form {
    display: grid;
    gap: 14px
}

.field {
    display: grid;
    gap: 8px
}

label {
    font-weight: 900;
    color: var(--navy);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em
}

input, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 15px 16px;
    font: inherit;
    background: #fbfaf8;
    color: var(--ink);
    outline: none
}

textarea {
    min-height: 130px;
    resize: vertical
}

    input:focus, textarea:focus, select:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(14,63,130,.10)
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.success {
    display: none;
    margin-top: 12px;
    padding: 14px;
    border-radius: 16px;
    background: #ecfff4;
    color: #126b37;
    font-weight: 800
}
.error {
    display: none;
    margin-top: 12px;
    padding: 14px;
    border-radius: 16px;
    background: #c9212b;
    color: #ffffff;
    font-weight: 800
}
footer {
    padding: 34px 0;
    background: #06152d;
    color: rgba(255,255,255,.65)
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    font-size: 14px
}

    .footer-row strong {
        color: #fff
    }

/* CHI SIAMO SECTION */
.about-company {
    padding: 110px 0;
    background: linear-gradient(135deg,#f7f8fb 0%,#ffffff 100%);
}

.about-company-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.about-company-visual {
    position: relative;
    min-height: 430px;
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient(rgba(7,27,58,.65),rgba(7,27,58,.70)), url('https://images.unsplash.com/photo-1499092346589-b9b6be3e94b2?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center 25%;
    box-shadow: 0 24px 70px rgba(7,27,58,.18);
}

.about-company-card {
    position: absolute;
    left: 28px;
    right: 28px;
    top: 28px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
}

    .about-company-card span {
        display: inline-block;
        margin-bottom: 10px;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .16em;
        color: var(--red);
        text-transform: uppercase;
    }

    .about-company-card h3 {
        margin: 0;
        color: var(--navy);
        font-size: 34px;
        line-height: 1;
        letter-spacing: -.04em;
    }

.about-company-content h2 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(42px,5vw,72px);
    line-height: .95;
    letter-spacing: -.055em;
    color: var(--navy);
    margin: 14px 0 24px;
}

.about-company-content p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 600;
}

@media (max-width:1200px) {
    .services-grid {
        grid-template-columns: repeat(3,1fr)
    }
}

@media (max-width:1040px) {
    .hero-grid, .about-grid, .contact-grid, .cta-box, .about-company-grid {
        grid-template-columns: 1fr
    }

    .visual-card {
        max-width: 640px;
        margin: auto
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .steps {
        grid-template-columns: 1fr
    }

    .section-head {
        display: block
    }
}

@media (max-width:760px) {
    .about-company {
        padding: 80px 0
    }

    .about-company-visual {
        min-height: 320px
    }

    .about-company-card h3 {
        font-size: 28px
    }

    .container {
        width: min(100% - 28px,var(--container))
    }

    .nav-links {
        position: absolute;
        top: 74px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border-radius: 24px;
        padding: 22px;
        box-shadow: var(--shadow)
    }

        .nav-links.open {
            display: flex
        }

    .menu-btn {
        display: inline-flex
    }

    .nav .btn {
        display: none
    }

    .hero {
        padding-top: 128px
    }

    .hero-stats, .services-grid, .form-row {
        grid-template-columns: 1fr
    }

    .visual-inner {
        min-height: 420px
    }

    .badge {
        right: 12px;
        bottom: 18px
    }

    .section-head h2, .content-block h2, .cta h2 {
        font-size: 44px
    }

    .image-panel {
        min-height: 390px
    }

        .image-panel:after {
            font-size: 40px
        }

    .footer-row {
        flex-direction: column;
        text-align: center
    }

    .brand span:last-child {
        font-size: 14px
    }
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #444;
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    display: none;
    font-size: 14px;
}

.cookie-text a {
    color: #4da3ff;
    text-decoration: underline;
}

.cookie-options {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .cookie-options label {
        cursor: pointer;
        font-size: 13px;
    }

    .cookie-options input {
        margin-right: 5px;
    }

.cookie-buttons {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}
.cookie-banner input {
    width: inherit !important
}
.cookie-banner label {
    color:#fff
}