/* Homepage-only enhancement: injected after the existing CYTRAFO application styles. */
[data-cytrafo-carousel] {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

[data-cytrafo-carousel] img.w-full.h-48.object-cover {
  height: 211px !important; /* 192px × 1.10 */
}

.cytrafo-home-showcase {
  --showcase-green: #21b664;
  --showcase-deep: #1b2b3e;
  --showcase-muted: #5b6978;
  --showcase-border: #e4e9ed;
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
  border-top: 1px solid #edf1ee;
  border-bottom: 1px solid #edf1ee;
  padding: 56px 0 64px;
}

.cytrafo-home-showcase * { box-sizing: border-box; }

.cytrafo-home-showcase__inner {
  width: min(1368px, calc(100% - 72px));
  margin: 0 auto;
}

.cytrafo-home-showcase__header {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.cytrafo-home-showcase__eyebrow {
  margin: 0 0 9px;
  color: var(--showcase-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.cytrafo-home-showcase__header h2 {
  margin: 0;
  color: var(--showcase-deep);
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.cytrafo-home-showcase__header h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin: 15px auto 13px;
  background: var(--showcase-green);
}

.cytrafo-home-showcase__header p:last-child {
  margin: 0;
  color: var(--showcase-muted);
  font-size: 14px;
  line-height: 1.65;
}

.cytrafo-home-showcase__primary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cytrafo-product-tile {
  color: inherit;
  text-decoration: none !important;
}

.cytrafo-product-tile--primary {
  position: relative;
  display: flex;
  min-height: 390px;
  overflow: hidden;
  border-radius: 3px;
  background: #172a3a;
  box-shadow: 0 10px 26px rgba(18, 49, 35, 0.10);
  isolation: isolate;
}

.cytrafo-product-tile--primary .cytrafo-product-tile__image,
.cytrafo-product-tile--primary .cytrafo-product-tile__image::after {
  position: absolute;
  inset: 0;
}

.cytrafo-product-tile--primary .cytrafo-product-tile__image::after {
  content: "";
  background: linear-gradient(180deg, rgba(13, 28, 34, 0.06) 18%, rgba(15, 32, 41, 0.90) 100%);
}

.cytrafo-product-tile--primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(0.23, 1, 0.32, 1);
}

.cytrafo-product-tile--primary:hover img { transform: scale(1.035); }

.cytrafo-product-tile--primary .cytrafo-product-tile__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 390px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 25px 24px;
  color: #fff;
}

.cytrafo-product-tile__type {
  margin-bottom: 8px;
  color: #b9f2ce;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cytrafo-product-tile--primary strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.cytrafo-product-tile--primary .cytrafo-product-tile__content > span:not(.cytrafo-product-tile__type) {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.5;
}

.cytrafo-product-tile--primary em {
  margin-top: 16px;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.cytrafo-product-tile--primary em b {
  display: inline-block;
  margin-left: 4px;
  color: #8ee6b1;
  font-size: 18px;
  line-height: 0;
  transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.cytrafo-product-tile--primary:hover em b { transform: translateX(4px); }

.cytrafo-home-showcase__support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.cytrafo-product-tile--support {
  display: flex;
  min-height: 372px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--showcase-border);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(18, 49, 35, 0.04);
  transition: border-color 180ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 180ms cubic-bezier(0.23, 1, 0.32, 1), transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.cytrafo-product-tile--support:hover {
  border-color: #9addb7;
  box-shadow: 0 11px 24px rgba(18, 49, 35, 0.10);
  transform: translateY(-2px);
}

.cytrafo-product-tile--support .cytrafo-product-tile__image { display: block; height: 278px; overflow: hidden; background: linear-gradient(145deg, #f9fbfa, #eef3f0); }
.cytrafo-product-tile--support img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: contrast(1.035) saturate(1.025); transition: transform 240ms cubic-bezier(0.23, 1, 0.32, 1), filter 240ms cubic-bezier(0.23, 1, 0.32, 1); }
.cytrafo-product-tile--support:hover img { transform: scale(1.012); filter: contrast(1.06) saturate(1.04); }

.cytrafo-product-tile--support .cytrafo-product-tile__content {
  padding: 15px 17px 17px;
}

.cytrafo-product-tile--support strong {
  display: block;
  margin-bottom: 7px;
  color: var(--showcase-deep);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.cytrafo-product-tile--support .cytrafo-product-tile__content > span {
  display: block;
  color: var(--showcase-muted);
  font-size: 12px;
  line-height: 1.42;
}

@media (max-width: 900px) {
  [data-cytrafo-carousel] img.w-full.h-48.object-cover { height: 184px !important; }
  .cytrafo-home-showcase { padding: 46px 0 52px; }
  .cytrafo-home-showcase__inner { width: min(100% - 36px, 680px); }
  .cytrafo-home-showcase__primary-grid { grid-template-columns: 1fr; gap: 14px; }
  .cytrafo-product-tile--primary, .cytrafo-product-tile--primary .cytrafo-product-tile__content { min-height: 340px; }
  .cytrafo-home-showcase__support-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 14px; }
}

@media (max-width: 520px) {
  [data-cytrafo-carousel] { padding-top: 19px !important; padding-bottom: 19px !important; }
  [data-cytrafo-carousel] img.w-full.h-48.object-cover { height: 160px !important; }
  .cytrafo-home-showcase { padding: 38px 0 44px; }
  .cytrafo-home-showcase__inner { width: min(100% - 28px, 520px); }
  .cytrafo-home-showcase__header { margin-bottom: 24px; }
  .cytrafo-home-showcase__header h2 { font-size: 26px; }
  .cytrafo-product-tile--primary, .cytrafo-product-tile--primary .cytrafo-product-tile__content { min-height: 316px; }
  .cytrafo-product-tile--primary .cytrafo-product-tile__content { padding: 23px 20px 20px; }
  .cytrafo-product-tile--primary strong { font-size: 20px; }
  .cytrafo-product-tile--support { display: flex; min-height: 324px; }
  .cytrafo-product-tile--support .cytrafo-product-tile__image { height: 226px; }
  .cytrafo-product-tile--support .cytrafo-product-tile__content { padding: 13px 14px 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .cytrafo-product-tile, .cytrafo-product-tile *, .cytrafo-product-tile--primary img { transition: none !important; }
}
