:root {

    --orange: #ff7900;
    --orange2: #ff9a34;
    --ink: #111827;
    --navy: #0b2035;
    --blue: #123b5b;
    --green: #168a57;
    --green2: #20b978;
    --muted: #64748b;
    --line: #e4e9ef;
    --bg: #f6f8fb;
    --soft: #fff5eb;
    --white: #fff;
    --radius: 24px;
    --shadow: 0 18px 50px rgba(15,23,42,.09);

}

* {

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    margin: 0;
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55;

}

img {

    max-width: 100%;
    display: block;

}

a {

    color: inherit;

}

.container {

    width: min(1180px,calc(100% - 36px));
    margin: auto;

}

.skip {

    position: absolute;
    left: -9999px;

}

.skip:focus {

    left: 16px;
    top: 16px;
    z-index: 1000;
    background: #fff;
    padding: 10px 14px;
    border-radius: 8px;

}

.topbar {

    background: #071523;
    color: #d9e4ed;
    font-size: .84rem;

}

.topbar .container {

    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;

}

.topbar a {

    color: #fff;
    text-decoration: none;

}

.header {

    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);

}

.nav {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 78px;

}

.logo img {

    width: 190px;

}

.menu {

    display: flex;
    align-items: center;
    gap: 23px;

}

.menu a {

    text-decoration: none;
    font-size: .92rem;
    font-weight: 700;
    color: #334155;

}

.menu a:hover {

    color: var(--orange);

}

.nav-cta {

    background: var(--orange);
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 999px;

}

.menu-toggle {

    display: none;
    border: 0;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 10px 13px;
    font-weight: 800;

}

.hero {

    position: relative;
    overflow: hidden;
    padding: 82px 0 70px;
    background: linear-gradient(125deg,#fff 0%,#fff 58%,#fff4e8 58%,#fff9f4 100%);

}

.hero:before {

    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,121,0,.08);
    left: -210px;
    top: -80px;

}

.hero-grid {

    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 60px;

}

.kicker {

    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: .77rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #b45309;

}

.kicker:before {

    content: "";
    width: 26px;
    height: 3px;
    background: var(--orange);
    border-radius: 99px;

}

.hero h1 {

    font-size: clamp(2.65rem,5vw,5rem);
    line-height: .98;
    margin: 18px 0 22px;
    letter-spacing: -.055em;

}

.hero h1 em {

    font-style: normal;
    color: var(--orange);

}

.hero .lead {

    font-size: 1.14rem;
    color: #475569;
    max-width: 680px;

}

.hero-badges {

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;

}

.pill {

    padding: 9px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e8edf2;
    font-size: .82rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(15,23,42,.04);

}

.actions {

    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;

}

.btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 850;
    font-size: .93rem;
    transition: .18s ease;

}

.btn-primary {

    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 26px rgba(255,121,0,.24);

}

.btn-primary:hover {

    transform: translateY(-2px);
    background: #eb6e00;

}

.btn-dark {

    background: var(--ink);
    color: #fff;

}

.btn-outline {

    border: 1px solid #cbd5e1;
    background: #fff;
    color: #1e293b;

}

.btn-green {

    background: var(--green);
    color: #fff;

}

.hero-visual {

    position: relative;

}

.hero-visual img {

    filter: drop-shadow(0 28px 46px rgba(15,23,42,.13));

}

.metric-float {

    position: absolute;
    right: -6px;
    bottom: 42px;
    background: #fff;
    padding: 15px 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    font-weight: 850;

}

.metric-float strong {

    display: block;
    font-size: 1.55rem;
    color: var(--green);

}

.section {

    padding: 86px 0;

}

.section-soft {

    background: var(--bg);

}

.section-dark {

    background: var(--navy);
    color: #fff;

}

