/* Landing campagne — design system condiviso (ce/em/im, duplicato by design).
   Palette ancorata al brand: navy #001f3f, arancio CTA #d9480f, accento #ffa500. */

:root {
    --lp-navy: #001f3f;
    --lp-navy-soft: #0a3260;
    --lp-blue: #10457f;
    --lp-cta: #d9480f;
    --lp-cta-hover: #b93d0c;
    --lp-accent: #ffa500;
    --lp-bg: #f6f8fb;
    --lp-text: #1f2937;
    --lp-muted: #5b6675;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--lp-text);
    line-height: 1.65;
}

h1, h2, h3, h4, h5 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    color: var(--lp-navy);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* --- Bottoni CTA --- */
.btn-lp {
    background: var(--lp-cta);
    border: 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 36px;
    border-radius: 50rem;
    box-shadow: 0 8px 24px rgba(217, 72, 15, 0.35);
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-lp:hover,
.btn-lp:focus {
    background: var(--lp-cta-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(217, 72, 15, 0.45);
}

.btn-lp-ghost {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50rem;
    transition: background 0.15s, color 0.15s;
}

.btn-lp-ghost:hover,
.btn-lp-ghost:focus {
    background: #fff;
    color: var(--lp-navy);
}

/* --- Hero --- */
.lp-hero {
    background: linear-gradient(150deg, var(--lp-navy) 0%, var(--lp-navy-soft) 55%, var(--lp-blue) 100%);
    color: #fff;
    padding: 4.5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-hero::after {
    /* alone caldo dietro al titolo, tocco "campagna" */
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 55%;
    height: 120%;
    background: radial-gradient(closest-side, rgba(255, 165, 0, 0.18), transparent 70%);
    pointer-events: none;
}

.lp-hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 165, 0, 0.15);
    border: 1px solid rgba(255, 165, 0, 0.5);
    color: var(--lp-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50rem;
    margin-bottom: 1.25rem;
}

.lp-hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 3.1rem);
    max-width: 820px;
    margin: 0 auto 1rem;
}

.lp-hero .hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto 2rem;
}

.hero-micro {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 2rem;
    padding: 0;
    list-style: none;
}

.trust-chips li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50rem;
}

/* --- Pain points --- */
.pain-section { background: #fff; padding: 4.5rem 0; }

.pain-img {
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 31, 63, 0.18);
}

.pain-list { list-style: none; padding: 0; margin: 0; }

.pain-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 9px 0;
    font-size: 1.02rem;
    border-bottom: 1px solid #eef1f5;
}

.pain-list li:last-child { border-bottom: 0; }

.pain-list .bi {
    color: var(--lp-cta);
    font-size: 1.1rem;
    line-height: 1.6;
    flex-shrink: 0;
}

/* --- Banda di transizione (citazione) --- */
.quote-band {
    background: var(--lp-bg);
    padding: 3rem 0;
    text-align: center;
}

.quote-band p {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--lp-navy);
    max-width: 760px;
    margin: 0 auto;
}

.quote-band .accent { color: var(--lp-cta); }

/* --- Benefit cards --- */
.benefits-section { background: var(--lp-bg); padding: 4.5rem 0; }

.benefit-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.15s, box-shadow 0.15s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 31, 63, 0.10);
}

.benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(217, 72, 15, 0.10);
    color: var(--lp-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.05rem;
    color: var(--lp-navy);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--lp-muted);
    margin: 0;
}

/* --- Metodo: timeline --- */
.method-section { background: #fff; padding: 4.5rem 0; }

.method-intro {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.08rem;
    color: var(--lp-muted);
}

.method-intro .keyword { color: var(--lp-cta); font-weight: 700; }

.method-img {
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 31, 63, 0.18);
    position: sticky;
    top: 24px;
}

.timeline { list-style: none; padding: 0; margin: 0; counter-reset: step; }

.timeline li {
    position: relative;
    padding: 0 0 1.8rem 62px;
    counter-increment: step;
}

.timeline li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--lp-navy);
    color: var(--lp-accent);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline li::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 46px;
    bottom: 4px;
    width: 2px;
    background: #e2e8f0;
}

.timeline li:last-child::after { display: none; }

.timeline h3 {
    font-size: 1.08rem;
    color: var(--lp-navy);
    margin-bottom: 0.35rem;
}

.timeline p { color: var(--lp-muted); font-size: 0.97rem; margin: 0; }

/* --- Banda CTA intermedia --- */
.banner-cta {
    background: linear-gradient(120deg, var(--lp-navy) 0%, var(--lp-blue) 100%);
    color: #fff;
    text-align: center;
    padding: 3.5rem 0;
}

.banner-cta p.lead-line {
    font-size: clamp(1.2rem, 2.6vw, 1.6rem);
    font-weight: 700;
    max-width: 780px;
    margin: 0 auto 1.75rem;
}

/* --- Partnership --- */
.partner-section { background: var(--lp-bg); padding: 4rem 0; }

.partner-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.partner-card img { max-width: 190px; height: auto; }

.partner-card p { color: var(--lp-muted); margin-bottom: 0.75rem; }

.partner-card p:last-child { margin-bottom: 0; }

/* --- Chi sono: foto — testo — action figure --- */
.bio-section { background: #fff; padding: 4.5rem 0; }

.bio-photo {
    width: 100%;
    max-width: 300px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 31, 63, 0.15);
}

.bio-text p { color: var(--lp-text); font-size: 1.02rem; }

/* --- CTA finale --- */
.final-cta {
    background: linear-gradient(150deg, var(--lp-navy) 0%, var(--lp-navy-soft) 60%, var(--lp-blue) 100%);
    color: #fff;
    text-align: center;
    padding: 4.5rem 0;
}

.final-cta h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    max-width: 760px;
    margin: 0 auto 1rem;
}

.final-cta .sub {
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto 2rem;
}

.final-cta .actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .post-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 1.5rem;
}

.final-cta a { color: var(--lp-accent); }

/* --- Footer --- */
.lp-footer {
    background: #00152b;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    padding: 2rem 0 5.5rem; /* spazio per la barra sticky su mobile */
    font-size: 0.85rem;
}

/* --- WhatsApp flottante --- */
.wa-float {
    position: fixed;
    bottom: 88px;
    right: 18px;
    z-index: 1040;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* --- Barra CTA sticky (solo mobile) --- */
.sticky-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    background: #fff;
    border-top: 1px solid #e8edf3;
    box-shadow: 0 -6px 18px rgba(0, 31, 63, 0.12);
    padding: 10px 14px;
    display: none;
}

.sticky-cta-bar .btn-lp {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    box-shadow: none;
}

@media (max-width: 767.98px) {
    .sticky-cta-bar { display: block; }

    .partner-card { flex-direction: column; text-align: center; }

    .method-img { position: static; margin-bottom: 1.5rem; }
}

@media (min-width: 768px) {
    .lp-footer { padding-bottom: 2rem; }

    .wa-float { bottom: 20px; }
}
