

.disclaimer-new-banner {
  background: #e0e7ff;
  color: #1e3a8a;
  padding: 12px 20px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #c7d2fe;
}
.disclaimer-new-banner strong {
  font-weight: 600;
}

/* ================= HERO ================= */
.new-hero {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  padding: 96px 24px;
}

.new-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.0fr;
  gap: 64px;
  align-items: center;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

.new-hero h1 {
  color: #ffffff;
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.new-hero p {
  color: #e0e7ff;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.new-hero a.button {
  background: #ffffff;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}

.new-hero a.button:hover {
  opacity: 0.95;
}

.new-hero-illustration img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  margin: auto;
  border-radius: 8px;
}

/* ================= FEATURES ================= */
.new-features {
  padding: 96px 24px;
}

.new-features-inner {
  max-width: 1200px;
  margin: 30px;
  padding: 20px;
}

.new-features h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 64px;
}

.new-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.new-feature-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.new-feature-card img {
  width: 96px;
  margin-bottom: 24px;
}

.new-feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.new-feature-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* ================= CTA ================= */
.cta {
  /*background: #ffffff;*/
  padding: 96px 24px;
}

.cta-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 10px 10px 30px 10px;
  
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.cta a {
  background: var(--primary);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

/* ================= FOOTER ================= */
footer {
  background: var(--darker);
  color: #9ca3af;
  padding: 40px 24px;
  text-align: center;
  font-size: 14px;
}

footer span {
  color: #ffffff;
}

@media(min-width:768px){
  .new-hero { 
    flex-direction: row; justify-content: 
    space-between; text-align:left; padding:3rem; 
  }
  .new-hero-inner{
     grid-template-columns: 1.1fr 0.9fr;
  }
  .new-hero-image img { margin-top:0; }
   
  }