/* =========================================
   PRODUCT PAGES — SharePoint / M365 / Teams
   ========================================= */

/* ── Hero ── */
.product-hero__badge{display:inline-block;background:#2e7d32;color:#ffffff;font-size:13px;font-weight:600;padding:5px 16px;border-radius:20px;margin-bottom:12px}
.product-hero__badge--yellow {
  background: #F7C945;
  color: #1a1a2e;
}
.product-hero__note{font-size:16px;color:#000;margin:-8px auto 16px;max-width:1100px}
.product-hero {
  padding: 40px 0 0;
  background: #fff;
  text-align: center;
}
.product-hero .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumbs */
.product-hero .ct-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-hero .ct-breadcrumbs a { color: #5c65f5; text-decoration: none; }
.product-hero .ct-breadcrumbs a:hover { text-decoration: underline; }
.product-hero .ct-separator { opacity: 0.5; margin: 0 2px; }

/* Title */
.product-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #0c093a;
  line-height: 1.2;
  margin: 0 auto 28px;
  max-width: 1100px;
}
.product-hero__description {
  padding-bottom: 24px;
}
.header-small {
  font-size: 30px;
  line-height: 45px;
  font-weight: 400;
  display: block;
}

/* Buttons */
.product-hero__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-primary-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5c65f5;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid #5c65f5;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-primary-product:hover { background: #4a53e0; border-color: #4a53e0; }

.btn-outline-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #5c65f5;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid #5c65f5;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline-product:hover { background: #f0f1ff; }
.btn-outline-product--disabled { opacity: 0.4; pointer-events: none; }

/* Rating */
.product-hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.product-stars { display: flex; gap: 4px; }
.product-stars .star-full  { color: #f59e0b; font-size: 20px; }
.product-stars .star-empty { color: #d1d5db; font-size: 20px; }
.product-stars .star-half {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #d1d5db;
}
.product-stars .star-half::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #f59e0b;
}
.product-hero__rating-text { font-size: 15px; color: #374151; }

/* Key features heading */
.product-hero__key-features {
  font-size: 20px;
  font-weight: 700;
  color: #0c093a;
  margin: 0 0 0;
}

/* ── Features grid ── */
.product-features {
  background: #fff;
  padding: 40px 0 48px;
}
.product-features .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.product-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-features__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}
.product-features__icon {
  width: 37px;
  height: 38px;
  flex-shrink: 0;
  margin-top: 2px;
}
.product-features__title {
  font-size: 16px;
  font-weight: 700;
  color: #0c093a;
  margin: 0 0 6px;
  /* padding-bottom: 40px; */
}
.product-features__desc {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

/* ── Storylane ── */
.product-storylane__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ── Screenshot ── */
.product-screenshot {
  padding: 40px 0 60px;
  overflow: visible;
  margin-top: -6%;
}

.product-screenshot__bg {
  position: relative;
  background: transparent;
  padding: 20px 20px 0;
  text-align: center;
}

.product-screenshot__bg img {
  width: 58%;
  max-width: 1200px;
  height: auto;
  border-radius: 16px;
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  filter: drop-shadow(-40px 0px 60px rgba(120, 130, 255, 0.6))
          drop-shadow(0px 20px 40px rgba(120, 130, 255, 0.2));
}

/* ── How to Install ── */
.product-install {
  background: #0c093a;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  max-width: 1142px;
  margin: 0 auto 40px;
}
.product-install .container {
  max-width: 700px;
  margin: 0 auto;
}
.product-install__title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.product-install__text {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 28px;
}
.product-install__cta { text-align: center; }
.product-install .btn-outline-product {
  background: #fff;
  color: #5c65f5;
  border-color: #fff;
}
.product-install .btn-outline-product:hover {
  background: #f0f1ff;
}

/* ── CTA ── */
.product-cta { padding: 3% 20px; }
.product-cta .container { max-width: 1142px; margin: 0 auto; }
.product-cta__inner {
  background: #0c093a;
  border-radius: 20px;
  padding: 4% 5%;
  text-align: center;
}
.product-cta__title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.product-cta__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.product-cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.product-cta__buttons .btn-primary-product {
  background: #fff;
  color: #5c65f5;
  border-color: #fff;
}
.product-cta__buttons .btn-primary-product:hover { background: #f0f1ff; border-color: #f0f1ff; }
.product-cta__buttons .btn-outline-product {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.product-cta__buttons .btn-outline-product:hover { background: rgba(255,255,255,0.1); }

/* ── Use Cases ── */
.product-use-cases {
  background: #f0f3ff;
  padding: 60px 0 60px;
}
.product-use-cases .container {
  max-width: 1142px;
  margin: 0 auto;
  padding: 0 20px;
}
.product-use-cases__title {
  font-size: 32px;
  font-weight: 700;
  color: #0c093a;
  text-align: center;
  margin-bottom: 12px;
}
.product-use-cases__subtitle {
  font-size: 15px;
  color: #434343;
  text-align: left;
  margin-bottom: 3%;
  text-align: center;
}
.product-use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-use-cases__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8eaff;
}
.product-use-cases__card-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  padding: 20px;
}
.product-use-cases__card-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.product-use-cases__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-use-cases__card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-use-cases__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0c093a;
  margin: 0 0 10px;
}
.product-use-cases__card-title a {
  color: inherit;
  text-decoration: none;
}
.product-use-cases__card-title a:hover { color: #5c65f5; }
.product-use-cases__card-desc {
  font-size: 14px;
  color: #434343;
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}
.product-use-cases__card .btn-primary-product {
  align-self: flex-start;
  font-size: 14px;
  padding: 10px 20px;
}

/* ── Testimonials ── */
.product-testimonials {
  padding: 1% 0 3%;
}
.product-testimonials .container {
  max-width: 1142px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
}
.product-testimonials .swiper {
  overflow: hidden;
}
.testimonial-card {
  background: #0c093a;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.testimonial-card__header {
  padding: 5% 7% 1.5em;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.testimonial-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #fafafa;
}
.testimonial-card__stars { display: flex; gap: 5px; }
.testimonial-card__stars .star-full  { color: #ffd203; font-size: 20px; }
.testimonial-card__stars .star-empty { color: #555;    font-size: 20px; }
.testimonial-card__content { padding: 5% 7%; }
.testimonial-card__text {
  font-size: 24px;
  font-weight: 500;
  color: #f0f3ff;
  line-height: 1.5;
}
.testimonials-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonials-wrapper .swiper {
  flex: 1;
  overflow: hidden;
}
.testimonials-wrapper .swiper-button-prev,
.testimonials-wrapper .swiper-button-next {
  position: static;
  transform: none;
  flex-shrink: 0;
  color: #5c65f5;
  width: 44px;
  height: 44px;
}
.testimonials-wrapper .swiper-button-prev::after,
.testimonials-wrapper .swiper-button-next::after {
  font-size: 24px;
}
.product-testimonials .swiper-pagination-bullet { background: #b3bdff; opacity: 1; }
.product-testimonials .swiper-pagination-bullet-active { background: #5c65f5; }
.product-testimonials .swiper-wrapper { padding-bottom: 40px; }

/* ── Pricing ── */
.product-pricing { background: #0c093a; padding: 4% 0; text-align: center; }
.product-pricing .container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.product-pricing__title { font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.product-pricing__subtitle { color: #fff; margin-bottom: 8px; }
.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding: 0 20px;
}
.pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pricing-card--recommended {
  position: relative;
  padding-top: 0;
  overflow: hidden;
  margin-top: 0;
}
.pricing-card--recommended::before {
  content: 'RECOMMENDED';
  display: block;
  background: linear-gradient(90deg, #7b87ff, #5c65f5);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px;
  margin: 0 -32px 32px;
  width: calc(100% + 64px);
}
.pricing-card--enterprise {
  border-top: 12px solid #ffc7d1;
  margin-top: 0;
  text-align: left;
}
.pricing-card__title { font-size: 24px; font-weight: 700; color: #000; margin-bottom: 16px; text-align: left;}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.pricing-card__currency { font-size: 20px; font-weight: 700; color: #000; }
.pricing-card__amount   { font-size: 42px; font-weight: 700; color: #000; }
.pricing-card__period   { font-size: 14px; color: #595959; font-weight: 600; }
.pricing-card__discount { font-size: 14px; font-weight: 700; color: #000; margin-bottom: 16px; text-align: left;}
.pricing-card__btn {
  display: inline-block !important;
  width: auto !important;
  background: #5c65f5;
  color: #fff;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 16px;
  text-align: center;
  border: none;
}
.pricing-card__btn:hover { background: #4a53e0; }
.pricing-card__btn--contact {
  background: #eef0ff;
  color: #5c65f5;
}
.pricing-card__btn--contact:hover { background: #dde3ff; }
.pricing-card__icon {
  text-align: center;
  margin-bottom: 16px;
  text-align: left;
}
.pricing-card__icon img,
.pricing-card__icon svg {
  width: 42px;
  height: 42px;
}
.pricing-card__desc { font-size: 14px; color: #1f1f1f; line-height: 1.6; margin-bottom: 16px; text-align: left;}
.pricing-card__divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 16px 0;
  width: 100%;
}
.pricing-card__features { list-style: none; padding: 0; margin: 0; }
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: #1f1f1f;
  text-align: left;
}
.pricing-card__features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

/* ── Purchase Info ── */
.product-purchase-info {
  padding: 60px 0;
  background: #fff;
}
.product-purchase-info .container {
  max-width: 1142px;
  margin: 0 auto;
  padding: 0 20px;
}
.product-purchase-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.product-purchase-info__card {
  background: #f0f3ff;
  border-radius: 16px;
  padding: 32px 28px;
}
.product-purchase-info__card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
}
.product-purchase-info__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0c093a;
  margin: 0 0 12px;
}
.product-purchase-info__card p {
  font-size: 15px;
  color: #434343;
  line-height: 1.6;
  margin: 0;
}
.product-purchase-info__note {
  text-align: center;
  font-size: 14px;
  color: #595959;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* ── Related ── */
.product-related {
  background: #f0f3ff;
  padding: 60px 0;
}
.product-related .container {
  max-width: 1142px;
  margin: 0 auto;
  padding: 0 20px;
}
.product-related__title {
  font-size: 32px;
  font-weight: 700;
  color: #0c093a;
  text-align: center;
  margin-bottom: 12px;
}
.product-related__subtitle {
  font-size: 15px;
  color: #434343;
  text-align: center;
  margin-bottom: 48px;
}
.product-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 24px;
  margin: 8% 0 5%;
  row-gap: 40px;
}
.product-related__card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.product-related__card:hover {
  box-shadow: 0 8px 24px rgba(92, 101, 245, 0.12);
}
.product-related__card-icon {
  margin-bottom: 20px;
  margin-top: -60px;
}
.product-related__card-icon img {
  width: 80px;
  height: 80px;
}
.product-related__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0c093a;
  margin: 0 0 12px;
}
.product-related__card-desc {
  font-size: 14px;
  color: #434343;
  line-height: 1.6;
  margin: 0;
}

/* ── Download Popup ── */
.product-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.product-popup:target { display: flex; }
.product-popup__backdrop { position: absolute; inset: 0; }
.product-popup__content {
  background: #fcfcfc;
  border-radius: 20px;
  padding: 40px;
  max-width: 757px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 2px 8px 23px 3px rgba(0,0,0,0.2);
}
.product-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: #000;
  text-decoration: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.product-popup__close:hover { background: #f0f0f0; }
.product-popup__title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}
.product-popup__title a { color: inherit; text-decoration: none; }
.product-popup__desc { text-align: center; font-size: 15px; color: #000; margin-bottom: 8px; }
.product-popup__subtitle { font-size: 20px; font-weight: 700; color: #000; text-align: center; margin-bottom: 8px; }
.product-popup__choose { text-align: center; font-size: 15px; color: #434343; margin-bottom: 20px; }
.popup-downloads {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.popup-download-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #fff;
  color: #5c65f5;
  border: 1px solid #5c65f5;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  min-width: 80px;
  transition: background 0.2s;
}
.popup-download-btn:hover { background: #f0f3ff; }
.popup-download-btn__version { font-size: 16px; font-weight: 700; color: #5c65f5; }
.popup-download-btn__ver-num { font-size: 12px; color: #595959; }
.product-popup__note { text-align: center; font-size: 15px; color: #434343; }
.product-popup__note a { color: #5c65f5; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .product-features__grid      { grid-template-columns: 1fr; }
  .product-use-cases__grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards               { flex-wrap: wrap; }
  .pricing-card                { width: 45%; margin: 8% 2% 4%; }
  .pricing-card--enterprise    { margin-top: 0; }
  .product-purchase-info__grid { grid-template-columns: 1fr; }
  .product-related__grid       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .header-small                { line-height: 1.2; }
  .product-title               { font-size: 38px; }
  .product-screenshot__bg img  { width: 95%; }
  .product-install__steps      { flex-direction: column; }
  .product-use-cases__grid     { grid-template-columns: 1fr; }
  .testimonial-card__text      { font-size: 18px; }
  .pricing-cards               { flex-direction: column; align-items: center; padding: 0; }
  .pricing-card                { width: 95%; margin: 8px auto; padding: 24px; }
  .product-related__grid       { grid-template-columns: 1fr; }
  .product-related__card-icon  { margin-top: 0; }
  .product-testimonials .container { padding: 0; }
  .product-pricing               { padding: 8% 0; }
}

/* ── What's Inside ── */
.product-whats-inside {
  padding: 60px 0;
  background: #fff;
}
.product-whats-inside__container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.product-whats-inside__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-whats-inside__title {
  font-size: 28px;
  font-weight: 700;
  color: #0c093a;
  margin: 0 0 32px;
}
.product-whats-inside__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.product-whats-inside__item:last-child {
  margin-bottom: 0;
}
.product-whats-inside__item-icon {
  flex-shrink: 0;
}
.product-whats-inside__item-icon--number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #5c65f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.product-whats-inside__item-title {
  font-size: 16px;
  font-weight: 700;
  color: #0c093a;
  margin: 0 0 6px;
}
.product-whats-inside__item-desc {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}
.product-whats-inside__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-whats-inside__image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(92,101,245,0.15));
}
@media (max-width: 768px) {
  .product-whats-inside__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── One License ── */
.product-one-license {
  padding: 40px 0;
  margin: 40px 0;
  background: #f5f5f5;
}
.product-one-license__title {
  font-size: 28px;
  font-weight: 700;
  color: #0c093a;
  margin: 0 0 12px;
  text-align: center;
}
.product-one-license__desc {
  font-size: 16px;
  color: #4b5563;
  text-align: center;
  margin: 0 0 32px;
}
.product-one-license__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.product-one-license__logos img {
  max-width: 70px;
  height: auto;
}

/* ── Trial ── */
.product-trial {
  padding: 48px 0;
  text-align: center;
  background: #fff;
}
.product-trial__title {
  font-size: 28px;
  font-weight: 700;
  color: #0c093a;
  margin: 0 0 24px;
}
.product-trial a {
  display: inline-block;
}
.product-trial img {
  display: block;
  margin: 0 auto;
}

/* ── Connect ── */
.product-connect {
  padding: 60px 0;
  margin: 0 0 40px 0;
  background: #f0f1ff;
}
.product-connect .container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.product-connect__title {
  font-size: 28px;
  font-weight: 700;
  color: #0c093a;
  margin: 0 0 40px;
  text-align: center;
}
.product-connect__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1150px;
  margin: 0 auto;
}
.product-connect__card {
  flex: 1 1 220px;
  max-width: 280px;
  background: #5c65f5;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-connect__card-top img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 12px;
  display: block;
}
.product-connect__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.product-connect__card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.product-connect__card-link {
  display: inline-flex;
  margin-top: 8px;
  width: 32px;
  height: 32px;
}
.product-connect__card-link svg rect {
  stroke: rgba(255,255,255,0.5);
}
.product-connect__card-link svg path {
  fill: #fff;
}
@media (max-width: 768px) {
  .product-connect__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Pricing M365 ── */
.pricing-cards--three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-cards--two {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: start;
}
.pricing-cards--two .pricing-card {
  flex: 0 1 400px;
}
.pricing-cards--two .pricing-card--starter {
  padding-top: 32px;
}
.pricing-cards--two .pricing-card--enterprise {
  padding-top: 32px;
}
.pricing-card--starter {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  padding: 32px;
  padding-top: 15%;
  position: relative;
  overflow: hidden;
}
.pricing-card--starter::before {
  content: '';
  display: block;
  height: 12px;
  background: #fff5c2;
  position: absolute;
  top: 0; left: 0; right: 0;
  border-radius: 18px 18px 0 0;
  margin-top: -1px;
}
.pricing-card--recommended {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #5c65f5;
  padding: 32px;
  padding-top: 44px;
  position: relative;
  overflow: hidden;
}
.pricing-card--recommended::before {
  content: '';
  display: block;
  height: 36px;
  background: linear-gradient(90deg, #5c65f5, #a78bfa);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 18px 18px 0 0;
}
.pricing-card__badge {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 0;
  text-align: center;
  background: transparent;
  text-align: center;
}
.pricing-card--enterprise {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  padding: 32px;
  padding-top: 15%;
  position: relative;
  overflow: hidden;
}
.pricing-card--enterprise::before {
  content: '';
  display: block;
  height: 12px;
  background: #ffc7d1;
  position: absolute;
  top: 0; left: 0; right: 0;
  border-radius: 18px 18px 0 0;
  margin-top: -1px;
}
.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 12px 0 4px;
}
.pricing-card--starter,
.pricing-card--enterprise {
  border-radius: 20px;
  overflow: hidden;
}
.pricing-card__currency {
  font-size: 20px;
  font-weight: 700;
  color: #0c093a;
}
.pricing-card__amount {
  font-size: 48px;
  font-weight: 800;
  color: #0c093a;
  line-height: 1;
}
.pricing-card__period {
  font-size: 13px;
  color: #6b7280;
  display: inline;
  width: auto;
  text-align: left;
  margin-bottom: 6px;
}
.pricing-card__billed {
  font-size: 14px;
  color: #1a1a2e;
  margin: 16px 0 16px;
}
.pricing-card__btn--outline {
  background: #f0f3ff;
  color: #5c65f5;
  border: none;
  font-weight: 500;
}
.pricing-card__btn--outline:hover {
  background: #e0e4ff;
}
.pricing-card__btn--contact {
  background: #f0f3ff;
  color: #5c65f5;
  border: none;
  font-weight: 500;
}
.pricing-card__btn--contact:hover {
  background: #e0e4ff;
}
.product-pricing-m365 {
  background: #0c0a2e;
}
.product-pricing-m365 .product-pricing__title {
  color: #fff;
  text-align: center;
}
.product-pricing-m365 .product-pricing__subtitle {
  color: rgba(255,255,255,0.7);
  text-align: center;
}
@media (max-width: 900px) {
  .pricing-cards--three {
    grid-template-columns: 1fr;
  }
}

/* ── Catalog Security ── */
.catalog-security { padding: 48px 0; background: #fff; }
.catalog-security .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.catalog-security__card {
  background: linear-gradient(180deg, #ffffff 14%, #2BB062 97%);
  border: 1px solid #EBE6E7;
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.catalog-security__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}
.btn--white {
  background: #fff;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 24px;
  text-decoration: none;
  display: inline-block;
}
.btn--white:hover { opacity: 0.9; }

.product-pricing-m365 {
  background: #0c0a2e;
}
.product-pricing-m365 .product-pricing__title {
  color: #fff;
}
.product-pricing-m365 .product-pricing__subtitle {
  color: rgba(255,255,255,0.7);
}
.pricing-card--recommended {
  padding-top: 15%;
}
.pricing-cards--two .pricing-card--recommended {
  padding-top: 6%;
}
.pricing-cards--two .pricing-card--enterprise {
  padding-top: 6%;
}

/* ── Alerts Retiring banner ── */
.alerts-retiring {
  padding: 60px 0;
  background: #0c1460;
  position: relative;
  overflow: hidden;
}
.alerts-retiring::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/mask-group.png');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0.5;
  pointer-events: none;
}
.alerts-retiring__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.alerts-retiring__title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
}
.alerts-retiring__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin: 0 0 28px;
  line-height: 1.6;
}
.alerts-retiring__btn {
  display: inline-block;
  background: #fff;
  color: #5c65f5;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.alerts-retiring__btn:hover {
  background: #f0f1ff;
}

/* ── Alerts Instant section ── */
.alerts-instant {
  padding: 10px 0 40px 0;
}
.alerts-instant .container {
  background: #fffceb;
  border-radius: 24px;
  padding: 48px 48px 0 48px;
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.alerts-instant .container::before {
  content: '';
  position: absolute;
  top: -130px;
  right: -170px;
  width: 300px;
  height: 300px;
  background: #ffeb99;
  border-radius: 50%;
  z-index: 0;
}
.alerts-instant .container::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: #ffeb99;
  border-radius: 50%;
  z-index: 0;
}
.alerts-instant__title {
  font-size: 28px;
  font-weight: 700;
  color: #0c093a;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.alerts-instant__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.alerts-instant__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
}
.alerts-instant__item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.alerts-instant__item-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0c093a;
  margin: 0;
}
.alerts-instant__item p {
  font-size: 14px;
  color: #4b5563;
  margin: 0 0 4px;
  line-height: 1.6;
}
.alerts-instant__col:last-child {
  display: flex;
  flex-direction: column;
}
.alerts-instant__img {
  margin: -48px -48px -1px 0;
}
.alerts-instant__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .alerts-instant__grid {
    grid-template-columns: 1fr;
  }
  .alerts-instant .container {
    padding: 24px 24px 0 24px;
  }
  .alerts-instant__img {
    margin: 24px -24px 0 0;
  }
}

/* ── Alerts Timely section ── */
.alerts-timely {
  padding: 10px 0;
}
.alerts-timely .container {
  background: #1a1760;
  border-radius: 24px;
  padding: 48px 48px 0 48px;
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.alerts-timely .container::before {
  content: '';
  position: absolute;
  top: -130px;
  right: -170px;
  width: 300px;
  height: 300px;
  background: #3d3ab0;
  border-radius: 50%;
  z-index: 0;
}
.alerts-timely .container::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: #3d3ab0;
  border-radius: 50%;
  z-index: 0;
}
.alerts-timely__title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.alerts-timely__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.alerts-timely__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.alerts-timely__item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.alerts-timely__item-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.alerts-timely__item p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 0 0 4px;
  line-height: 1.6;
}
.alerts-timely__item p strong {
  color: #fff;
}
.alerts-timely__col:last-child {
  display: flex;
  flex-direction: column;
}
.alerts-timely__img {
  margin: -50px -48px 0 0;
}
.alerts-timely__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .alerts-timely__grid {
    grid-template-columns: 1fr;
  }
  .alerts-timely .container {
    padding: 24px 24px 0 24px;
  }
  .alerts-timely__img {
    margin: 24px -24px 0 0;
  }
}

/* ── Pricing Calendar ── */
.product-pricing-calendar { background: #0c0a2e; text-align: left; padding: 60px 0; }
.pricing-cal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1150px;
  margin: 0 auto;
  padding-top: 40px;
}
.pricing-cal__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.pricing-cal__badge {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px;
  color: #fff;
}
.pricing-cal__badge--red { background: #e53935; }
.pricing-cal__badge--blue { background: linear-gradient(90deg, #5c65f5, #a78bfa); }
.pricing-cal__badge--yellow { background: #f7c945; color: #1a1a2e; }
.pricing-cal__body { padding: 28px; }
.pricing-cal__title { font-size: 24px; font-weight: 700; color: #0c093a; margin: 0 0 12px; }
.pricing-cal__desc { font-size: 15px; color: #4b5563; margin: 0 0 24px; line-height: 1.5; }
.pricing-cal__price-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; }
.pricing-cal__price { display: flex; align-items: baseline; gap: 8px; }
.pricing-cal__currency { font-size: 20px; font-weight: 700; color: #0c093a; }
.pricing-cal__amount { font-size: 40px; font-weight: 700; color: #0c093a; }
.pricing-cal__old { font-size: 18px; color: #9ca3af; text-decoration: line-through; }
.pricing-cal__sticker { background: #f7c945; color: #1a1a2e; font-size: 11px; font-weight: 700; padding: 8px 10px; border-radius: 8px; text-align: center; line-height: 1.3; transform: rotate(5deg); max-width: 80px; }
.pricing-cal__period { font-size: 14px; color: #4b5563; margin: 0 0 4px; }
.pricing-cal__note { font-size: 14px; color: #0c093a; margin: 0 0 24px; }
.pricing-cal__btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.pricing-cal__btn--primary { background: #5c65f5; color: #fff; }
.pricing-cal__btn--primary:hover { background: #4a53e0; }
.pricing-cal__btn--outline { background: #fff; color: #5c65f5; border: 2px solid #e5e7eb; }
.pricing-cal__btn--outline:hover { background: #f0f1ff; }
@media (max-width: 768px) {
  .pricing-cal__grid { grid-template-columns: 1fr; }
}

/* ── SharePoint-specific overrides ── */
.page-sharepoint .pricing-card--recommended { padding-top: 7%; }
.page-sharepoint .pricing-card--enterprise { padding-top: 7%; }

/* =============================================
   KEY BENEFITS / KEY FEATURES BLOCK
   ============================================= */

.product-key-features .container {
  max-width: 1150px;
  margin: 0 auto;
}

.product-key-features__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #1F1F1F;
  text-align: center;
  margin-bottom: 48px;
}

.product-key-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-key-features__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-key-features__icon img {
  display: block;
}

.product-key-features__name {
  font-size: 17px;
  font-weight: 700;
  color: #1F1F1F;
  margin: 0;
}

.product-key-features__desc {
  font-size: 15px;
  color: #4B4B4B;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .product-key-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-key-features__grid {
    grid-template-columns: 1fr;
  }
}

/* catalog-security button */
.catalog-security__btn {
  flex-shrink: 0;
  display: inline-block;
  background: #fff;
  color: #3b5bdb;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 0.2s;
}
.catalog-security__btn:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
