/* panthera.css — page-specific styles */

/* Hero product image */
.panthera-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) {
  .panthera-hero-img {
    max-width: 100%;
    margin-top: 24px;
  }
}

/* Why — sidebar CTA layout */
.panthera-why .why-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}

.panthera-why .why-cta-box h3 {
  color: var(--brand);
}

@media (max-width: 980px) {
  .panthera-why .why-inner {
    grid-template-columns: 1fr;
  }
  .panthera-why .why-cta-box {
    position: static;
  }
}

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

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

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

.panthera-pillars {
  padding: 88px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.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;
}

.panthera-pillars h2,
.panthera-models h2,
.panthera-features h2,
.panthera-why h2,
.panthera-case 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;
}

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

.model-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(25, 38, 255, 0.08);
  color: var(--brand);
  border: 1px solid rgba(25, 38, 255, 0.22);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

.feature-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(25, 38, 255, 0.1);
  border: 1px solid rgba(25, 38, 255, 0.22);
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

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

.panthera-feature h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--ink);
}

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

.panthera-quote {
  padding: 72px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.panthera-quote blockquote {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  font-style: italic;
  color: var(--brand);
}

.panthera-quote p {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--muted);
}

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

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

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

.panthera-case {
  padding: 88px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.panthera-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.panthera-case-intro {
  margin: 6px 0 8px;
  font-size: 22px;
  color: var(--brand);
  font-style: italic;
}

.panthera-case-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--ink);
}

.panthera-case-grid ul {
  margin: 0;
  padding-left: 18px;
  color: #374151;
  line-height: 1.7;
}

.panthera-case-grid p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

.panthera-case-quote {
  margin: 28px 0 8px;
  font-size: 18px;
  color: var(--brand);
  font-style: italic;
}

.panthera-case-attrib {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

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

  .panthera-visual-grid {
    grid-template-columns: 1fr;
  }

  .panthera-case-grid {
    grid-template-columns: 1fr;
  }
}
