/* ========================================
   ItaVoIP — Stile sito pubblico
   Font: Inter (body) + Poppins (titoli)
   Framework: Bootstrap 5
   ======================================== */

/******************************** Typography ********************************/

* {
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
}

body {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #494d51;
    line-height: 1.7;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

a {
    color: #b22530;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

a:hover {
    color: #e63946;
}

p {
    font-size: 15px;
}

b, strong {
    font-weight: 700;
}

/******************************** Header ********************************/

.cont-header {
    position: fixed;
    z-index: 100;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.logo-itavoip {
    max-width: 120px;
    height: auto;
}

.link-menu {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e !important;
    transition: color 0.2s;
}

.link-menu:hover {
    color: #e63946 !important;
    text-decoration: none !important;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
}

.btn-ita-outline {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #e63946;
    background: transparent;
    border: 2px solid #e63946;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-ita-outline:hover {
    background: #e63946;
    color: #fff !important;
}

/******************************** Buttons (shared) ********************************/

.btn-ita,
.btn-ita-outline,
.navbar-toggler {
    outline: none !important;
    box-shadow: none !important;
}

.btn-ita:focus,
.btn-ita:active,
.btn-ita:focus-visible {
    background-color: #e63946 !important;
    border-color: #e63946 !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-ita-outline:focus,
.btn-ita-outline:active,
.btn-ita-outline:focus-visible {
    background: transparent !important;
    color: #e63946 !important;
    border-color: #e63946 !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-ita-outline.btn-outline-white:focus,
.btn-ita-outline.btn-outline-white:active,
.btn-ita-outline.btn-outline-white:focus-visible {
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
}

.btn-ita.btn-white:focus,
.btn-ita.btn-white:active,
.btn-ita.btn-white:focus-visible {
    background: #fff !important;
    border-color: #fff !important;
    color: #e63946 !important;
}

.btn-ita {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #fff;
    background-color: #e63946;
    border: 2px solid #e63946;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-ita:hover {
    background-color: #b22530;
    border-color: #b22530;
    color: #fff;
}

/* Dimensioni: grande (default pagina) */
.btn-ita,
.btn-ita-outline {
    font-size: 15px;
    padding: 12px 30px;
}

/* Dimensioni: piccolo (navbar) */
.btn-ita.btn-sm,
.btn-ita-outline.btn-sm {
    font-size: 14px;
    padding: 6px 20px;
}

/* Variante outline bianca (per sfondi scuri/colorati) */
.btn-ita-outline.btn-outline-white {
    color: #fff;
    border-color: #fff;
}

.btn-ita-outline.btn-outline-white:hover {
    background: #fff;
    color: #e63946 !important;
}

/* Variante piena bianca (per sfondi colorati) */
.btn-ita.btn-white {
    background: #fff;
    border-color: #fff;
    color: #e63946;
}

.btn-ita.btn-white:hover {
    background: #f0f0f5;
    border-color: #f0f0f5;
    color: #b22530;
}

/******************************** Hero ********************************/

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-glass-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 10px 14px;
    transition: transform 0.2s, background 0.2s;
}

.hero-glass-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.hero-glass-card div {
    line-height: 1.15;
}

.hero-glass-card strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 1px;
}

.hero-glass-card strong .text-success-hero {
    color: #4ade80;
    font-size: 13px;
    margin-right: 4px;
}

.hero-glass-card span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.1;
}

/* Hero cards mobile carousel */
.hero-carousel-dots {
    display: none;
}

@media (max-width: 991.98px) {
    .hero-cards {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .hero-cards::-webkit-scrollbar {
        display: none;
    }
    .hero-glass-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        flex-shrink: 0;
        scroll-snap-align: start;
        box-sizing: border-box;
    }
    .hero-glass-card:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.12);
    }
    .hero-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
    }
    .hero-carousel-dots .hero-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.35);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.25s, transform 0.25s;
    }
    .hero-carousel-dots .hero-dot.active {
        background: #fff;
        transform: scale(1.25);
    }
    .hero-box .container {
        padding-bottom: 40px !important;
    }
}

