/* GLOBAL TYPOGRAPHY + CONTAINER */
body {
  font-size: 17px;
  line-height: 1.6;
  font-family: 'Lato', sans-serif;
  color: #333;
}
h1, h2, h3, h4, h5 {
  line-height: 1.3;
  font-weight: 700;
  color: #05386B;
}
.investor .offerta {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO SECTION */
.investor .hero-section {
  background-color: #FF0;
  padding: 100px 20px;
}
.investor .hero-section .video-bg{
  padding: 100px 20px;
}

.investor .hero-section h1 {
  font-size: 42px;
  font-weight: 700;
  color: #05386B;
  margin-bottom: 20px;
}
.investor .hero-section h1 span{
  font-size: 35px;
  font-weight: 400;
  color: #05386B;
  margin-bottom: 20px;
}
.investor .hero-section p {
  font-size: 18px;
  color: #379683;
  max-width: 500px;
  margin-bottom: 20px;
}
.investor .cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 10px;
}
.investor .price-box .cta-buttons {
  display: inline;
  
}
.investor .cta-buttons .btn {
  font-weight: 600;
  border-radius: 8px;
  font-size: 16px;
}
.investor .btn-primary {
  background-color: #379683;
  color: white;
  border: none;
}
.investor .btn-primary:hover {
  background-color: #2b7c6b;
}
.investor .btn-outline {
  border: 2px solid #379683;
  background-color: transparent;
  color: #379683;
}
.investor .btn-outline:hover {
  background-color: #379683;
  color: white;
}

/* SECTION TITLES */
.investor .features-section h2,
.investor .pricing-section h2,
.investor .comparison-section h2,
.investor .newsletter-section h2 {
  font-size: 39px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #05386B;
}

h2 span{color: #379683;}

/* FEATURES SECTION */
.investor .features-section {
  padding: 80px 20px;
  background-color: #ffffff;
}
/* FEATURES SECTION */
.investor .features-section.soluzione {
  padding: 80px 20px;
  background-color: #EDF5E1;
}
.investor .features-section h5 {
  font-size: 18px;
  font-weight: 700;
  color: #05386B;
  margin-top: 10px;
  margin-bottom: 6px;
}
.investor .features-section p {
  color: #444;
}
.investor .features-section .row {
  gap: 0px;
}
.investor .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #379683;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin: 0 auto 15px;
}
.investor .icon-calendar::before { content: "\1F4C5"; }
.investor .icon-clock::before { content: "\23F0"; }
.investor .icon-flex::before { content: "\1F4AA"; }
.investor .icon-sync::before { content: "\1F501"; }

/* PRICING SECTION */
.investor .pricing-section {
  padding: 80px 20px;
  background-color: #F9F9F9;
}
.investor .price-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 40px 30px;
  margin: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.investor .price-box.highlight {
  border: 2px solid #379683;
  background-color: #EDF5E1;
}
.investor .price {
  font-size: 32px;
  font-weight: 700;
  color: #05386B;
  margin: 15px 0;
}

/* COMPARISON SECTION */
.comparison-section {
  padding: 80px 20px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.comparison-table th,
.comparison-table td {
  border: 1px solid #ccc;
  padding: 16px;
  text-align: center;
}
.comparison-table th {
  background-color: #EDF5E1;
  color: #05386B;
  font-weight: 700;
}

/* TOPBAR */
.lp-topbar {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.lp-logo img {
  height: 80px;
}


.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (min-width: 768px) {
    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 23%;
        max-width: 25%;
    }
}


@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 26px;
  }

  .cta-buttons .btn {
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  .features-section .row {
    flex-direction: column;
    align-items: center;
  }

  .price-box {
    padding: 25px 15px;
  }

  .comparison-table th,
  .comparison-table td {
    font-size: 13px;
    padding: 10px;
  }

  .lp-logo img {
    height: 48px;
  }

  .video-wrapper iframe {
    max-height: 200px;
    margin-top: 20px;
  }
}
