:root {
  --navy: #0D1B3E;
  --navy-m: #0A3E7A;
  --accent: #1B7FE1;
  --accent2: #00D4FF;
  --accent-light: #E8F1FC;
  --cost-gold: #00D4FF;
  --cost-glow: #7EC8F7;
  --text: #0D0D0D;
  --text-2: #1A1A2E;
  --text-3: #333344;
  --border: #E2E8F0;
  --bg-off: #F8FAFD;
  --white: #FFFFFF;
}


a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* HERO */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 75% 50%, rgba(27, 127, 225, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 35% 40% at 15% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 10%, rgba(27, 127, 225, 0.04) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(27, 127, 225, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 127, 225, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding: 10px 0 100px 0;
}

@media (max-width: 1023px) {
  .hero-inner {
     grid-template-columns: 1fr;
   }

}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
      border: 1px solid rgba(27, 127, 225, 0.35);
  color: #0d9eda;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7EC8F7;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.4;
    transform: scale(0.75)
  }
}

.hero h2 {
  font-size: clamp(38px, 4.5vw, 30px);
  font-weight: 800;
  color: var(--navy);
  
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero h2 .glow {
  color: transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #0099CC 60%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-cost {
  background: linear-gradient(135deg, #1B7FE1, #0099CC);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(27, 127, 225, 0.35);
}

.btn-cost:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 127, 225, 0.45);
  text-decoration: none;
  color: white;
}

.btn-ghost-cost {
  border: 1px solid #0094d1;
  color: #0094d1;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost-cost:hover {
  border-color: #000;
  background: #fff;
  color: #000;
  text-decoration: none;
}

.hero-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-pill {
  background: #174276;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-num {
  font-size: 22px;
  font-weight: 800;
  color: #00d4ff;
  letter-spacing: -0.5px;
}

.proof-label {
  font-size: 12px;
    color: #fff;
  line-height: 1.3;
}

/* SECTIONS */
.section {
  padding: 88px 20px;
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-off);
}

.section-dark {
  background: var(--navy);
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  display: block;
}

.section-title {
    font-size: clamp(28px, 3vw, 38px);
    color: var(--text);
    margin-bottom: 16px;
    font-family: poppins_semiboldregular;
}

.section-dark .section-title {
  color: white;
}

.section-lead {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 400;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  margin-bottom: 56px;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* PROBLEM SECTION */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

@media (max-width: 1023px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-left: 3px solid var(--border);
}

.problem-card:hover {
  border-left-color: var(--accent);
  box-shadow: 0 4px 16px rgba(180, 83, 9, 0.08);
}

.pc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.problem-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.cost-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  background: #FEF3C7;
  color: var(--navy);
  margin-top: 6px;
}

.what-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wp {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--accent-light);
  border: 1px solid #C5D9F0;
  border-radius: 12px;
  transition: border-color 0.2s;
}

.wp:hover {
  border-color: var(--accent);
}

.wp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wp h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.wp p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

/* STATS BAR */
.stats-bar {
  background: #161f2d;
  padding: 56px 20px;
}

.stats-row {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 767px) {
.stats-row {
  grid-template-columns: 1fr;
  gap: 20px;
}

.stat-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 0 !important;
  padding: 0 0 20px 0 !important;
}

}


.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-big {
  font-size: 52px;
  font-weight: 800;
  color: #0d9eda;  
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

@media (max-width: 1023px) {
.stat-big {
  font-size: 31px;
}
}


.stat-desc {
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}

.stat-source {
  font-size: 11px;
  color: #fff;
  margin-top: 15px;
}

/* SERVICES GRID */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


@media (max-width: 1023px) {
.svc-grid {
  grid-template-columns: 1fr;
}
}


.svc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card:hover {
  box-shadow: 0 10px 36px rgba(27, 127, 225, 0.1);
  transform: translateY(-4px);
  border-color: #C5D9F0;
}

.svc-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.svc-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.svc-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 14px;
}