.hero-box {
    background: linear-gradient(135deg, #b01520 0%, #c1121f 50%, #d4232e 100%);
    padding: 150px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-spiral {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-spiral svg {
    width: 100%;
    min-height: 450px;
    flex-shrink: 0;
}
.page-header .hero-spiral svg {
    margin-top: 70px;
}

.hero-box h1 {
    color: #fff;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
}

.hero-box h1 span {
    color: #ffcb47;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-box h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    opacity: 0.85;
}

.hero-wave-top {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-wave-top svg {
    display: block;
    width: 100%;
    height: 120px;
}

.tagline-wave {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.tagline-wave p {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

.tagline-wave strong {
    color: #1a1a2e;
}

/******************************** Page Header (pagine interne) ********************************/

.page-header {
    background: linear-gradient(180deg, #f5f5f5 0%, #ededed 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0;
}
.page-header h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #c1121f;
    border-radius: 2px;
    margin: 16px auto 15px;
}
.page-header p {
    font-size: 16px;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}
.page-header-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.page-header-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 15px;
    color: #3a3a3a;
    max-width: 600px;
    margin: 0 auto;
}

/******************************** Funzionalità ********************************/

.funz-a {
    background: #f5f5f5;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.funz-a:hover {
    color: inherit;
}
.funz-a-link {
    cursor: pointer;
    transition: background 0.2s;
}
.funz-a-link:hover {
    background: #efefef;
}
.funz-a::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    background: rgba(0,0,0,.03);
    width: 90px;
    height: 90px;
    top: -25px;
    right: -25px;
    box-shadow: -180px 70px 0 20px rgba(0,0,0,.025);
}
.funz-a i {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c1121f, #e63946);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 3px 10px rgba(193,18,31,.2);
}
.funz-a h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a2e;
}
.funz-a p {
    font-size: 13.5px;
    line-height: 1.5;
    color: #3a3a3a;
    margin: 0;
}
.funz-arrow {
    flex-shrink: 0;
    width: auto !important;
    height: auto !important;
    background: none !important;
    box-shadow: none !important;
    font-size: 16px;
    color: #c1121f !important;
    margin-left: auto;
    transition: transform 0.2s;
}
.funz-a-link:hover .funz-arrow {
    transform: translateX(3px);
}

/* Funz-a mobile */
@media(max-width:768px) {
    .funz-a { padding: 16px; gap: 12px; }
    .funz-a i { width: 40px; height: 40px; font-size: 17px; }
    .funz-a h5 { font-size: 14px; margin-bottom: 3px; }
    .funz-a p { font-size: 12.5px; line-height: 1.45; }
    .funz-a::after { width: 70px; height: 70px; top: -20px; right: -20px; }
    .row.g-4 .col-lg-4, .row.g-4 .col-md-6 { padding-bottom: 0; }
    .row.g-4 { --bs-gutter-y: 0.75rem; --bs-gutter-x: 0.75rem; }
}

/* Sfondo pallini condiviso Funzionalità + Prezzi */
.dots-bg {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}
.dots-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #e5e5e5 1px, transparent 1px);
    background-size: 20px 20px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 120px, #000 calc(100% - 120px), transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 120px, #000 calc(100% - 120px), transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.dots-bg > section > .container {
    position: relative;
    z-index: 1;
}

.funz-c-section {
    position: relative;
}
.funz-c-section > .container {
    position: relative;
    z-index: 1;
}


/******************************** Vantaggi — Proposta D (card rosse) ********************************/

.vantaggio-d {
    background: #c1121f;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(193, 18, 31, 0.25);
    position: relative;
    overflow: hidden;
}

.vantaggio-d::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.vantaggio-d::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.vantaggio-d:hover {
    box-shadow: 0 12px 32px rgba(193, 18, 31, 0.4);
    transform: translateY(-4px);
}

.vantaggio-d-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
}

.vantaggio-d h3,
.vantaggio-d h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.vantaggio-d p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.5;
}

.vantaggio-d p strong {
    color: #fff;
}


/******************************** Configuratore prezzi ********************************/

.pricing-section { background: transparent; }


/******************************** Configuratore prezzi — Blocchi ********************************/

.pricing-blocks {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.pricing-block {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 0;
    text-align: center;
    flex: 1 1 0;
    min-width: 140px;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.2s;
}

.pricing-block:hover {
    border-color: #e63946;
}

.pricing-block-top {
    padding: 24px 20px 16px;
    position: relative;
}

.pricing-help-link {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #f2f2f2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #bbb;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pricing-help-link:hover {
    border-color: #e63946;
    color: #e63946;
    background: #fce4e6;
}

.pricing-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(230, 57, 70, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #e63946;
    margin-bottom: 12px;
}

.pricing-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}

.pricing-price {
    font-size: 26px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: #c1121f;
}

.pricing-price small {
    font-size: 12px;
    font-weight: 400;
    color: #888;
}

.pricing-plus {
    font-size: 22px;
    color: #bbb;
    flex-shrink: 0;
    align-self: center;
}

.pricing-equals {
    font-size: 24px;
    font-weight: 700;
    color: #c1121f;
    flex-shrink: 0;
    align-self: center;
}

.pricing-block-result {
    background: #fff !important;
    border-radius: 16px;
    border: 1px solid #eee !important;
    color: #1a1a2e;
    padding: 0;
    position: relative;
    overflow: hidden;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1.5 1 0;
    min-width: 220px;
}

.pricing-block-result::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(0,0,0,0.025);
}

.pricing-block-result::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0,0,0,0.02);
}

.pricing-block-result:hover {
    border-color: #ccc !important;
}

.pricing-result-header {
    background: #e63946;
    padding: 14px 20px;
}

.pricing-result-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
}

.pricing-result-body {
    padding: 20px 24px 24px;
    position: relative;
}

