.ai-print-hero {
  font-family: "Inter", "Poppins", Arial, sans-serif;
  background: #f6f8fc;
}

.hero-wrap {
  background:
    radial-gradient(circle at 75% 45%, rgba(27, 111, 255, 0.35), transparent 35%),
    radial-gradient(circle at 55% 40%, rgba(255, 34, 137, 0.35), transparent 32%),
    linear-gradient(135deg, #061632 0%, #081b3d 48%, #07142d 100%);
  color: #ffffff;
  overflow: hidden;
}


.hero-circle {
  position: absolute;
  border: 2px solid var(--bs-danger);
  border-radius: 50%;
  pointer-events: none;
  opacity: .5;
}

.hero-circle-1 {
  width: 500px;
  height: 500px;
  top: -180px;
  right: -180px;
}

.hero-circle-2 {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -120px;
}

.hero-circle-3 {
  width: 260px;
  height: 260px;
  top: -60px;
  right: -60px;
}


.min-vh-hero {
  min-height: 560px;
  padding: 60px 0 45px;
}

.hero-copy h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.hero-copy h2 {
  font-size: clamp(22px, 2vw, 32px);
  color: var(--bs-success);
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-copy p {
  /* max-width: 580px; */
  font-size: 17px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
}

.trust-line {
  color: var(--bs-success) !important;
  font-style: italic;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 32px 0 24px;
}

.hero-actions .btn {
  min-width: 210px;
  padding: 16px 26px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
}

.btn-upload {
  background: #20d66b;
  border: 2px solid #62f59b;
  color: #fff;
}

.btn-upload:hover {
  background: #18bf5c;
  color: #fff;
}

.btn-quote {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-quote:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.hero-badges span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  margin-right: 7px;
  border-radius: 50%;
  background: #19c96b;
  color: #fff;
  font-size: 12px;
}

.hero-visual {
  position: relative;
}

.before-after-card {
  position: relative;
  max-width: 760px;
  margin-left: auto;
}

.before-after-card img {
  /* background-color: #18bf5c; */

  width: 100%;
  display: block;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.35));
  border-radius: 40px;

}

.before-after-card img:hover {
  transform: translateY(-5px);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12);
}


.tag {
  position: absolute;
  top: 42px;
  z-index: 3;
  padding: 9px 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;
}

.tag-left {
  left: 18%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.tag-right {
  right: 8%;
  background: #22c55e;
  color: #fff;
}

.divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 56%;
  width: 3px;
  background: rgba(255, 255, 255, 0.95);
  z-index: 2;
}

.slider-dot {
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #07142d;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  z-index: 4;
}

.platform-section {
  background: #f7f8fc;
  padding: 42px 0 42px;
  width: 100%;
  overflow: hidden;
}

.platform-section h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #081632;
  margin-bottom: 24px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 14px;
}

.platform-card {
  min-height: 112px;
  background: #fff;
  border: 1px solid #e7eaf2;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(20, 35, 70, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transition: all .22s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(20, 35, 70, 0.14);
}

.platform-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.platform-card span {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
  text-align: center;
}

@media (max-width: 1199px) {
  .platform-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-copy {
    text-align: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-badges {
    justify-content: center;
  }

  .before-after-card {
    margin: 35px auto 0;
  }
}

@media (max-width: 767px) {
  .min-vh-hero {
    padding: 42px 0 35px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tag {
    top: 20px;
    font-size: 10px;
    padding: 6px 9px;
  }

  .slider-dot {
    width: 44px;
    height: 44px;
    font-size: 12px;
  }
}

.ai-print-section {
  background: #f8f9fc;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e8ebf2;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(20, 35, 80, 0.06);
}

.info-card h3,
.info-card h4 {
  color: #101833;
  font-weight: 800;
  margin-bottom: 18px;
}

.info-card p {
  color: #44506a;
  font-size: 15px;
  line-height: 1.7;
}

.fail-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fail-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #3c465f;
  font-size: 14px;
  font-weight: 600;
}

.fail-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -2px;
  color: #d72222;
  font-size: 22px;
  font-weight: 800;
}