.svc-saving {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #065F46;
  background: #D1FAE5;
  padding: 4px 10px;
  border-radius: 6px;
}

.svc-saving::before {
  content: "";
}

/* AI COST SECTION */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}


@media (max-width: 1023px) {
.ai-grid {
   grid-template-columns: 1fr;
}
}


.ai-visual {
  background: #161f2d;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.ai-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 30%, rgba(27, 127, 225, 0.06), transparent 70%);
}

.ai-product {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.ai-product:last-child {
  margin-bottom: 0;
}

.ai-product-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .ai-product-hdr {
    flex-wrap: wrap;
    gap: 10px;
  }

.ai-product-name {
    line-height: 18px;
  }
}


.ai-product-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.ai-product-price {
  font-size: 12px;
  font-weight: 600;
  color: #7EC8F7;
  background: rgba(27, 127, 225, 0.15);
  padding: 3px 9px;
  border-radius: 4px;
}

.ai-risk {
  font-size: 12px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.5;
}

.ai-bar-bg {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.ai-bar {
  height: 6px;
  border-radius: 3px;
}

.ai-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ai-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.ai-point h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.ai-point p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* DELIVERY */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}


@media (max-width: 1023px) {
.delivery-grid {
  grid-template-columns: 1fr;
  gap: 20px
}
}


.phases {
  display: flex;
  flex-direction: column;
}

.phase {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.phase:first-child {
  border-top: 1px solid var(--border);
}

.phase-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

.phase h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.phase p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

.phase-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--accent-light);
  color: var(--accent);
  margin-left: 8px;
  vertical-align: middle;
}

.offerings {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offering-card {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, background 0.2s;
}

.offering-card:hover {
  border-color: var(--accent);
  background: white;
}

.offering-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.offering-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
}

.tag-g {
  background: #D1FAE5;
  color: #065F46;
}

.tag-b {
  background: #DBEAFE;
  color: #1E40AF;
}

.tag-o {
  background: #FEE2E2;
  color: #991B1B;
}

/* WHY ARESS */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 1023px) {
.why-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}
}

.why-pts {
  display: flex;
  flex-direction: column;
}

.why-pt {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.why-pt:first-child {
  border-top: 1px solid var(--border);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-pt h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-pt p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

.hc-box {
  background: #161f2d;
  border-radius: 20px;
  padding: 36px;
  color: white;
}

.hc-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.hc-box p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.65;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #fff;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  .check-item {
    align-items: flex-start;
   }
} 

.chk {
  color: #7EC8F7;
  font-size: 16px;
  flex-shrink: 0;
}

/* EXPLORE */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


@media (max-width: 1023px) {
.explore-grid {
  grid-template-columns: 1fr;
}

.explore-card {
  text-align: center;
}
}


.explore-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s;
  text-decoration: none;
}

.explore-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(27, 127, 225, 0.1);
  transform: translateY(-3px);
  text-decoration: none;
}

.explore-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.explore-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
}

.explore-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.explore-card.hub {
  border-left: 3px solid var(--accent);
  background: var(--accent-light);
}

.hub-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.hub-back::before {
  content: '←';
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  padding-right: 24px;
  position: relative;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-size: 20px;
  font-weight: 300;
}

.faq-a {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


@media (max-width: 1023px) {
.blog-grid {
  grid-template-columns: 1fr;
}
}


.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 27, 62, 0.1);
}

