/* Showcase page styles */

.showcase-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: var(--sand);
  border-bottom: 1px solid var(--sand-dark);
}

.showcase-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.showcase-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -1px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-hero p {
  font-size: 19px;
  color: var(--ink-light);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.showcase-hero-image {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
}

.showcase-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Industries grid */
.showcase-grid-section {
  padding: 80px 0;
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.industry-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--sand-dark);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: var(--sand-dark);
}

.card-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-icon {
  font-size: 28px;
  line-height: 1;
}

.card-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--white);
  white-space: nowrap;
}

.card-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.card-tagline {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.card-action-link {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, opacity 0.15s;
}

.card-action-primary {
  background: var(--orange);
  color: var(--white);
}

.card-action-primary:hover { background: var(--orange-light); }

.card-action-secondary {
  background: var(--sand);
  color: var(--ink);
  border: 1.5px solid var(--sand-dark);
}

.card-action-secondary:hover { border-color: var(--teal); color: var(--teal); }

/* CTA section */
.showcase-cta {
  padding: 100px 0;
  background: var(--teal);
  text-align: center;
}

.showcase-cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.showcase-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.showcase-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-ghost {
  display: inline-block;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

/* Responsive */
@media (max-width: 960px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-hero-image img { height: 280px; }
}

@media (max-width: 600px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-hero-image img { height: 200px; }
  .card-actions { flex-direction: column; }
  .card-action-link { text-align: center; }
}