.pricing-result-circle-1 {
    position: absolute;
    top: 0;
    left: -25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.015);
}

.pricing-result-circle-2 {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.02);
}

.pricing-result-price {
    font-size: 36px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: #e63946;
    line-height: 1;
    position: relative;
}

.pricing-result-price small {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.pricing-result-detail {
    list-style: none;
    padding: 0;
    margin: 12px auto 0;
    display: grid;
    grid-template-columns: auto auto;
    gap: 6px 20px;
    position: relative;
    width: fit-content;
}

.pricing-result-detail li {
    font-size: 12px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}

.pricing-result-detail li.inactive {
    color: #bbb;
}

.pricing-result-detail li i {
    font-size: 14px;
    color: #2ecc71;
    flex-shrink: 0;
}

.pricing-result-detail li.inactive i {
    color: #ccc;
}

/* Counter controls — red strip */
.pricing-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    background: #f5f5f5;
    border-top: 1px solid #eee;
    padding: 10px 0;
}

.pricing-btn-minus,
.pricing-btn-plus {
    width: 32px;
    height: 32px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: transparent;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.pricing-btn-minus:hover,
.pricing-btn-plus:hover {
    background: rgba(230,57,70,0.08);
    border-color: #e63946;
    color: #e63946;
}

.pricing-btn-minus.disabled,
.pricing-btn-plus.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.pricing-qty {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #1a1a2e;
    min-width: 36px;
    text-align: center;
}

.pricing-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin: 18px 0 0;
}
.pricing-note i {
    margin-right: 4px;
}

/* Preset example buttons */
.pricing-presets {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.pricing-presets-scroll {
    display: contents;
}

.pricing-presets-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-preset {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 4px 3px 12px;
    border-radius: 50px;
    border: 1px solid #d4d4d4;
    background: #fff;
    color: #1a1a2e;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.pricing-preset-name {
    white-space: nowrap;
}

.pricing-preset-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #c1121f;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.pricing-preset:hover {
    border-color: #a1a1a1;
    background: #f8f8f8;
    color: #1a1a2e;
}

.pricing-preset:hover .pricing-preset-price {
    background: #e8e8e8;
}

.pricing-preset-active {
    background: #1a1a2e;
    border-color: #1a1a2e;
    color: #fff;
}

