/* ===========================
   HERO SECTION – FOR BUSINESS PAGE
   =========================== */

.for-business-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff5a3c, #fbb034);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  padding: 30px 10px;
}

.for-business-hero .hero-content {
  position: relative;
  z-index: 1;
  color: white;
  margin: 0 auto;
}

.for-business-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.for-business-hero .hero-subtext {
  font-size: 1.1rem;
  color: white;
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Buttons */
.for-business-hero .hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.for-business-hero .btn-primary,
.for-business-hero .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
}

.for-business-hero .btn-primary {
  background: linear-gradient(135deg, #ff5a3c, #fbb034);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 90, 60, 0.3);
}

.for-business-hero .btn-primary:hover {
  background: linear-gradient(135deg, #f6502c, #ffa51f);
  transform: translateY(-2px);
}

.for-business-hero .btn-secondary {
  background: #fff;
  color: #ff5a3c;
  border: 2px solid #ff5a3c;
}

.for-business-hero .btn-secondary:hover {
  background: #ff5a3c;
  color: #fff;
}

/* Video play icon */
.for-business-hero .btn-secondary::before {
  content: "▶";
  font-size: 0.9rem;
  margin-right: 0.5rem;
  line-height: 1;
}

/* GALLERY */
.for-business-hero .hero-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  z-index: 1;
  position: relative;
}

.for-business-hero .hero-gallery img {
  width: 300px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.for-business-hero .hero-gallery img:hover {
  transform: scale(1.03);
}

/* ================================
   For User Section (fix layout order)
   ================================ */
.nt-for-user .nt-for-business__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
  position: relative;
  text-align: center;
  padding: 24px;
}

/* Image styling */
.nt-for-user .nt-for-business__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.nt-for-user .nt-for-business__inner .nt-for-business__desc {
  max-width: 1010px;
  align-items: center;
}

.nt-for-business__inner.nt-for-user__inner {
  box-shadow: none;
  border: none;
}

.nt-for-business__col.nt-for-user__col--media:before {
  background: radial-gradient(
    ellipse at 40% 50%,
    #ff5a3c 0%,
    rgba(255, 90, 60, 0.05) 80%
  );
  transform: translate(-50%, -50%) scaleX(1.3) scaleY(0.8) rotate(0deg)
    translateX(var(--orbit));

  content: "";
  position: absolute;
  left: 50%;
  width: var(--orb-size);
  height: var(--orb-size);
  pointer-events: none;
  z-index: 0;
  filter: blur(38px);
  border-radius: 50%;
  will-change: transform;
  opacity: 0.95;
  max-width: 1000px;
  max-height: 500px;
  width: 100%;
  height: 100%;
  top: 150px;
  z-index: -1;
  overflow: visible;
  transform: translate(-50%, 0);
}

.nt-for-business__col.nt-for-business__col--media {
  overflow: visible;
}

.nt-for-business__col.nt-for-business__col--media:before {
  background: radial-gradient(
    ellipse at 40% 50%,
    #ff5a3c 0%,
    rgba(255, 90, 60, 0.05) 80%
  );
  transform: translate(-50%, -50%) scaleX(1.3) scaleY(0.8) rotate(0deg)
    translateX(var(--orbit));
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--orb-size);
  height: var(--orb-size);
  pointer-events: none;
  z-index: 0;
  filter: blur(38px);
  border-radius: 50%;
  will-change: transform;
  opacity: 0.95;
  max-width: 275px;
  max-height: 450px;
  width: 100%;
  height: 100%;
  /* top: 150px; */
  z-index: -1;
  overflow: visible;
  transform: rotate(25deg);
}