.quality-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icon-box {
  width: 58px;
  height: 58px;
  border: 2px solid #243b78;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #243b78;
  font-size: 28px;
  margin-bottom: 20px;
}

.strong-text {
  color: #101833 !important;
  font-size: 19px !important;
  font-weight: 800;
  line-height: 1.6 !important;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  color: #3c465f;
  font-size: 15px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eef2ff;
  color: #243b78;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222b45;
  font-size: 14px;
  font-weight: 700;
}

.feature-item i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #d8deef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #243b78;
  font-size: 15px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .info-card {
    padding: 26px;
  }
}


.ai-fix-print-section {
  background: #f7f8fc;
  font-family: "Inter", "Poppins", Arial, sans-serif;
}

.info-panel {
  background: #ffffff;
  border: 1px solid #e7eaf2;
  border-radius: 22px;
  padding: 34px 36px;
  box-shadow: 0 18px 45px rgba(20, 35, 70, 0.07);
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #081632;
  margin-bottom: 32px;
}

.fix-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.fix-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fix-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 17px;
  font-size: 14px;
  font-weight: 600;
  color: #273248;
  line-height: 1.35;
}

.fix-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bs-success);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manual-box {
  max-width: 580px;
  background: linear-gradient(135deg, #f0e9ff, #f8f5ff);
  border-radius: 18px;
  padding: 24px 34px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.manual-box p {
  font-size: 17px;
  color: #273248;
  margin: 0;
  line-height: 1.5;
}

.print-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}


.print-item {
  min-height: 96px;
  padding: 15px 10px;
  text-align: center;
  border-right: 1px solid #e7eaf2;
  border-bottom: 1px solid #e7eaf2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.print-item:nth-child(5n) {
  border-right: none;
}

.print-item:nth-last-child(-n+5) {
  border-bottom: none;
}

.print-item span {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 10px;
  /* filter: grayscale(1); */
  /* opacity: 0.75; */
}

/* .print-item:hover span {
  filter: grayscale(0);
  opacity: 1;
} */

.print-item p {
  font-size: 14px;
  font-weight: 800;
  color: #151c33;
  margin: 0;
  line-height: 1.25;
}

.print-item:hover {
  background: #f8fbff;
  transform: scale(1.1);
  transition: .3s;
}


@media (max-width: 1199px) {
  .fix-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .print-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .print-item:nth-child(4n) {
    border-right: 1px solid #e7eaf2;
  }

  .print-item:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 767px) {
  .info-panel {
    padding: 28px 22px;
  }

  .section-title {
    font-size: 22px;
  }

  .fix-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .manual-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .print-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .print-item:nth-child(3n),
  .print-item:nth-child(4n) {
    border-right: 1px solid #e7eaf2;
  }

  .print-item:nth-child(2n) {
    border-right: none;
  }
}


.process-circle {
  width: 70px;
  height: 70px;
  margin: auto auto 20px;
  border-radius: 50%;
  background: var(--bs-success);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
}

@media(min-width:992px) {

  .row.position-relative::before {

    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 58px;
    height: 2px;
    background: #d9d9d9;
    z-index: 0;

  }

  .process-circle {

    position: relative;
    z-index: 2;

  }
}

.price-card {

  background: #fff;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid #e9ecef;
  height: 100%;
  position: relative;
  transition: .3s;

}

.price-card:hover {

  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.featured {

  border: 2px solid var(--bs-success);
  transform: scale(1.04);

}

.popular {

  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bs-success);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;

}

.price {

  font-size: 56px;
  font-weight: 700;
  margin: 20px 0;

}

.price sup {

  font-size: 22px;
  top: -18px;

}

.price-card ul {

  list-style: none;
  padding: 0;
  margin: 30px 0;

}

.price-card li {

  padding: 8px 0;

}