.pricing-preset-active .pricing-preset-price {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.pricing-preset-active:hover {
    background: #2d2d44;
    border-color: #2d2d44;
    color: #fff;
}

.pricing-preset-active:hover .pricing-preset-price {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

.pricing-preset-help {
    border-style: dashed;
    border-color: #bbb;
}

.pricing-preset-help .pricing-preset-price {
    background: transparent;
    border: 1px dashed #bbb;
    color: #999;
    font-weight: 700;
    font-size: 13px;
}

.pricing-preset-help:hover {
    border-color: #e63946;
    background: #fff;
}

.pricing-preset-help:hover .pricing-preset-price {
    border-color: #e63946;
    color: #e63946;
}
.pricing-preset:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 767px) {
    .pricing-blocks { gap: 10px; }
    .pricing-plus { display: none; }
    .pricing-equals { display: none; }
    .pricing-block { min-width: calc(50% - 12px); max-width: calc(50% - 12px); flex: 0 0 calc(50% - 12px); }
    .pricing-block-result { min-width: 100%; max-width: 100%; flex: 0 0 100%; }
    .pricing-presets { gap: 6px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; justify-content: flex-start; scrollbar-width: none; }
    .pricing-presets::-webkit-scrollbar { display: none; }
    .pricing-presets-label { font-size: 11px; flex-shrink: 0; }
    .pricing-preset { font-size: 11px; padding: 3px 4px 3px 10px; gap: 6px; flex-shrink: 0; }
    .pricing-preset-price { width: 28px; height: 28px; font-size: 10px; }
}




/******************************** Callkeet Promo ********************************/

.ck-promo {
    background: #c1121f;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.ck-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}
.ck-promo > .container {
    position: relative;
    z-index: 1;
}
.ck-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}
.ck-mockup-area {
    padding: 36px 28px;
    background: #f3f4f6;
    position: relative;
    overflow: hidden;
}
.ck-mockup-img {
    max-height: 340px;
    width: auto;
    position: relative;
    z-index: 1;
}
.ck-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    z-index: 0;
    pointer-events: none;
}
.ck-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 6px 14px 6px 6px;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
}
.ck-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.ck-badge-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
    line-height: 1.2;
}
.ck-badge-sub {
    font-size: 10px;
    color: #adb5bd;
    font-weight: 500;
    display: block;
    line-height: 1.2;
    text-align: left;
}
.ck-bubble {
    position: absolute;
    border-radius: 50%;
}
.ck-bubble-1 { width: 140px; height: 140px; background: radial-gradient(circle, rgba(43,147,72,0.18) 0%, rgba(43,147,72,0) 70%); top: 8%; left: -30px; }
.ck-bubble-2 { width: 100px; height: 100px; background: radial-gradient(circle, rgba(43,147,72,0.14) 0%, rgba(43,147,72,0) 70%); top: 50%; right: 5px; }
.ck-bubble-3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(43,147,72,0.12) 0%, rgba(43,147,72,0) 70%); bottom: -50px; left: 25%; }
.ck-bubble-4 { width: 60px; height: 60px; background: radial-gradient(circle, rgba(43,147,72,0.20) 0%, rgba(43,147,72,0) 70%); top: 18%; right: 22%; }
.ck-bubble-5 { width: 120px; height: 120px; background: radial-gradient(circle, rgba(43,147,72,0.15) 0%, rgba(43,147,72,0) 70%); bottom: 12%; left: 5%; }
.ck-body {
    padding: 40px 44px 40px 36px;
}
.ck-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 12px;
}
.ck-desc {
    font-size: 15px;
    color: #494d51;
    line-height: 1.8;
    margin-bottom: 20px;
}
.ck-checks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.ck-checks span {
    font-size: 14px;
    color: #494d51;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ck-checks i { color: #2b9348; }
.ck-stores {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.ck-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a2e;
    color: #fff;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}
.ck-store-btn:hover { background: #2d2d44; color: #fff; }
.ck-store-btn i { font-size: 18px; }

.ck-discover-link {
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    margin-left: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #e63946;
    text-decoration: none;
    transition: color 0.2s;
}
.ck-discover-link:hover { color: #c1121f; }
.ck-discover-link i { margin-left: 4px; transition: transform 0.2s; }
.ck-discover-link:hover i { transform: translateX(3px); }
@media (max-width: 768px) {
    .ck-promo { padding: 40px 0; }
    .ck-body { padding: 28px 20px; }
    .ck-title { font-size: 28px; }
    .ck-checks { gap: 12px; }
    .ck-mockup-img { max-height: 240px; }
    .ck-rings { width: 300px; height: 300px; }
    .ck-promo .ck-discover-link { display: none; }
}

/******************************** CTA finale (variante sfondo bianco) ********************************/

.cta-final-light {
    background: #fff;
    padding: 80px 0 90px;
    text-align: center;
}
.cta-final-light h2 {
    font-size: 40px;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 16px;
}
.cta-final-light p {
    font-size: 16px;
    color: #494d51;
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.cta-final-light .cta-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.cta-final-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #c1121f;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.cta-final-btn-light:hover { background: #a00e1a; color: #fff; }
.cta-final-btn-light i { font-size: 16px; transition: transform 0.2s; }
.cta-final-btn-light:hover i { transform: translateX(3px); }
.cta-final-link-light {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0,0,0,.4);
    text-decoration: none;
    transition: color 0.2s;
}
.cta-final-link-light:hover { color: #1a1a2e; }
.cta-final-pills {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.cta-final-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #555;
    background: #f7f7f9;
    border-radius: 50px;
    padding: 10px 20px;
}
.cta-final-pills i { font-size: 16px; color: #2d9f4e; }
@media (max-width: 768px) {
    .cta-final-light { padding: 56px 0 100px; }
    .cta-final-light h2 { font-size: 28px; }
    .cta-final-pills { gap: 10px; }
}

/******************************** Pagina registrazione ********************************/

/******************************** Demo Section — Split (registrazione) ********************************/

.demo-section {
    padding: 60px 0 30px;
    background: #fff;
}

.demo-split {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    position: relative;
}

/* --- Colonna info (sinistra) --- */
.demo-split-info {
    background: #1a1a2e url('/images/banner-contatti-itavoip.jpeg') center / cover no-repeat;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 0;
}
.demo-split-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: -1;
}

.demo-badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: #c1121f;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: fit-content;
}

.demo-split-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.demo-split-info > p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 28px;
}

.demo-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.demo-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #fff;
}

.demo-check-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-check-icon i {
    color: #fff;
    font-size: 18px;
}

.demo-note {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 16px 20px;
    border-left: 3px solid rgba(255,255,255,0.5);
}

.demo-note p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0;
}

.demo-note i {
    color: #fff;
    margin-right: 6px;
}

.demo-split-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: absolute;
    top: 50%;
    left: 41.66%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.demo-split-arrow i {
    font-size: 18px;
    color: #c1121f;
    transform: rotate(-90deg);
}

/* --- Colonna form (destra) --- */
.demo-split-form {
    background: #f9f9fb;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
/*
.demo-split-form::before {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    background: rgba(0,0,0,.03);
    width: 120px;
    height: 120px;
    top: -35px;
    right: -35px;
    z-index: -1;
    box-shadow:
        -60px 280px 0 30px rgba(0,0,0,.02),
        -320px 80px 0 20px rgba(0,0,0,.025);
}
*/
.demo-split-form h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.demo-split-form > p {
    font-size: 14px;
    color: #999;
    margin-bottom: 28px;
}

.demo-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.demo-form .form-control {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 14px;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-form .form-control::placeholder {
    color: #aaa;
}

@media (max-width: 767.98px) {
    .demo-form .form-control,
    .demo-form .form-control:focus {
        font-size: 16px;
    }
}

.demo-form .form-control:focus {
    background: #fff;
    border-color: #c1121f;
    box-shadow: 0 0 0 3px rgba(193,18,31,0.08);
    color: #333;
}

.demo-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.demo-privacy input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #c1121f;
    flex-shrink: 0;
}

.demo-privacy span {
    font-size: 12px;
    color: #777;
}

.demo-privacy a {
    color: #c1121f;
    text-decoration: underline;
}

.demo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #c1121f, #e63946);
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.demo-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.demo-btn i {
    font-size: 16px;
    transition: transform 0.25s;
}

.demo-btn:hover i {
    transform: translateX(4px);
}

/******************************** Conferma invio contatti ********************************/

.demo-conferma {
    text-align: center;
    padding: 40px 20px;
}
.demo-conferma-icon {
    font-size: 56px;
    color: #2d9f4e;
    line-height: 1;
    margin-bottom: 16px;
}
.demo-conferma h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.demo-conferma p {
    color: #666;
    font-size: 15px;
    max-width: 400px;
    margin: 0 auto 24px;
}
.demo-conferma-recap {
    list-style: none;
    padding: 0;
    margin: 0 auto 32px;
    display: inline-block;
    text-align: left;
}
.demo-conferma-recap li {
    font-size: 14px;
    color: #444;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.demo-conferma-recap li i {
    color: #2d9f4e;
    font-size: 16px;
}

/******************************** Toast notifica ********************************/

.toast-notifica {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    animation: toastSlideIn .4s ease, toastFadeOut .4s ease 5s forwards;
    max-width: 90%;
    width: max-content;
    min-width: min(90%, 360px);
}
.toast-successo {
    background: #fff;
    color: #1a7f37;
    border: 1px solid #d1f0d9;
}
.toast-successo i { color: #2d9f4e; font-size: 18px; }
.toast-errore {
    background: #fff;
    color: #c1121f;
    border: 1px solid #fdd;
}
.toast-errore i { color: #c1121f; font-size: 18px; }
.toast-notifica button {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    opacity: .5;
    padding: 0 0 0 8px;
}
.toast-notifica button:hover { opacity: 1; }

@keyframes toastSlideIn {
    from { top: -60px; opacity: 0; }
    to { top: 24px; opacity: 1; }
}
@keyframes toastFadeOut {
    from { opacity: 1; }
    to { opacity: 0; pointer-events: none; }
}

/******************************** Box contatti extra ********************************/

.contatti-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
    padding: 10px 0 34px;
}
.prezzi-divider {
    padding: 0 0 20px;
}

/*** Prezzi — Filosofia ***/
.prezzi-filosofia {
    padding: 60px 0;
}
.prezzi-intro {
    margin-bottom: 48px;
}
.prezzi-intro .section-subtitle {
    max-width: 680px;
    margin: 0 auto;
}
.prezzi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}
.prezzi-card {
    background: #f5f5f5;
    border: none;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}
.prezzi-card:hover {
    background: #efefef;
}
.prezzi-card::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    background: rgba(0,0,0,.03);
    width: 90px;
    height: 90px;
    top: -25px;
    right: -25px;
    box-shadow: -180px 70px 0 20px rgba(0,0,0,.025);
}
.prezzi-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(193,18,31,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.prezzi-card-icon i {
    font-size: 20px;
    color: #c1121f;
}
.prezzi-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.prezzi-card-price {
    margin-bottom: 12px;
}
.prezzi-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
}
.prezzi-unit {
    font-size: 13px;
    color: #888;
}
.prezzi-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.prezzi-extras {
    margin-bottom: 16px;
}
.prezzi-extras .contatti-box {
    height: 100%;
}
.prezzi-extra-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 4px;
}
.prezzi-extra-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #e63946;
}
.prezzi-note {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin: 0;
}
.prezzi-note i {
    margin-right: 4px;
}