.nt-section {
  padding: 80px 0;
}
.nt-section__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.nt-section__desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Container */
.nt-cards-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Card */
.nt-card {
  background: #fff;
  border: 1px solid rgba(20, 21, 26, 0.06);
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Image wrapper keeps all cards same height visually */
.nt-card__image {
  aspect-ratio: 16 / 10; /* keeps consistent crop across cards */
  width: 100%;
  overflow: hidden;
  background: #f6f7f9;
}

.nt-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.nt-card:hover .nt-card__image img {
  transform: scale(1.03);
}

/* Text */
.nt-card__title {
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 14px 16px 6px;
  font-weight: 600;
  color: #0f1115;
  text-align: center;
  padding: 0 24px;
}

.nt-card__desc {
  margin: 0 16px 16px;
  color: #545a66;
  line-height: 1.55;
  text-align: center;
  padding: 24px;
  padding-top: 0;
}

/* Image-only variant (nice tight gallery look) */
.nt-card--image-only {
  padding-bottom: 0;
}

.nt-card--image-only .nt-card__title,
.nt-card--image-only .nt-card__desc {
  display: none;
}

.nt-section--how-it-works .nt-section__content {
  text-align: center;
}

.nt-two-cols {
  display: flex;
  align-items: center;
  gap: 60px;
}
.nt-two-cols--reverse {
  flex-direction: row-reverse;
}
.nt-col--text,
.nt-col--image {
  flex: 1 1 50%;
}
.nt-checklist {
  margin: 0;
  padding: 0;
}
.nt-checklist li {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.check-icon {
  color: #ff5a3c;
  font-weight: 700;
}

.nt-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.nt-stat-card {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 0 #ff593c36 inset, 0 0 0 6px rgba(4, 25, 42, 0.06),
    0 16px 36px rgba(31, 15, 71, 0.25);
}

.nt-stats-grid .nt-stat-card:nth-child(even) {
  box-shadow: 0 1px 0 #ff593c36 inset, 0 0 0 6px rgba(4, 25, 42, 0.06),
    0 16px 36px rgba(255, 90, 60, 0.25);
}
.nt-stat-fact {
  font-size: 2rem;
  font-weight: 700;
  color: #ff5a3c;
}
.nt-stat-icon {
  display: inline-flex;
  padding: 10px;
  background: #ff593c18;
  border-radius: 500px;
  padding: 15px;
  margin-bottom: 15px;
}
.nt-stat-icon svg,
.nt-stat-icon i,
.nt-stat-icon img {
  width: 40px;
  height: 40px;
  display: inline-block;
}

.nt-stat-desc {
  margin-top: 15px;
}

.nt-stat-title,
.nt-stat-desc p {
  margin: 0;
}

.hero-video {
  border-radius: 10px;
}

.nt-section--stats {
  text-align: center;
}

.nt-section--cta {
  background: linear-gradient(135deg, #ff5a3c, #fbb034);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.nt-section--cta .nt-section__desc {
  color: white;
}
.nt-section--cta .btn-primary {
  background: #fff;
  color: #ff5a3c;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.nt-section--cta .btn-primary:hover,
.nt-section--cta .btn-primary:focus {
  background-color: #f6502c;
  color: white;
}

.nt-two-cols.nt-two-cols--normal {
  flex-direction: row-reverse;
}

/* Responsive behavior */
@media (max-width: 992px) {
  .nt-for-business__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .nt-for-business__col--media {
    order: 1;
    height: 320px;
  }
  .nt-for-business__col--text {
    order: 2;
    text-align: center;
  }
  .nt-for-user .nt-for-business__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nt-for-user .nt-for-business__col--media,
  .nt-for-user .nt-for-business__col--text {
    order: unset;
    text-align: center;
  }
  .nt-for-user .nt-for-business__col--media img {
    max-height: 300px;
    object-fit: contain;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .for-business-hero h1 {
    font-size: 2rem;
  }

  .for-business-hero .hero-gallery img {
    width: 90%;
    max-width: 360px;
  }
  .nt-two-cols.nt-two-cols--reverse,
  .nt-cards-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .nt-two-cols.nt-two-cols--normal {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
  }
  .page-template-page-for-business h2 {
    font-size: 26px;
  }
  .hero-video-wrapper .hero-video {
    width: 100%;
    height: auto;
  }
  .nt-for-user,
  .nt-for-business__img {
    object-fit: contain !important;
  }
}