.section-orange {

    background: linear-gradient(135deg,#ff7700,#ff9e3d);
    color: #fff;

}

.head {

    max-width: 800px;
    margin-bottom: 36px;

}

.head.center {

    text-align: center;
    margin-left: auto;
    margin-right: auto;

}

.head h2 {

    font-size: clamp(2rem,4vw,3.25rem);
    line-height: 1.05;
    letter-spacing: -.04em;
    margin: 12px 0;

}

.head p {

    color: #64748b;
    font-size: 1.04rem;

}

.section-dark .head p {

    color: #b9c9d5;

}

.choice-grid {

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;

}

.choice {

    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 10px 34px rgba(15,23,42,.05);
    overflow: hidden;

}

.choice:after {

    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    right: -25px;
    top: -25px;
    background: #fff1e3;

}

.choice:nth-child(2):after {

    background: #ecfdf5;

}

.choice:nth-child(3):after {

    background: #eaf1ff;

}

.icon {

    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #fff0e0;
    color: var(--orange);
    position: relative;
    z-index: 1;

}

.icon.green {

    background: #e9f8f0;
    color: var(--green);

}

.icon.blue {

    background: #eaf2f8;
    color: #17628f;

}

.icon svg {

    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;

}

.choice h3 {

    font-size: 1.35rem;
    margin: 20px 0 8px;

}

.choice .big {

    font-size: 2rem;
    font-weight: 950;
    letter-spacing: -.04em;

}

.choice p {

    color: #64748b;

}

.choice ul {

    padding-left: 19px;
    color: #475569;

}

.choice li {

    margin: 7px 0;

}

.why {

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 55px;
    align-items: center;

}

.why-copy h2 {

    font-size: clamp(2.15rem,4vw,3.5rem);
    line-height: 1.03;
    letter-spacing: -.045em;
    margin: 12px 0 20px;

}

.process {

    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
    margin-top: 28px;

}

.process span {

    padding: 13px 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    text-align: center;
    font-size: .78rem;
    font-weight: 850;

}

.services {

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;

}

.service {

    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    gap: 15px;

}

.service h3 {

    margin: 1px 0 6px;
    font-size: 1.02rem;

}

.service p {

    margin: 0;
    color: #64748b;
    font-size: .88rem;

}

.service .icon {

    width: 44px;
    height: 44px;
    border-radius: 13px;
    flex: 0 0 44px;

}

.b2b {

    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 55px;
    align-items: center;

}

.b2b img {

    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(0,0,0,.22);

}

.b2b h2 {

    font-size: clamp(2.25rem,4vw,3.8rem);
    letter-spacing: -.05em;
    line-height: 1.02;
    margin: 14px 0;

}

.b2b .lead {

    color: #c8d5df;

}

.b2b-tags {

    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 20px 0;

}

.b2b-tags span {

    border: 1px solid rgba(113,226,178,.32);
    background: rgba(48,183,124,.11);
    padding: 8px 12px;
    border-radius: 999px;
    color: #c8f3df;
    font-size: .8rem;
    font-weight: 800;

}

.feature-list {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 26px 0;

}

.feature-list div {

    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    font-size: .88rem;

}

.feature-list b {

    color: #6ee7b7;

}

.widget-grid {

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;

}

.widget {

    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 36px rgba(15,23,42,.05);

}

.widget h3 {

    margin: 0 0 6px;

}

.widget p {

    color: #64748b;
    font-size: .88rem;

}

.field {

    margin: 14px 0;

}

.field label {

    display: block;
    font-size: .78rem;
    font-weight: 850;
    margin-bottom: 6px;
    color: #334155;

}

.field input,
.field select,
.field textarea {

    width: 100%;
    border: 1px solid #cfd8e3;
    border-radius: 12px;
    padding: 12px 13px;
    font: inherit;
    background: #fff;

}

.field textarea {

    min-height: 110px;
    resize: vertical;

}

.checks {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin: 12px 0;

}

.checks label {

    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    padding: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;

}

.result {

    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: .86rem;

}

.result strong {

    color: var(--green);

}

.trade-value {

    font-size: 2rem;
    font-weight: 950;
    color: var(--green);
    line-height: 1;

}

.compare-wrap {

    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);

}

.compare {

    width: 100%;
    min-width: 880px;
    border-collapse: collapse;

}