/*** FAQ ***/
.faq-section {
    padding: 60px 0 80px;
}
.faq-container {
    max-width: 760px;
    margin: 0 auto;
}
.faq-category {
    margin-bottom: 48px;
}
.faq-category:last-child {
    margin-bottom: 0;
}
.faq-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.faq-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(193,18,31,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faq-category-icon i {
    font-size: 18px;
    color: #c1121f;
}
.faq-category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}
.faq-item:last-child {
    margin-bottom: 0;
}
.faq-item .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 20px;
}
.faq-item .accordion-button:not(.collapsed) {
    background: #fafafa;
    color: #1a1a2e;
    box-shadow: none;
}
.faq-item .accordion-button:focus {
    box-shadow: none;
}
.faq-item .accordion-body {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    padding: 0 20px 16px;
}
.faq-item .accordion-body a {
    color: #e63946;
    font-weight: 600;
    text-decoration: none;
}
.faq-item .accordion-body a:hover {
    text-decoration: underline;
}
@media (max-width: 576px) {
    .faq-section { padding: 40px 0 60px; }
    .faq-category { margin-bottom: 36px; }
    .faq-category-title { font-size: 17px; }
    .faq-item .accordion-button { font-size: 13px; padding: 14px 16px; }
    .faq-item .accordion-body { font-size: 12.5px; padding: 0 16px 14px; }
}

