/* =============================================================
   industries.css — page-specific styles for /industries
   ============================================================= */

:root {
  --navy:       #1a3a5c;
  --navy-dark:  #122840;
  --orange:     #e07b1a;
  --white:      #ffffff;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-600:   #4b5563;
  --gray-700:   #374151;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 16px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --transition: 0.18s ease;
}

/* ── Shared helpers ── */
.btn-ghost-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 10px 22px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.60); color: white; }
.btn-lg { padding: 13px 28px; font-size: 16px; }

/* ── Hero ── */
.ind-hero {
  position: relative;
  background: var(--navy-dark);
  padding: 80px 0 72px;
  text-align: center;
  overflow: hidden;
}
.ind-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cdefs%3E%3Cpattern id='g' width='80' height='80' patternUnits='userSpaceOnUse'%3E%3Crect width='80' height='80' fill='none'/%3E%3Cpath d='M 80 0 L 0 0 0 80' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cpath d='M 20 0 L 20 80 M 40 0 L 40 80 M 60 0 L 60 80 M 0 20 L 80 20 M 0 40 L 80 40 M 0 60 L 80 60' fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='0.5'/%3E%3Ccircle cx='0' cy='0' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='80' cy='0' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='0' cy='80' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='80' cy='80' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='80' height='80' fill='url(%23g)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.ind-hero-inner { position: relative; z-index: 1; }
.ind-page-label {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.10);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.ind-hero-heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.ind-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 32px;
}
.ind-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Section shared ── */
.ind-section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.ind-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.ind-section-heading {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.ind-section-sub {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── Industries grid ── */
.ind-grid-section {
  background: var(--white);
  padding: 72px 0 80px;
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ind-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.ind-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: rgba(26,58,92,0.2);
}
.ind-card-icon {
  width: 40px;
  height: 40px;
  background: #edf1f7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.ind-card-icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
.ind-card-body { flex: 1; min-width: 0; }
.ind-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}
.ind-card-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.5;
}
.ind-card-arrow {
  font-size: 16px;
  color: var(--gray-400);
  flex-shrink: 0;
  align-self: center;
  transition: color var(--transition), transform var(--transition);
}
.ind-card:hover .ind-card-arrow {
  color: var(--navy);
  transform: translateX(3px);
}

/* ── Pain points ── */
.ind-pain-section {
  background: #edf1f7;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 72px 0;
}
.ind-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ind-pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
}
.ind-pain-icon {
  width: 44px;
  height: 44px;
  background: #edf1f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 16px;
}
.ind-pain-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.ind-pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.ind-pain-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Why section ── */
.ind-why-section {
  background: var(--white);
  padding: 72px 0 80px;
}
.ind-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.ind-why-item { }
.ind-why-icon {
  width: 44px;
  height: 44px;
  background: #edf1f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 14px;
}
.ind-why-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.ind-why-item h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.ind-why-item p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Final CTA ── */
.ind-cta-section {
  position: relative;
  background: var(--navy-dark);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.ind-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cdefs%3E%3Cpattern id='g' width='80' height='80' patternUnits='userSpaceOnUse'%3E%3Crect width='80' height='80' fill='none'/%3E%3Cpath d='M 80 0 L 0 0 0 80' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cpath d='M 20 0 L 20 80 M 40 0 L 40 80 M 60 0 L 60 80 M 0 20 L 80 20 M 0 40 L 80 40 M 0 60 L 80 60' fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='0.5'/%3E%3Ccircle cx='0' cy='0' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='80' cy='0' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='0' cy='80' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='80' cy='80' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='80' height='80' fill='url(%23g)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.ind-cta-inner { position: relative; z-index: 1; }
.ind-cta-heading {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.ind-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.6;
}
.ind-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ind-grid { grid-template-columns: 1fr; }
  .ind-pain-grid { grid-template-columns: 1fr; }
  .ind-why-grid { grid-template-columns: 1fr; gap: 24px; }
  .ind-card-arrow { display: none; }
}
