.product-hero {
  padding: 40px 24px;
}

.product-hero-inner {
  max-width: 1400px;
  margin: auto;
  min-height: 250px;
  border-radius: 28px;
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.08),
      transparent 40%
    ),
    linear-gradient(135deg, #0f2356, #1e3163);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.product-hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.product-hero-content p {
  font-size: 16px;
  color: #dbe2ff;
}

.ph-icon {
  position: absolute;
  opacity: 0.25;
}

.ph-star {
  top: 40px;
  right: 120px;
  width: 28px;
}

.ph-asterisk {
  bottom: 32px;
  left: 40px;
  width: 36px;
}

.ph-dots {
  bottom: 28px;
  right: 28px;
  width: 42px;
}

@media (max-width: 768px) {
  .product-hero-inner {
    min-height: 240px;
    border-radius: 20px;
  }

  .product-hero-content h1 {
    font-size: 28px;
  }

  .product-hero-content p {
    font-size: 14px;
  }
}
/* =========================
   PRODUCT SHOWCASE SECTION
========================= */

.product-showcase {
  background: #ffffff;
  padding: 70px 24px 90px;
}

.ps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ps-topline {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px;
  font-size: 14px;
  line-height: 1.7;
  color: #111827;
}

.ps-head {
  text-align: center;
  margin-bottom: 48px;
}

.ps-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 18px;
}

.ps-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #111827;
}

.ps-title {
  font-family: "Hedvig Letters Serif", serif;
  font-size: clamp(18px, 4.2vw, 36px);
  line-height: 1.1;
  font-weight: 400;
  color: #0b1220;
  margin: 0;
}

/* GRID */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
  margin-top: 50px;
}

/* LEFT CARD */
.ps-image-card {
  background: #efe6ff; /* soft lavender */
  border-radius: 22px;
  padding: 34px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.ps-image-card img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  transform: rotate(-10deg);
  filter: drop-shadow(0 18px 38px rgba(15, 23, 42, 0.22));
}

/* RIGHT CONTENT */
.ps-right {
  padding-top: 10px;
}

.ps-product-pill {
  border: 1px solid rgba(15, 23, 42, 0.25);
  border-radius: 20px;
  padding: 18px 22px;
  margin-bottom: 26px;
}

.ps-product-pill h3 {
  font-family: "Hedvig Letters Serif", serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 6px;
  color: #0b1220;
}

.ps-product-pill p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  margin: 0;
  color: #0f172a;
}

.ps-desc {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13.5px;
  line-height: 1.75;
  color: #111827;
  margin: 0 0 22px;
}

.ps-block h4 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin: 18px 0 10px;
}

.ps-block ul {
  margin: 0 0 10px 18px;
  padding: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: #111827;
}

.ps-bestfor {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #111827;
  margin: 0;
}

/* BUTTON */
.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 10px 34px;
  border-radius: 10px;
  border: 1px solid #1f3570;
  color: #1f3570;
  text-decoration: none;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ps-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31, 53, 112, 0.18);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ps-image-card {
    min-height: auto;
  }

  .ps-image-card img {
    transform: rotate(-8deg);
  }
}

@media (max-width: 520px) {
  .ps-image-card {
    padding: 22px;
    border-radius: 18px;
  }

  .ps-product-pill {
    border-radius: 16px;
  }

  .ps-btn {
    width: 100%;
  }
}

/* =========================
   EZ VENDOR AUDIT SECTION
========================= */

.ezva-section {
  background: #ffffff;
  padding: 80px 24px;
}

.ezva-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.ezva-content {
  max-width: 520px;
}

.ezva-pill {
  background: #f6effb;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 28px;
  padding: 22px 28px;
  margin-bottom: 28px;
}

.ezva-pill h3 {
  font-family: "Hedvig Letters Serif", serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #0b1220;
}

.ezva-pill p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  margin: 0;
  color: #111827;
}

.ezva-desc {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #111827;
  margin-bottom: 26px;
}

.ezva-block h4 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 18px 0 10px;
  color: #0f172a;
}

.ezva-block ul {
  padding-left: 18px;
  margin: 0 0 14px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #111827;
}

.ezva-block p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #111827;
  margin: 0;
}

/* BUTTON */
.ezva-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 10px 36px;
  border: 1px solid #1f3570;
  border-radius: 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1f3570;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ezva-btn:hover {
  background: #1f3570;
  color: #ffffff;
}

/* RIGHT IMAGE CARD */
.ezva-image-wrap {
  background: #e9e7fb;
  border-radius: 28px;
  padding: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ezva-image-wrap img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.25));
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .ezva-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ezva-content {
    max-width: 100%;
  }

  .ezva-image-wrap {
    padding: 36px;
  }
}

@media (max-width: 520px) {
  .ezva-pill {
    padding: 18px 20px;
    border-radius: 22px;
  }

  .ezva-btn {
    width: 100%;
    text-align: center;
  }
}
/* =========================
   EZ COMPLIANCE SECTION
========================= */

.ezc-section {
  background: #ffffff;
  padding: 80px 24px;
}

.ezc-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE CARD */
.ezc-image-wrap {
  background: #e9fff0;
  border-radius: 28px;
  padding: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ezc-image-wrap img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(15, 23, 42, 0.25));
}

/* RIGHT CONTENT */
.ezc-content {
  max-width: 520px;
}

/* TITLE PILL */
.ezc-pill {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 28px;
  padding: 22px 28px;
  margin-bottom: 28px;
}

.ezc-pill h3 {
  font-family: "Hedvig Letters Serif", serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #0b1220;
}

.ezc-pill p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  margin: 0;
  color: #111827;
}

/* TEXT */
.ezc-desc {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #111827;
  margin-bottom: 26px;
}

.ezc-block h4 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 18px 0 10px;
  color: #0f172a;
}

.ezc-block ul {
  padding-left: 18px;
  margin: 0 0 14px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #111827;
}

.ezc-block p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #111827;
  margin: 0;
}

/* BUTTON */
.ezc-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 10px 36px;
  border: 1px solid #1f3570;
  border-radius: 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1f3570;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ezc-btn:hover {
  background: #1f3570;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .ezc-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ezc-content {
    max-width: 100%;
  }

  .ezc-image-wrap {
    padding: 36px;
  }
}

@media (max-width: 520px) {
  .ezc-pill {
    padding: 18px 20px;
    border-radius: 22px;
  }

  .ezc-btn {
    width: 100%;
    text-align: center;
  }
}

.why-choose {
  padding: 120px 24px;
  text-align: center;
}

.wc-title {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 60px;
  font-family: "Playfair Display", serif;
}

.wc-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffe6f2, #f6ecff);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wc-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.wc-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 18px;
}

.wc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.wc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wc-card li {
  margin-bottom: 16px;
}

.wc-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.wc-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 900px) {
  .wc-wrap {
    grid-template-columns: 1fr;
  }

  .wc-title {
    font-size: 30px;
  }
}
.faq-section {
  padding: 120px 24px;
  text-align: center;
}

.faq-title {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 60px;
  font-family: "Playfair Display", serif;
}

.faq-box {
  max-width: 900px;
  margin: auto;
  text-align: left;
  border-top: 1px solid #eee;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1e3163;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }
}