.contatti-divider::before,
.contatti-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}
.contatti-divider span {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #e63946;
    white-space: nowrap;
}

.contatti-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f5f5f5;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}
.contatti-box:hover {
    background: #efefef;
    color: inherit;
}
.contatti-box::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    background: rgba(0,0,0,.03);
    width: 90px;
    height: 90px;
    top: -25px;
    right: -25px;
    box-shadow: -180px 70px 0 20px rgba(0,0,0,.025);
}
.contatti-box-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(193,18,31,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #c1121f;
}
.contatti-box h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.contatti-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}
.contatti-box-link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #c1121f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.contatti-box:hover .contatti-box-link,
.contatti-box-link:hover {
    gap: 10px;
    color: #c1121f;
}

/******************************** Registrazione step page ********************************/

.reg-section {
    padding: 50px 0 130px;
    background: #fff;
}

/* --- Stepper indicator --- */
.reg-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 520px;
    margin: 0 auto 40px;
}
.reg-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.reg-step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #bbb;
    transition: all 0.3s;
}
.reg-step.active .reg-step-circle {
    border-color: #c1121f;
    background: linear-gradient(135deg, #c1121f, #e63946);
    color: #fff;
    box-shadow: none;
}
.reg-step.completed .reg-step-circle {
    border-color: #2b9348;
    background: #2b9348;
    color: #fff;
}
.reg-step-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #bbb;
    white-space: nowrap;
}
.reg-step.active .reg-step-label {
    color: #1a1a2e;
}
.reg-step.completed .reg-step-label {
    color: #2b9348;
}
.reg-step-line {
    flex: 1;
    height: 2px;
    background: #e5e5e5;
    margin: 0 12px;
    margin-bottom: 28px;
    border-radius: 2px;
    transition: background 0.3s;
}
.reg-step-line.active {
    background: #2b9348;
}

/* --- Card --- */
.reg-card {
    max-width: 860px;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
/*
.reg-card::before {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    background: rgba(0,0,0,.03);
    width: 120px;
    height: 120px;
    top: -35px;
    right: -35px;
    z-index: -1;
    box-shadow: -60px 280px 0 30px rgba(0,0,0,.02),
                -320px 80px 0 20px rgba(0,0,0,.025);
}
*/

/* --- Form header --- */
.reg-form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.reg-form-header-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(193,18,31,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reg-form-header-icon i {
    font-size: 24px;
    color: #c1121f;
}
.reg-form-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}
.reg-form-header p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* --- Conferma screen --- */
.reg-conferma {
    text-align: center;
    padding: 20px 10px;
}
.reg-conferma-icon {
    font-size: 56px;
    color: #e6a817;
    line-height: 1;
    margin-bottom: 16px;
}
.reg-conferma h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.reg-conferma p {
    color: #666;
    font-size: 14px;
    max-width: 460px;
    margin: 0 auto 24px;
    line-height: 1.7;
}
.reg-conferma-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    margin: 0 auto 28px;
}
.reg-conferma-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(230,168,23,0.08);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: #555;
}
.reg-conferma-info-item i {
    font-size: 18px;
    color: #e6a817;
    flex-shrink: 0;
}

/* --- Nota in fondo --- */
.reg-note-bottom {
    max-width: 640px;
    margin: 20px auto 0;
    text-align: center;
}
.reg-note-bottom p {
    font-size: 12px;
    color: #999;
    margin: 0;
}
.reg-note-bottom i {
    color: #2b9348;
    margin-right: 4px;
}
.reg-note-bottom a {
    color: #c1121f;
    text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 576px) {
    .reg-section { padding: 30px 0 130px; }
    .reg-stepper { gap: 0; }
    .reg-step-circle { width: 36px; height: 36px; font-size: 14px; }
    .reg-step-label { font-size: 10px; }
    .reg-step-line { margin: 0 8px; margin-bottom: 24px; }
    .reg-card { padding: 28px 20px; }
    .reg-form-header { flex-direction: column; text-align: center; }
    .reg-form-header h3 { font-size: 19px; }
    .reg-conferma h3 { font-size: 19px; }
}

/******************************** Pagine di contenuto ********************************/

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 15px 60px 15px;
}

.page-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.page-content .subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.page-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
}

