@charset "utf-8";
/* CSS Document */
*,
*::before,
*::after {
    box-sizing: border-box;
}
:root {
    --accent-red: #b11226;
}
body {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    background: #161616;
    color: #EAEAEA;
    cursor: url("../cross.svg") 12 12, auto;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 16px;
}
header {
    text-align: center;
    margin-bottom: 64px;
    padding-top: 6rem;
}
header h1 {
    font-family: Impact, Haettenschweiler, 'Arial Black', sans-serif;
    font-size: 72px;
    font-weight: 400;
    margin: 0 0 16px;
    white-space: nowrap; /* 🔒 blocca lo spezzamento su desktop */
}
header h1 span {
    display: inline;
}
@media (max-width: 710px) {
    header h1 {
        white-space: normal; /* sblocca */
    }
    header h1 span {
        display: block;
    }
}
footer header h2 {
    font-family: Impact, Haettenschweiler, 'Arial Black', sans-serif;
    font-size: 72px;
    font-weight: 400;
    margin-bottom: 48px;
    margin-top: 0px;
}
.claim {
    margin: 0;
    padding: 0;
    font-size: inherit;     
    font-weight: normal;   
    color: #7A7A7A;
    letter-spacing: 0.525rem;
    display: block;
    margin-top: -0.5rem;
    position: relative;
    left: 0.26rem;
}
@media (max-width: 710px) {
	.claim span {
    display: block;
    }
    .claim {
        letter-spacing: 0.35rem; /* opzionale: su mobile respira meglio */
    }
}
.payoff {
    font-size: 1.8rem;
    color: var(--accent-red);
    margin: 4rem 0 5.5rem;
    opacity: 0;
    animation: fadeIn 1.2s ease-out 0.5s forwards;
    font-family: "Syne", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.grid {
    display: flex;
    gap: 20px;
    margin-bottom: 112px;
}
.col {
    flex: 0 0 32%;
}
img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s forwards;
    border-radius: 8px;
}
.col img { animation-delay: .2s; }
.col:nth-child(2) img { animation-delay: .4s; }
.col:nth-child(3) img { animation-delay: .6s; }
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
.cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
}
.cta-inner {
    width: 90%;
    max-width: 300px;
}
.cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    background: #EAEAEA;
    color: #161616;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    cursor: pointer;
    animation: elegantPulse 3s infinite ease-in-out;
}
.cta:hover {
    background: var(--accent-red);
    color: #EAEAEA;
}
@keyframes elegantPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1px); }
}
.about {
    width: 100%;
    background: #EAEAEA;
    color: #161616;
    margin-top: 128px;
    margin-bottom: 0;
    padding: 52px 16px 92px;
}
.about-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.about h2 {
    font-family: Impact, Haettenschweiler, 'Arial Black', sans-serif;
    font-size: 72px;
    margin-bottom: 60px;
    font-weight: 400;
    color: #161616;
}
.about p {
    margin-bottom: 16px;
    line-height: 1.6;
    text-align: justify;
}
.about--seo {
    max-width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0.01;
    margin: 0 !important;
    padding: 0 !important;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 64px;
    margin-top: 84px;
}
form input {
    width: 90%;
    max-width: 300px;
    padding: 14px 12px;
    margin-bottom: 16px;
    background: #EAEAEA;
    border: none;
    color: #161616;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
}
::placeholder {
    color: #666;
    font-family: 'Oswald', sans-serif;
}
@media (max-width: 900px) {
    .grid {
        flex-direction: column;
    }
    .col {
        flex: 0 0 100%;
    }
}
footer {
    text-align: center;
    background-image: url(../img/pattern.png);
    background-repeat: repeat;
    margin-top: 0;
    padding-top: 16px;
    overflow: hidden;
	border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #989898, transparent) 1;
}
footer header h3 {
    font-family: Impact, Haettenschweiler, 'Arial Black', sans-serif;
    font-size: 72px;
    font-weight: 400;
    margin-bottom: 48px;
    margin-top: 0;
}
.bottomtext {
    color: #7A7A7A;
    font-size: 12px;
}
#linkedinIcon, #instaIcon {
    font-size: 50px;
    color: #EAEAEA;
    transition: color 0.3s ease, transform 0.3s ease;
    margin-right: 20px;
    margin-bottom: 48px;
}
a:hover #linkedinIcon, a:hover #instaIcon {
    color: var(--accent-red);
    transform: translateY(-1px);
}