.blog-hdr {
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-circle {
  position: absolute;
  right: -24px;
  top: -24px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.blog-emoji {
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.blog-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  line-height: 1.35;
  margin: 0;
}

.blog-body {
  padding: 22px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-excerpt {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.blog-meta {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}

.blog-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

/* CTA */
.cta-section {
  background: #161f2d;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
    background: #161f2d;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-section h2 span {
  color: #7EC8F7;
}

.cta-section p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 23px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--navy);
  padding: 15px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: var(--navy);
}

.btn-ghost-cta {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 15px 34px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-cta:hover {
  border-color: white;
  color: white;
  text-decoration: none;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
}


@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-left>* {
  animation: fade-up 0.55s ease both;
}

.hero-left>*:nth-child(1) {
  animation-delay: 0.05s
}

.hero-left>*:nth-child(2) {
  animation-delay: 0.15s
}

.hero-left>*:nth-child(3) {
  animation-delay: 0.25s
}

.hero-left>*:nth-child(4) {
  animation-delay: 0.35s
}

.hero-left>*:nth-child(5) {
  animation-delay: 0.45s
}

/* ── HERO ── */
.hero-viz {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg {
  width: 100%;
  max-width: 440px;
}

.hero-lead-strong {
  color: #0094d1;
  font-weight: 600;
}

/* ── SECTION LEAD VARIANTS ── */
.section-lead-mt {
  margin-top: 14px;
}

/* ── SERVICE SAVING ── */
.svc-saving {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ── AI PRODUCT ── */
.ai-product-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-bar-agentforce {
  width: 72%;
  background: linear-gradient(90deg, #1B7FE1, #00D4FF);
}

.ai-bar-datacloud {
  width: 88%;
  background: linear-gradient(90deg, #0A3E7A, #1B7FE1);
}

.ai-bar-label {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.ai-tip-box {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(27, 127, 225, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(27, 127, 225, 0.25);
}

.ai-tip-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.ai-tip-strong {
  color: #7EC8F7;
}

.ai-cta-box {
  padding: 16px 18px;
  background: var(--accent-light);
  border-radius: 10px;
  border: 1px solid #C5D9F0;
}

.ai-cta-box-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.ai-cta-box-desc {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.65;
}

.ai-cta-box-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

/* ── DELIVERY NUDGE BOX ── */
.nudge-box {
  background: var(--accent-light);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #C5D9F0;
  margin-top: 4px;
}

.nudge-box-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.nudge-box-desc {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.6;
}

.nudge-box-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

/* ── WHY SECTION HEADER ROW ── */
.section-header-row-mb48 {
  margin-bottom: 48px;
}

.section-header-row-mb32 {
  margin-bottom: 32px;
}

/* ── HEALTH CHECK BOX ── */
.hc-box .btn-cost {
  display: block;
  text-align: center;
}

.hc-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
  text-align: center;
}

/* ── CHECKLIST ICONS ── */
.chk {
  display: flex;
  align-items: center;
}

/* ── EXPLORE SECTION ── */
.explore-all-btn {
  background: var(--navy);
  color: white;
  padding: 12px 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  align-self: flex-end;
  text-decoration: none;
  transition: background 0.2s;
}

.explore-all-btn:hover {
  background: var(--accent);
  text-decoration: none;
  color: white;
}

/* ── FAQ SECTION HEADER ── */
.faq-section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 52px;
}

.eyebrow-center {
  justify-content: center;
}

/* ── BLOG SECTION ── */
.blog-all-btn {
  align-self: flex-end;
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-hdr-1 {
  background: linear-gradient(135deg, #0D1B3E, #1B7FE1);
}

.blog-hdr-2 {
 background: linear-gradient(135deg, #0a7c4a 0%, #45c65a 100%);
}

.blog-hdr-3 {
  background: linear-gradient(135deg, #5c1f87 0%, #9c55da 100%);
}


/* insights-section */

.insights-section .btn-ai {
  margin-bottom: 50px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


@media (max-width: 767px) {
  .insights-grid {
   grid-template-columns: 1fr;
  }
}


  .btn-ai {
    background: linear-gradient(135deg, #1b7fe1 0%, #0099cc 100%);
    color: white;
    padding: 14px 30px;
    margin-bottom: 50px;
    border-radius: 8px;
    font-family: poppins_semiboldregular;
    font-size: 15px;
    display: inline-block;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(27, 127, 225, 0.35);
}


.btn-ai:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 127, 225, 0.45);
    text-decoration: none;
    color: white;
}