/* epson-dye-sub.css — page-specific styles */

/* Hero product image */
.epson-hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 56px rgba(25,38,255,0.14), 0 4px 16px rgba(0,0,0,0.08);
  display: block;
}

@media (max-width: 900px) {
  .epson-hero-img {
    max-width: 100%;
    margin-top: 24px;
  }
}

.epson-breadcrumb {
  padding: 24px 0 0;
  background: #fff;
}

.epson-breadcrumb .sol-eyebrow {
  text-decoration: none;
  display: inline-block;
}

.epson-breadcrumb .sol-eyebrow:hover {
  text-decoration: underline;
}

.model-figure {
  margin: 0 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.model-figure img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  display: block;
}

/* Pillar subhead — "Made for X" tagline between h3 and body */
.pillar-subhead {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-violet);
  margin: -6px 0 10px;
}

/* Pillars — 4-up grid */
.epson-pillars {
  padding: 88px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.epson-pillars .prod-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .epson-pillars .prod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Models — 2×2 grid (4 models) */
.epson-models .prod-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .epson-models .prod-grid {
    grid-template-columns: 1fr;
  }
}

.epson-pillars h2,
.epson-models h2,
.epson-features h2,
.epson-why h2 {
  font-size: 28px;
  margin: 0 0 8px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.epson-models {
  padding: 88px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.epson-class-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.epson-badge-desktop {
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.25);
  color: #0f766e;
}

.epson-badge-production {
  background: rgba(25, 38, 255, 0.08);
  border: 1px solid rgba(25, 38, 255, 0.22);
  color: var(--brand);
}

.epson-badge-industrial {
  background: rgba(161, 24, 75, 0.08);
  border: 1px solid rgba(161, 24, 75, 0.22);
  color: #a1184b;
}

/* Features */
.epson-features {
  padding: 88px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.epson-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.epson-feature {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}

.epson-feature h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--ink);
}

.epson-feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
}

/* Why — sidebar CTA layout (why-inner grid from solution.css) */
.epson-why {
  padding: 88px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

/* Ensure why-cta-box h3 keeps brand color (solution.css sets it) */
.epson-why .why-cta-box h3 {
  color: var(--brand);
}


.epson-why ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.epson-why li {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .epson-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .epson-feature-grid {
    grid-template-columns: 1fr;
  }
}