.compare th,
.compare td {

    padding: 15px 17px;
    border-bottom: 1px solid #e8edf2;
    text-align: left;

}

.compare th {

    background: #f8fafc;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;

}

.compare td:first-child {

    font-weight: 800;

}

.compare .premium {

    background: #edf9f3;

}

.compare .yes {

    color: var(--green);
    font-weight: 900;

}

.compare .no {

    color: #94a3b8;

}

.cta-band {

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 35px 40px;
    border-radius: 28px;
    background: #111827;
    color: #fff;

}

.cta-band h2 {

    margin: 0;
    font-size: 2rem;

}

.cta-band p {

    margin: 8px 0 0;
    color: #cbd5e1;

}

.sectors {

    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 13px;

}

.sector {

    padding: 19px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    font-weight: 800;

}

.sector small {

    display: block;
    margin-top: 5px;
    color: #64748b;
    font-weight: 500;

}

.faq {

    max-width: 900px;
    margin: auto;

}

.faq details {

    border-bottom: 1px solid var(--line);
    padding: 17px 4px;

}

.faq summary {

    cursor: pointer;
    font-weight: 850;

}

.faq p {

    color: #64748b;

}

.contact-grid {

    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 45px;

}

.contact-card {

    background: #fff;
    border-radius: 26px;
    padding: 28px;
    color: #111827;

}

.contact-card h3 {

    margin-top: 0;

}

.contact-form {

    background: #fff;
    border-radius: 26px;
    padding: 28px;
    color: #111827;

}

.form-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;

}

.form-grid .full {

    grid-column: 1/-1;

}

.notice {

    font-size: .76rem;
    color: #64748b;

}

.footer {

    background: #071523;
    color: #9fb0bf;
    padding: 45px 0 26px;

}

.footer-grid {

    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr;
    gap: 40px;

}

.footer img {

    width: 180px;

}

.footer h3 {

    color: #fff;

}

.footer a {

    color: #d8e3eb;
    text-decoration: none;

}

.footer-bottom {

    border-top: 1px solid #183047;
    margin-top: 30px;
    padding-top: 22px;
    font-size: .8rem;

}

.sticky-cta {

    display: none;

}

@media (max-width:1020px) {

    .menu {

        display: none;
        position: absolute;
        top: 78px;
        left: 18px;
        right: 18px;
        background: #fff;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;

    }

    .menu.open {

        display: flex;

    }

    .menu-toggle {

        display: block;

    }

    .hero-grid,
    .why,
    .b2b,
    .contact-grid {

        grid-template-columns: 1fr;

    }

    .hero-visual {

        max-width: 720px;
        margin: auto;

    }

    .choice-grid,
    .widget-grid {

        grid-template-columns: 1fr 1fr;

    }

    .services {

        grid-template-columns: 1fr 1fr;

    }

    .sectors {

        grid-template-columns: 1fr 1fr;

    }

    .process {

        grid-template-columns: repeat(3,1fr);

    }

    .b2b img {

        order: -1;

    }

    .footer-grid {

        grid-template-columns: 1fr 1fr;

    }

}