.page-content p,
.page-content ul {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.page-content ul {
    padding-left: 1.5rem;
}

.page-content a {
    color: #e63946;
}

.page-content a:hover {
    text-decoration: underline;
}

/******************************** Error pages ********************************/

.error-page {
    padding: 180px 15px 160px 15px;
    text-align: center;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-code {
    font-family: 'Poppins', sans-serif;
    font-size: 120px;
    font-weight: 800;
    color: #e63946;
    line-height: 1;
}

.error-message {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 5px;
}

.error-description {
    font-size: 15px;
    color: #888;
    margin-top: 10px;
    max-width: 400px;
}

/******************************** Footer ********************************/

.footer-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}
.footer-wave-top svg {
    display: block;
    width: 100%;
    height: 60px;
    transform: scaleX(-1);
}

.box-footer {
    background: #1c1c1c;
    padding: 100px 0 0 0;
    margin-top: -60px;
    position: relative;
    overflow: hidden;
}

.footer-spiral {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.footer-spiral svg {
    width: 100%;
    height: 100%;
}

.logo-footer {
    max-width: 120px;
    margin-bottom: 15px;
    height: auto;
    filter: brightness(0) invert(1);
}

.testo-footer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.footer-social a:hover {
    background: #e63946;
    border-color: #e63946;
    color: #fff !important;
}

.titolo-footer {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer ul > li {
    margin-bottom: 8px;
    font-size: 13px;
}

#footer a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
}

#footer a:hover {
    color: #e63946 !important;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list i {
    color: #e63946;
    margin-right: 6px;
    font-size: 14px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 32px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 24px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #e63946 !important;
}

/******************************** Tariffe page ********************************/

.tariffe-step {
    padding: 32px 24px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tariffe-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.tariffe-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c1121f, #e63946);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.tariffe-step h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
}

.tariffe-step p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.tariffe-table {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
}

.tariffe-table thead th {
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 16px;
    border-bottom: 2px solid #eee;
}

.tariffe-table tbody td {
    padding: 14px 16px;
    font-size: 14px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.tariffe-table-highlight {
    background: rgba(230, 57, 70, 0.04);
}

.tariffe-table thead .tariffe-table-highlight {
    background: rgba(230, 57, 70, 0.1);
    color: #c1121f;
}

/******************************** Responsive ********************************/

@media (max-width: 991px) {
    .demo-split-arrow {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: -20px auto -20px;
    }
    .demo-split-arrow i {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-box {
        padding: 120px 0 80px 0;
    }
    .hero-box h1 {
        font-size: 32px;
        text-align: center;
    }
    .hero-box h2 {
        font-size: 16px;
        text-align: center;
    }
    .hero-box .d-flex {
        justify-content: center;
    }
    .hero-scopri {
        display: none;
    }
    .section-title {
        font-size: 26px;
        padding: 0 12px;
    }
    .section-subtitle {
        padding: 0 12px;
    }
    .page-header {
        padding: 90px 0 50px;
    }
    .page-header h1 {
        font-size: 28px;
    }
    .page-header p {
        font-size: 14px;
        padding: 0 12px;
    }
    .demo-section {
        padding: 40px 0 24px;
    }
    .demo-split-info {
        padding: 32px 24px;
    }
    .demo-split-info h2 {
        font-size: 22px;
    }
    .demo-split-form {
        padding: 32px 24px;
    }
    .error-code {
        font-size: 80px;
    }
    .box-footer {
        padding: 80px 0 0 0;
    }
    .titolo-footer {
        font-size: 13px;
        margin-bottom: 10px;
    }
    #footer ul > li {
        margin-bottom: 5px;
        font-size: 12px;
    }
    #footer .col-4 {
        text-align: center;
    }
    .testo-footer {
        font-size: 13px;
    }
    .logo-footer {
        max-width: 100px;
    }
    .footer-bottom {
        font-size: 11px;
    }
}

@media (max-width: 991.98px) {
    .navbar-cta {
        display: flex;
        margin: 0;
        padding: 12px 0;
        border-top: 1px solid rgba(0,0,0,0.08);
        margin-top: 10px;
    }
    .navbar-cta .btn {
        flex: 1;
        text-align: center;
    }
}

/******************************** Funzionalità — Split Box (fp3) ********************************/

.fp3-section-bg { padding:60px 0 30px; background:#fff; }

.fp3-box { border-radius:16px; overflow:hidden; border:1px solid #e5e5e5; display:flex; min-height:560px; position:relative; }
.fp3-nav { width:320px; flex-shrink:0; background:#1a1a2e; padding:40px 0; display:flex; flex-direction:column; }
.fp3-nav-label { font-family:'Poppins',sans-serif; font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.45); padding:0 28px 14px; }
.fp3-nav-item { display:flex; align-items:center; gap:14px; padding:16px 28px; cursor:pointer; transition:background .2s; border-left:3px solid transparent; }
.fp3-nav-item:hover { background:rgba(255,255,255,.08); }
.fp3-nav-item.active { background:rgba(255,255,255,.12); border-left-color:#e63946; }
.fp3-nav-ico { width:40px; height:40px; border-radius:10px; background:rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .2s; }
.fp3-nav-item.active .fp3-nav-ico { background:rgba(255,255,255,.25); }
.fp3-nav-ico i { font-size:18px; color:rgba(255,255,255,.7); transition:color .2s; }
.fp3-nav-item.active .fp3-nav-ico i { color:#fff; }
.fp3-nav-info { min-width:0; }
.fp3-nav-info h4 { font-family:'Poppins',sans-serif; font-size:13px; font-weight:600; color:rgba(255,255,255,.75); margin:0 0 1px; transition:color .2s; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.fp3-nav-item.active .fp3-nav-info h4 { color:#fff; }
.fp3-nav-info span { font-size:11px; color:rgba(255,255,255,.35); transition:color .2s; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:block; }
.fp3-nav-item.active .fp3-nav-info span { color:rgba(255,255,255,.6); }
.fp3-nav-arrow { margin-left:auto; font-size:14px; color:rgba(255,255,255,.2); transition:color .2s; }
.fp3-nav-item.active .fp3-nav-arrow { color:#fff; }

.fp3-content { flex:1; min-width:0; background:#fff; }
.fp3-panel { display:none; animation:fp3fadeIn .3s ease; }
.fp3-panel.active { display:block; }
@keyframes fp3fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

.fp3-panel-header { padding:40px 40px 28px; }
.fp3-panel-header h2 { font-family:'Poppins',sans-serif; font-size:24px; font-weight:700; color:#1a1a2e; margin:0 0 6px; }
.fp3-panel-header p { color:#666; font-size:14px; margin:0; line-height:1.6; }

.fp3-grid { padding:0 40px 40px; display:grid; gap:16px; }
.fp3-grid-2 { grid-template-columns:1fr 1fr; }

.fp3-card { background:#f5f5f5; border-radius:14px; padding:20px; display:flex; align-items:center; gap:16px; overflow:hidden; position:relative; transition:background .2s; }
.fp3-card:hover { background:#efefef; }
.fp3-card::after { content:''; position:absolute; pointer-events:none; border-radius:50%; background:rgba(0,0,0,.03); width:90px; height:90px; top:-25px; right:-25px; }
.fp3-card > i { flex-shrink:0; width:48px; height:48px; border-radius:50%; background:linear-gradient(135deg,#c1121f,#e63946); display:flex; align-items:center; justify-content:center; font-size:20px; color:#fff; }
.fp3-card h5 { font-family:'Poppins',sans-serif; font-size:15px; font-weight:700; color:#1a1a2e; margin:0 0 5px; }
.fp3-card p { color:#3a3a3a; font-size:13.5px; line-height:1.5; margin:0; }

.fp3-mob-header { display:none; }
.fp3-mob-header > i { flex-shrink:0; width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; font-size:17px; color:#fff; }

@media(max-width:992px) {
    .fp3-section-bg { padding:40px 0 20px; }
    .fp3-box { display:block; border:none; border-radius:0; }
    .fp3-nav { display:none; }
    .fp3-panel { display:block !important; animation:none; margin-bottom:28px; }
    .fp3-mob-header { display:flex; align-items:center; gap:14px; background:#1a1a2e; border-radius:12px; padding:16px 20px; margin:0 0 16px; }
    .fp3-mob-header .fp3-mob-text { min-width:0; }
    .fp3-mob-header h3 { font-family:'Poppins',sans-serif; font-size:16px; font-weight:600; color:#fff; margin:0; }
    .fp3-mob-header p { font-size:12.5px; color:rgba(255,255,255,.55); margin:3px 0 0; line-height:1.4; }
    .fp3-panel-header { display:none; }
    .fp3-grid { padding:0; gap:12px; }
    .fp3-grid-2 { grid-template-columns:1fr; }
    .fp3-card { padding:16px; gap:14px; }
    .fp3-card > i { width:40px; height:40px; font-size:18px; }
    .fp3-card h5 { font-size:14px; }
    .fp3-card p { font-size:12.5px; }
}
@media(max-width:576px) {
    .fp3-mob-header { padding:14px 16px; gap:12px; border-radius:10px; }
    .fp3-mob-header h3 { font-size:14px; }
    .fp3-mob-header p { font-size:11.5px; }
    .fp3-card { padding:14px; gap:12px; }
    .fp3-card > i { width:36px; height:36px; font-size:16px; }
}

/*** Prezzi — Responsive ***/
@media (max-width: 991px) {
    .prezzi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .prezzi-grid { grid-template-columns: 1fr; gap: 16px; }
    .prezzi-filosofia { padding: 40px 0; }
    .prezzi-intro { margin-bottom: 32px; }
    .prezzi-card {
        text-align: left;
        padding: 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0 16px;
    }
    .prezzi-card-icon {
        margin-bottom: 0;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }
    .prezzi-card-info {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: baseline;
        gap: 10px;
    }
    .prezzi-card h3 {
        margin-bottom: 0;
        font-size: 16px;
    }
    .prezzi-card-price {
        margin-bottom: 0;
    }
    .prezzi-amount {
        font-size: 22px;
    }
    .prezzi-card p {
        width: 100%;
        margin-top: 12px;
        font-size: 12.5px;
    }
}
