:root {
  --adt-blue: #00599C;
  --adt-blue-dark: #003f73;
  --adt-blue-deep: #001f3f;

  --adt-accent: #24BCFF;
  --adt-accent-hover: #1aa8e6;

  --white: #FFFFFF;
  --muted: #a8c7e6;
}

/* HERO BACKGROUND */
.product-banner-n.product-hero {
/*   background: linear-gradient(135deg, var(--adt-blue-deep) 0%, #003f73 50%, var(--adt-blue) 100%); */
  color: var(--white);
  padding: 100px 15px;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.product-banner-n.product-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(36, 188, 255, 0.25),
    transparent 60%
  );
  right: -150px;
  top: -100px;
}

/* CONTAINER */
.product-banner-n .product-hero-container {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* LEFT SIDE */
.product-banner-n .product-hero-left {
  flex: 1;
}

.product-banner-n .product-hero-left .eyebrow-flex {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

/* BADGES */
.product-banner-n .badge-outline {
  border: 1px solid rgba(36, 188, 255, 0.4);
  background: rgba(36, 188, 255, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bfeaff;
}

/* TITLE */
.product-banner-n .hero-title {
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.product-banner-n .hero-title span {
  color: var(--adt-accent);
/*   font-style: italic; */
}

/* DESCRIPTION */
.product-banner-n .hero-desc {
  color: var(--muted);
/*   font-size: 16px; */
  line-height: 1.8;
  margin-bottom: 35px;
}

/* BENEFITS */
.product-banner-n .benefit-list {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  padding:0;
}

.product-banner-n .benefit-item {
  display: flex;
  flex-direction: column;
  
}

.product-banner-n .benefit-item strong {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: #fff;
}

/* .product-banner-n .benefit-item span {
  font-size: 12px;
/*   color: #7faed6; */
} */

/* RIGHT CARD */
.product-banner-n .product-hero-right {
  flex: 1;
}

.product-banner-n .cta-area-wrapper,
.product-banner-n .simple-content-wrapper {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  color: #000;
  overflow: hidden;
}

/* BUTTONS */
.product-banner-n .hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  row-gap: 10px;
  flex-direction: column;
  padding: 20px;
}

.product-banner-n .hero-btn {
  padding: 19px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .2s ease;
  justify-content: center;
}

/* PRIMARY BUTTON (CYAN) */
.product-banner-n .hero-btn.btn-primary {
  background: var(--adt-accent);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  justify-content: center;
}

.product-banner-n .hero-btn.btn-primary:hover {
  background: var(--adt-accent-hover);
  transform: translateY(-2px);
}

/* SECONDARY BUTTON (DARK BLUE) */
.product-banner-n .hero-btn.btn-secondary {
  background: #0b2a4a;
  color: #fff;
}

.product-banner-n .hero-btn.btn-secondary:hover {
  background: #163a63;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 991px) {
  .product-banner-n .product-hero-container {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }

  .product-banner-n .benefit-list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .product-banner-n .hero-actions {
    justify-content: center;
  }
}

.product-banner-n .badge-outline * {
    color: #bfeaff;
}

.product-banner-n .contact-area {
    background: #f9f8f5;
    border: 1px solid #e0dad0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 0 auto 16px;
    width: 100%;
    max-width: calc(100% - 40px);
}

.product-banner-n .contact-area strong {
    font-size: 34px;
    font-weight: 700;
    color: #01284e;
    display: block;
    margin-bottom: 4px;
}

.product-banner-n .contact-area p {
/*     font-size: 11px; */
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
/*     color: #787878; */
    margin-bottom: 6px;
}

.product-banner-n .hero-actions .btn-icon-wrap  , .product-banner-n .hero-actions .btn-icon-wrap * {
    display: block;
    line-height: 1;
}

.product-banner-n .title-header {
    padding: 30px 20px;
    text-align: center;
    background: #19a8e6;
    color: white;
    margin: 0 0 35px;
}

.product-banner-n .title-header h3 {
    color: white;
}
@media(max-width: 767px){
.product-banner-n.product-hero {
  padding: 40px 15px;
}
}

