/* stile featured page */

.landing-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #2196F3;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: #2196F3;
}

/* Features Section */
.features-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 60px;
    animation: fadeIn 1s ease-out;
}

.feature-row:last-child {
    margin-bottom: 80px;
}

.feature-image {
    flex: 1;
    min-width: 0;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.05);
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #0d47a1, #47a3fd);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.feature-content h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.feature-highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #b3e5fc 100%);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid #2196F3;
}

/* Reverse layout per righe alternate */
.feature-row.reverse {
    flex-direction: row-reverse;
}

/* Pricing Section */
.pricing-section {
    /*background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);*/
    padding: 20px 20px;
    text-align: center;
}

.pricing-section h2 {
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-section > p {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 60px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card, .pricing-card-sing  {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card  {
    max-width: 320px;
}

.pricing-card::before,.pricing-card-sing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #2196F3, #21CBF3);
}

.pricing-card.promo::before, .pricing-card-sing.promo::before {
    background: linear-gradient(45deg, #48bb78, #38a169);
}

.pricing-card:hover, .pricing-card-sing:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    transform: scale(1.08);
    border: 3px solid #2196F3;
}

.pricing-card.featured::after {
    content: 'PIÙ POPOLARE';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #2196F3;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3,.pricing-card-sing h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.pricing-card .price,.pricing-card-sing .price {
    font-size: 3rem;
    color: #2196F3;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-card.promo .price, .pricing-card-sing.promo .price {
    color: #48bb78;
}

.pricing-card .price span, .pricing-card-sing .price span {
    font-size: 1.2rem;
    color: #718096;
}

.pricing-card ul, .pricing-card-sing ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-card ul li, .pricing-card-sing ul li {
    padding: 12px 0;
    color: #4a5568;
    font-size: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-card ul li:before, .pricing-card-sing ul li:before {
    content: '✓';
    color: #48bb78;
    font-weight: bold;
    margin-right: 10px;
}

.pricing-button, .btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    border:unset;
}

.pricing-button:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
    color: white;
}

.pricing-button.promo-button {
    background: linear-gradient(45deg, #48bb78, #38a169);
}

.pricing-button.promo-button:hover {
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.4);
}

/* Security Badge */
.security-badge {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.security-content {
    max-width: 800px;
    margin: 0 auto;
}

.security-badge h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 30px;
    font-weight: 700;
}

.security-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-icon {
    text-align: center;
}

.security-icon img {
    height: 60px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.security-icon p {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

/* Pulsante finale “Scegli il tuo piano” */
.hero-buttons .choose-plan-button {
    background: linear-gradient(45deg, #2196F3, #21CBF3); /* Blu attuale */
    color: #fff;
    border-radius: 12px;
    font-size: 1.3rem;
    line-height: 1.4;
    padding: 25px 40px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.hero-buttons .choose-plan-button:hover {
    background: linear-gradient(45deg, #1a7edb, #1fc5f3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Mobile */
@media (max-width: 600px) {
    .hero-buttons .choose-plan-button {
        width: 90%;
        font-size: 1.2rem;
        padding: 20px;
    }
}

.hero-buttons .cta-button {
    display: inline-block;
    /*flex: 1 1 280px;*/
    flex: 1 1;
    max-width: 320px;
    text-align: center;
    padding: 25px 20px;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* Pulsante Login – bianco su sfondo blu */
.hero-buttons .login-button {
    background: #ffffff;
    color: #1a73e8;
    border: 2px solid #ffffff;
}
.hero-buttons .login-button:hover {
    background: #e6f0ff;
    transform: translateY(-4px);
}

/* Pulsante Sottoscrizione – blu scuro elegante */
.hero-buttons .signup-button {
    background: linear-gradient(45deg, #0d47a1, #1976d2); /* blu scuro → blu medio */
    color: #fff;
    border: none;
}
.hero-buttons .signup-button:hover {
    background: linear-gradient(45deg, #1565c0, #1e88e5); /* tono leggermente più chiaro al passaggio */
    transform: translateY(-4px);
}

/* Pulsante Demo */
.hero-buttons .demo-button {
    background: linear-gradient(45deg, #c56600, #edb46a);
    color: #fff;
    border: none;
}
.hero-buttons .demo-button:hover {
    background: linear-gradient(45deg, #dc8c37, #edb46a);
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .cta-button {
        width: 90%;
        font-size: 1.1rem;
        padding: 20px;
    }
}



/* Responsive */
@media (max-width: 968px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .feature-content h2 {
        font-size: 2rem;
    }
    
    .feature-content p {
        font-size: 1.1rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .feature-content h2 {
        font-size: 1.7rem;
    }
    
    .pricing-section h2 {
        font-size: 2rem;
    }
}

/* Services Section */
.services-section {
    /*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
    padding: 100px 20px 80px 20px;
    text-align: center;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-section h2 {
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Services Grid */
@media (max-width: 968px) {
    .services-section h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
}

/* fine stile featured page */

/* inizio stile pagina chi siamo */


/* Container principale */
.chi-siamo-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
}

/* Titolo principale */
.chi-siamo-title {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
    text-align: center;
}

/* Sottotitolo */
.chi-siamo-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.2em;
    margin-bottom: 40px;
    font-style: italic;
}

/* Paragrafo introduttivo */
.chi-siamo-intro {
    font-size: 1.15em;
    color: #34495e;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.8;
}

/* Sezioni */
.chi-siamo-section {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 5px solid #3498db;
    border-radius: 5px;
}

.chi-siamo-section-title {
    color: #2980b9;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.chi-siamo-section p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Sezione finale "Perché Sceglierci" */
.chi-siamo-closing {
    background-color: #e8f5e9;
    border-left-color: #16a085;
    margin-top: 50px;
}

.chi-siamo-closing p:last-child {
    margin-bottom: 0;
}

/* Box evidenziato */
.chi-siamo-highlight {
    background-color: #ecf0f1;
    padding: 25px;
    border-radius: 5px;
    margin: 30px 0;
    text-align: center;
}

.chi-siamo-highlight strong {
    color: #2c3e50;
    font-size: 1.3em;
}

/* Titolo sezione valori */
.chi-siamo-values-title {
    text-align: center;
    color: #2c3e50;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 1.8em;
}

/* Griglia valori */
.chi-siamo-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* Card singolo valore */
.chi-siamo-value-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chi-siamo-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Icona valore */
.chi-siamo-value-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

/* Titolo card valore */
.chi-siamo-value-title {
    color: #16a085;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
}

/* Testo card valore */
.chi-siamo-value-text {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive per tablet */
@media (max-width: 768px) {
    .chi-siamo-page {
        padding: 30px 15px;
    }
    
    .chi-siamo-title {
        font-size: 2em;
    }
    
    .chi-siamo-section {
        padding: 20px;
    }
    
    .chi-siamo-values-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive per mobile */
@media (max-width: 480px) {
    .chi-siamo-title {
        font-size: 1.6em;
    }
    
    .chi-siamo-subtitle {
        font-size: 1em;
    }
    
    .chi-siamo-intro {
        font-size: 1em;
    }
    
    .chi-siamo-section-title {
        font-size: 1.4em;
    }
    
    .chi-siamo-section {
        padding: 15px;
    }
    
    .chi-siamo-highlight {
        padding: 15px;
    }
    
    .chi-siamo-highlight strong {
        font-size: 1.1em;
    }
}
/* fine stile pagina chi siamo */


span.badge.bg-danger.featured-article-badge {
    display: none;
}

#sp-main-body {
  padding: 30px 0 !important;
}

#sp-footer ul.menu li {
  display: block !important;
}

#sp-user1 {
  text-align: left;
  font-size: 14px;
  color: rgb(162, 162, 162);
}

.sp-column.footaleft {
	text-align:left;
}

.offcanvas-menu {
    width: 246px !important;
}

.formafco {
  max-width: 1000px;
  margin: auto;
}

.formafco h5 {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  text-align: center;
  margin-bottom: 30px;
}

/* inizio stile per rimuovere capitalize da jssupportticket */

div.js-ticket-reply-forms-heading,
div#js-tk-formwrapper div.js-form-title, 
div#jsst-breadcrunbs ul li, 
a.js-ticket-dash-menu span.js-ticket-dash-menu-text, 
div#jsst-header div#jsst-tabs-wrp span.jsst-header-tab a.js-cp-menu-link,
span#js-attachment-add {
        text-transform: unset !important;
    }

/* fine stile per rimuovere capitalize da jssupportticket */

.js-tk-copyright-desc-wrapper {
    display: none;
}

.form-group-fla .awesomplete {
  width: 100%;
}

.feature-image video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.awesomplete > ul {
  background: linear-gradient(to bottom right,#fff,hsl(0, 0%, 100%)) !important;
}

#sp-header {
  background: rgb(255, 255, 255, 0.95) !important;
}

.com-users-login.login {
  max-width: 500px;
  margin: auto;
  padding-bottom: 50px;
}

.control-group .controls {
  margin: 0 !important;
}


/* CSS PER MODULO LOGIN */
.com-users-login__input .input-group {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.control-group.com-users-login__input {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 60px;
}

.com-users-login__input .control-label {
  flex: 0 0 180px;   /* larghezza fissa: regola in base al testo più lungo ("Nome utente *") */
  text-align: left;
  margin: 0;
}

.com-users-login__input .controls {
  flex: 1 1 auto;
  min-width: 0;
}

.com-users-login__input .form-control,
.com-users-login__input .input-group {
  width: 100%;
}

.com-users-login__submit.control-group {
    padding: 30px 0 10px 0;
}

@media (max-width: 449px) {
  .control-group.com-users-login__input {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .com-users-login__input .control-label {
    flex: 0 0 auto;
    text-align: left;
  }

  .com-users-login__input .controls {
    flex: 0 0 auto;
    max-width: 100%;
  }
}

/* CSS PER MODULO LOGIN FINE*/

/* CSS PER PAGINE ABBONAMENTO */
.osm-container {
  max-width: 800px;
  margin: auto;
}
/* CSS PER PAGINE ABBONAMENTO FINE */