/* ===================================================================
   INDUSTRY LANDING PAGES — Shared Styles
   Designed to work alongside the main landing page's Tailwind build.
   Uses the same design tokens: Bricolage Grotesque, DM Sans, primary oklch.
   =================================================================== */

/* ─── Industry Hero ────────────────────────────────────────────── */
.ind-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 1.5rem 4.5rem;
  background: oklch(0.13 0.015 264);
  color: white;
}
.ind-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ind-hero-content {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ind-hero-text { max-width: 560px; }
.ind-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}
.ind-hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.ind-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.ind-hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2rem;
}
.ind-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind-hero-icon-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ind-hero-icon-ring::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1.5px dashed;
  opacity: 0.15;
  animation: ind-spin 30s linear infinite;
}
.ind-hero-icon-ring svg {
  width: 80px;
  height: 80px;
}
@keyframes ind-spin { to { transform: rotate(360deg); } }

/* ─── CTA Buttons ──────────────────────────────────────────────── */
.ind-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  background: oklch(0.488 0.178 264.376);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.ind-btn-primary:hover { background: oklch(0.549 0.178 264.376); transform: translateY(-1px); }

.ind-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.ind-btn-outline:hover { border-color: rgba(255,255,255,0.5); color: white; }

.ind-btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ─── Section Container ────────────────────────────────────────── */
.ind-section {
  padding: 5rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
.ind-section-dark {
  background: oklch(0.13 0.015 264);
  color: white;
}
.ind-section-alt {
  background: oklch(0.985 0.002 264);
}
.ind-section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0.75rem;
}
.ind-section-subtitle {
  text-align: center;
  font-size: 1.0625rem;
  color: oklch(0.551 0.018 264);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.ind-section-dark .ind-section-title { color: white; }
.ind-section-dark .ind-section-subtitle { color: rgba(255,255,255,0.58); }

/* ─── Industry Stats Bar ───────────────────────────────────────── */
.ind-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3.5rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
.ind-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 0.75rem;
  background: white;
  border: 1px solid oklch(0.928 0.006 264);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ind-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}
.ind-stat-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.375rem;
}
.ind-stat-label {
  font-size: 0.875rem;
  color: oklch(0.551 0.018 264);
  line-height: 1.4;
}

/* ─── Challenges Grid ──────────────────────────────────────────── */
.ind-challenges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ind-challenge-card {
  background: white;
  border: 1px solid oklch(0.928 0.006 264);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ind-challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: oklch(0.88 0.08 264);
}
.ind-challenge-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.ind-challenge-icon svg { width: 22px; height: 22px; }
.ind-challenge-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: oklch(0.27 0.015 264);
}
.ind-challenge-card p {
  font-size: 0.9375rem;
  color: oklch(0.551 0.018 264);
  line-height: 1.55;
}

/* ─── Solutions Section ────────────────────────────────────────── */
.ind-solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.ind-solution-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-radius: 0.75rem;
  background: oklch(0.17 0.015 264);
  border: 1px solid oklch(0.22 0.015 264);
  transition: border-color 0.3s, transform 0.3s;
}
.ind-solution-item:hover {
  border-color: oklch(0.3 0.02 264);
  transform: translateY(-2px);
}
.ind-solution-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  opacity: 0.25;
  flex-shrink: 0;
  width: 2rem;
  color: white;
}
.ind-solution-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: white;
}
.ind-solution-body p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* ─── Use Cases ────────────────────────────────────────────────── */
.ind-usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ind-usecase {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 0.75rem;
  background: white;
  border: 1px solid oklch(0.928 0.006 264);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ind-usecase:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.ind-usecase-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.12;
}
.ind-usecase h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: oklch(0.27 0.015 264);
}
.ind-usecase p {
  font-size: 0.9375rem;
  color: oklch(0.551 0.018 264);
  line-height: 1.55;
}

/* ─── Feature Highlights ───────────────────────────────────────── */
.ind-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ind-feature-card {
  background: white;
  border: 1px solid oklch(0.928 0.006 264);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ind-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: oklch(0.88 0.08 264);
}
.ind-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.ind-feature-icon svg { width: 22px; height: 22px; }
.ind-feature-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: oklch(0.27 0.015 264);
}
.ind-feature-card p {
  font-size: 0.9375rem;
  color: oklch(0.551 0.018 264);
  line-height: 1.55;
}

/* ─── Testimonial ──────────────────────────────────────────────── */
.ind-testimonial {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
}
.ind-testimonial blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: oklch(0.35 0.015 264);
  margin-bottom: 1.5rem;
  position: relative;
}
.ind-testimonial blockquote::before {
  content: '\201C';
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  opacity: 0.1;
  line-height: 1;
}
.ind-testimonial-author {
  font-size: 0.9375rem;
  font-weight: 600;
  color: oklch(0.27 0.015 264);
}
.ind-testimonial-role {
  font-size: 0.8125rem;
  color: oklch(0.551 0.018 264);
}

/* ─── FAQ Section ──────────────────────────────────────────────── */
.ind-faq {
  max-width: 680px;
  margin: 0 auto;
}
.ind-faq-item {
  border-bottom: 1px solid oklch(0.928 0.006 264);
  padding: 1.5rem 0;
}
.ind-faq-item:first-child { border-top: 1px solid oklch(0.928 0.006 264); }
.ind-faq-q {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: oklch(0.27 0.015 264);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.ind-faq-q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 600;
  color: oklch(0.488 0.178 264.376);
  flex-shrink: 0;
}
.ind-faq-a {
  font-size: 0.9375rem;
  color: oklch(0.551 0.018 264);
  line-height: 1.6;
  margin-top: 0.75rem;
  padding-right: 2rem;
}

/* ─── CTA Section ──────────────────────────────────────────────── */
.ind-cta {
  text-align: center;
  padding: 5rem 1.5rem;
  background: oklch(0.13 0.015 264);
  color: white;
  position: relative;
  overflow: hidden;
}
.ind-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, oklch(0.2 0.06 264 / 0.4), transparent);
  pointer-events: none;
}
.ind-cta-inner { position: relative; z-index: 2; }
.ind-cta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.ind-cta p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ─── Footer ───────────────────────────────────────────────────── */
.ind-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: oklch(0.551 0.018 264);
  border-top: 1px solid oklch(0.928 0.006 264);
}
.ind-footer a { color: oklch(0.488 0.178 264.376); text-decoration: none; }
.ind-footer a:hover { text-decoration: underline; }

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ind-hero-content { grid-template-columns: 1fr; text-align: center; }
  .ind-hero-text { max-width: 100%; }
  .ind-hero-visual { order: -1; }
  .ind-hero-icon-ring { width: 160px; height: 160px; }
  .ind-hero-icon-ring svg { width: 56px; height: 56px; }
  .ind-btn-group { justify-content: center; }
  .ind-stats { grid-template-columns: repeat(2, 1fr); }
  .ind-challenges { grid-template-columns: 1fr; }
  .ind-solutions { grid-template-columns: 1fr; }
  .ind-usecases { grid-template-columns: 1fr; }
  .ind-features { grid-template-columns: 1fr; }
  .ind-hero-desc { font-size: 1rem; }
  .ind-testimonial blockquote { font-size: 1.0625rem; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .ind-challenges { grid-template-columns: repeat(2, 1fr); }
  .ind-features { grid-template-columns: repeat(2, 1fr); }
  .ind-usecases { grid-template-columns: repeat(2, 1fr); }
  .ind-stats { grid-template-columns: repeat(2, 1fr); }
}