@media (max-width:680px) {

    .container {

        width: min(100% - 24px,1180px);

    }

    .topbar .container {

        display: block;
        text-align: center;

    }

    .topbar span:last-child {

        display: none;

    }

    .hero {

        padding: 52px 0;

    }

    .hero h1 {

        font-size: 2.9rem;

    }

    .section {

        padding: 64px 0;

    }

    .choice-grid,
    .widget-grid,
    .services,
    .feature-list,
    .form-grid,
    .sectors {

        grid-template-columns: 1fr;

    }

    .process {

        grid-template-columns: 1fr 1fr;

    }

    .metric-float {

        position: static;
        margin-top: 12px;

    }

    .cta-band {

        grid-template-columns: 1fr;
        padding: 28px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .sticky-cta {

        display: block;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 60;

    }

    .sticky-cta a {

        display: block;
        text-align: center;
        background: var(--orange);
        color: #fff;
        text-decoration: none;
        padding: 14px;
        border-radius: 999px;
        font-weight: 900;
        box-shadow: 0 10px 30px rgba(0,0,0,.25);

    }

    body {

        padding-bottom: 72px;

    }

}

/* Prezzi e confronto GetShop - valori dalla Tabella Comparativa */

.prices-section {

    background: linear-gradient(180deg,#fff 0%,#fff8f1 100%);

}

.price-grid {

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    align-items: stretch;

}

.price-card {

    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 14px 42px rgba(15,23,42,.07);
    overflow: hidden;

}

.price-card:before {

    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: #17628f;

}

.price-card.price-start:before {

    background: var(--orange);

}

.price-card.price-premium:before {

    background: var(--green);

}

.price-card.price-premium {

    border-color: #bde6d1;
    background: linear-gradient(180deg,#fff 0%,#f4fcf8 100%);

}

.price-icon {

    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: #fff0e0;
    color: var(--orange);
    margin-bottom: 18px;

}

.price-icon.blue {

    background: #eaf2f8;
    color: #17628f;

}

.price-icon.green {

    background: #e9f8f0;
    color: var(--green);

}

.price-icon svg {

    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;

}

.price-label {

    font-size: .75rem;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #64748b;

}

.price-card h3 {

    font-size: 1.35rem;
    margin: 8px 0 4px;

}

.price-value {

    font-size: 3.1rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.055em;
    margin: 16px 0 10px;
    color: var(--ink);

}

.price-value.small {

    font-size: 2.35rem;

}

.price-mode {

    min-height: 50px;
    color: #64748b;

}

.price-card ul {

    padding-left: 19px;
    color: #475569;
    flex: 1;

}

.price-card li {

    margin: 7px 0;

}

.price-card .btn {

    align-self: flex-start;
    margin-top: 12px;

}

.maintenance {

    margin-top: 22px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
    align-items: center;
    background: #111827;
    color: #fff;
    border-radius: 26px;
    padding: 28px 30px;

}

.maintenance h3 {

    font-size: 1.6rem;
    margin: 9px 0 5px;

}

.maintenance p {

    color: #cbd5e1;
    margin: 0;

}

.maintenance-values {

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;

}

.maintenance-values div {

    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 16px;
    padding: 15px;

}

.maintenance-values span {

    display: block;
    color: #aebdca;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;

}

.maintenance-values strong {

    display: block;
    margin-top: 4px;
    font-size: 1.05rem;

}

.price-note,
.compare-source-note {

    margin: 14px 3px 0;
    color: #64748b;
    font-size: .84rem;

}

.price-note strong {

    color: var(--ink);

}

.solution-intros {

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-bottom: 24px;

}

.solution-intros>div {

    border: 1px solid var(--line);
    background: #fff;
    border-radius: 20px;
    padding: 20px;

}

.solution-intros h3 {

    margin: 0 0 7px;
    font-size: 1.08rem;

}

.solution-intros p {

    margin: 0;
    color: #64748b;
    font-size: .88rem;

}

.solution-intros .premium-intro {

    background: #edf9f3;
    border-color: #c6ead6;

}

.b2b-note {

    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    border-radius: 16px;
    color: #d5e0e9;
    font-size: .9rem;

}

.legal-line {

    font-size: .78rem !important;
    color: #64748b !important;

}

.footer .legal-line {

    color: #8093a3 !important;

}

@media (max-width:1020px) {

    .price-grid,
    .solution-intros {

        grid-template-columns: 1fr 1fr;

    }

    .price-card.price-premium {

        grid-column: 1/-1;

    }

    .maintenance {

        grid-template-columns: 1fr;

    }

    .maintenance-values {

        grid-template-columns: repeat(3,1fr);

    }

}

@media (max-width:680px) {

    .price-grid,
    .solution-intros,
    .maintenance-values {
        grid-template-columns: 1fr;
    }

    .price-card.price-premium {
        grid-column: auto;
    }

    .price-value {
        font-size: 2.65rem;
    }

    .maintenance {
        padding: 24px;
    }

    /* CONFRONTO MOBILE - ACCORDION */
    .compare-wrap {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        border-radius: 18px;
    }

    .compare {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .compare thead {
        display: none;
    }

    .compare tbody {
        display: block;
        width: 100%;
    }

    .compare tbody tr {
        display: block;
        width: 100%;
        margin: 0 0 10px;
        border: 1px solid var(--line);
        border-radius: 14px;
        overflow: hidden;
        background: #fff;
    }

    .compare tbody td {
        display: none;
        width: 100%;
        border: 0;
        border-bottom: 1px solid #e8edf2;
        padding: 12px 14px;
        font-size: .88rem;
        line-height: 1.35;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .compare tbody td:first-child {
        display: block;
        position: relative;
        width: 100%;
        padding: 14px 46px 14px 14px;
        font-size: .92rem;
        font-weight: 900;
        background: #f8fafc;
        cursor: pointer;
        border-bottom: 0;
    }

    .compare tbody td:first-child::after {
        content: "›";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        font-size: 1.3rem;
        color: var(--orange);
        transition: transform .18s ease;
    }

    .compare tbody tr.compare-open td:first-child::after {
        transform: translateY(-50%) rotate(-90deg);
    }

    .compare tbody tr.compare-open td {
        display: block;
    }

    .compare tbody tr.compare-open td:first-child {
        border-bottom: 1px solid #e8edf2;
    }

    .compare tbody tr.compare-open td:nth-child(2),
    .compare tbody tr.compare-open td:nth-child(3),
    .compare tbody tr.compare-open td:nth-child(4) {
        position: relative;
        padding-left: 96px;
    }

    .compare tbody tr.compare-open td:nth-child(2)::before,
    .compare tbody tr.compare-open td:nth-child(3)::before,
    .compare tbody tr.compare-open td:nth-child(4)::before {
        position: absolute;
        left: 14px;
        top: 12px;
        font-size: .72rem;
        font-weight: 950;
        letter-spacing: .04em;
        text-transform: uppercase;
        color: #64748b;
    }

    .compare tbody tr.compare-open td:nth-child(2)::before {
        content: "START";
    }

    .compare tbody tr.compare-open td:nth-child(3)::before {
        content: "BUSINESS";
    }

    .compare tbody tr.compare-open td:nth-child(4)::before {
        content: "PREMIUM";
    }

    .compare tbody tr.compare-open td:nth-child(2) {
        background: #fff8ee;
    }

    .compare tbody tr.compare-open td:nth-child(3) {
        background: #edf6ff;
        border-left: 0;
        border-right: 0;
    }

    .compare tbody tr.compare-open td:nth-child(4) {
        background: #edf9f3;
    }

    .compare tbody tr.compare-open td:last-child {
        border-bottom: 0;
    }

}

/* Revisione menu, confronto, settori e FAQ */

.menu {

    gap: 9px;

}

.menu a {

    border: 1px solid var(--orange);
    border-radius: 8px;
    padding: 8px 11px;
    background: #fff;
    color: #334155;
    transition: background .16s ease,color .16s ease,border-color .16s ease,transform .16s ease;

}

.menu a:hover {

    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-1px);

}

.menu .nav-cta {

    background: var(--orange);
    color: #fff !important;
    border-radius: 10px;
    padding: 10px 15px;

}

.menu .nav-cta:hover {

    background: #e96f00;
    border-color: #e96f00;

}

.solution-intros>div {

    position: relative;
    padding-top: 24px;

}

.solution-intros .start-intro {

    background: #fff7ed;
    border-color: #fed7aa;

}

.solution-intros .business-intro {

    background: #eef6ff;
    border: 2px solid #2774ae;
    box-shadow: 0 10px 28px rgba(39,116,174,.12);

}

.solution-intros .premium-intro {

    background: #edf9f3;
    border-color: #bfe6d1;

}

.solution-intros h3 {

    font-size: 1.45rem;
    letter-spacing: -.02em;
    color: #0f172a;

}

.most-chosen {

    display: inline-block;
    background: #17628f;
    color: #fff;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: .62rem;
    font-weight: 950;
    letter-spacing: .08em;
    margin-bottom: 7px;

}

.compare th {

    vertical-align: top;

}

.compare th strong {

    display: block;
    font-size: 1.08rem;
    letter-spacing: 0;
    color: #111827;
    margin-bottom: 2px;

}

.compare th small {

    display: block;
    font-size: .7rem;
    letter-spacing: .05em;
    color: #64748b;

}

.compare th:nth-child(2),
.compare td:nth-child(2) {

    background: #fff8ee;

}

.compare th:nth-child(3),
.compare td:nth-child(3) {

    background: #edf6ff;
    border-left: 2px solid #70a9d3;
    border-right: 2px solid #70a9d3;

}

.compare th:nth-child(4),
.compare td:nth-child(4) {

    background: #edf9f3;

}

.compare th:nth-child(3) {

    border-top: 3px solid #17628f;

}

.compare tr:last-child td:nth-child(3) {

    border-bottom: 3px solid #17628f;

}

.compare .premium {

    background: inherit;

}

.head-badge {

    margin: 0 0 5px;

}

.sectors {

    grid-template-columns: repeat(4,1fr);
    gap: 15px;

}

.sector {

    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 13px;
    align-items: center;
    min-height: 124px;
    padding: 18px;

}

.sector b {

    font-size: .96rem;

}

.sector small {

    grid-column: 2;
    margin-top: 2px;
    line-height: 1.35;

}

.sector-icon {

    grid-row: 1/3;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;

}

.sector-icon svg {

    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

}

.sector-icon.orange {

    background: #fff0e0;
    color: #ef7d00;

}

.sector-icon.pink {

    background: #fdebf3;
    color: #d94682;

}

.sector-icon.blue {

    background: #eaf2ff;
    color: #2563eb;

}

.sector-icon.green {

    background: #e9f8f0;
    color: #168a57;

}

.sector-icon.amber {

    background: #fff7d6;
    color: #b7791f;

}

.sector-icon.teal {

    background: #e5f8f7;
    color: #0f8f88;

}

.sector-icon.violet {

    background: #f1eafe;
    color: #7c3aed;

}

.sector-icon.lime {

    background: #f0f9df;
    color: #65a30d;

}

.sector-icon.red {

    background: #feecec;
    color: #dc2626;

}

.sector-icon.cyan {

    background: #e7f8fc;
    color: #0891b2;

}

.sector-icon.rose {

    background: #fff0f3;
    color: #e11d48;

}

.sector-icon.navy {

    background: #e8eef5;
    color: #0b2035;

}

.sector-b2b {

    border: 2px solid #0b2035;
    background: linear-gradient(135deg,#f8fbff,#eef4f9);

}

.faq {

    max-width: none;

}

.faq-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    align-items: start;

}

.faq details {

    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0;
    background: #fff;
    margin-bottom: 12px;
    overflow: hidden;

}

.faq summary {

    padding: 16px 18px;
    list-style: none;
    position: relative;
    padding-right: 42px;

}

.faq summary::-webkit-details-marker {

    display: none;

}

.faq summary:after {

    content: "+";
    position: absolute;
    right: 17px;
    top: 13px;
    color: var(--orange);
    font-size: 1.35rem;
    font-weight: 900;

}

.faq details[open] summary:after {

    content: "−";

}

.faq p {

    padding: 0 18px 17px;
    margin: 0;

}

@media (max-width:1180px) {

    .menu {

        gap: 6px;

    }

    .menu a {

        padding: 7px 8px;
        font-size: .82rem;

    }

}

@media (max-width:1020px) {

    .menu a {

        padding: 10px 12px;

    }

    .sectors {

        grid-template-columns: 1fr 1fr;

    }

}

@media (max-width:680px) {

    .faq-grid,
    .sectors {

        grid-template-columns: 1fr;

    }

    .sector {

        min-height: 0;

    }

}
