/* =========================================================
   INDUSTRY LANDING PAGES STYLES
   ========================================================= */

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1.5rem 0 1rem;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted, #64748b);
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--text-main, #0f172a);
}

.breadcrumbs .separator {
  color: #cbd5e1;
  user-select: none;
}

/* --- Hero Section --- */
.industry-hero-section {
  position: relative;
  padding: 1rem 0 4.5rem;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 1) 90%);
}

.industry-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 1rem;
}

.industry-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: var(--industry-accent-soft, #f1f5f9);
  color: var(--industry-dark, #0f172a);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.industry-hero-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.industry-direct-descriptor {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 1.75rem;
  font-weight: 450;
}

.industry-proof-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.industry-proof-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.975rem;
  font-weight: 500;
  color: #1e293b;
}

.industry-proof-list .check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.industry-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.industry-hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #64748b;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.trust-value {
  font-weight: 600;
  color: #1e293b;
}

/* --- Website Showcase Canvas --- */
.website-showcase-canvas,
.browser-mockup-frame {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.website-showcase-canvas:hover,
.browser-mockup-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -15px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(15, 23, 42, 0.1);
}

.showcase-canvas-topbar,
.browser-mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.15rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.showcase-brand-lockup {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.showcase-brand-name {
  font-weight: 800;
  font-size: 0.9375rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.showcase-brand-tagline {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.showcase-concept-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #64748b;
  background: #e2e8f0;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.showcase-canvas-body {
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.browser-window-dots {
  display: flex;
  gap: 6px;
}

.browser-window-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-window-dots .dot.red { background: #ef4444; }
.browser-window-dots .dot.yellow { background: #f59e0b; }
.browser-window-dots .dot.green { background: #10b981; }

.browser-address-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  padding: 0.2rem 0.85rem;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  font-size: 0.75rem;
  color: #64748b;
  font-family: monospace;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ssl-lock {
  width: 12px;
  height: 12px;
  color: #10b981;
  flex-shrink: 0;
}

.concept-watermark-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
  background: #edf2f7;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.browser-mockup-body {
  position: relative;
  background: #f1f5f9;
}

.concept-screen-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.concept-screen-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: flex-end;
}

.concept-live-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.concept-brand-lead {
  font-weight: 700;
}

.concept-brand-loc {
  opacity: 0.75;
  font-size: 0.75rem;
}

/* --- Goals Section --- */
.industry-goals-section {
  padding: 5rem 0;
}

.direct-answer-lead {
  max-width: 760px;
  margin: 1.25rem auto 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #334155;
  font-weight: 500;
}

.industry-goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.goal-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.goal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.goal-card-num {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1rem;
}

.goal-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.goal-card-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}

/* --- Concept Showcase Section --- */
.industry-showcase-section {
  padding: 5rem 0;
}

.showcase-head-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.concept-legal-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

.concept-legal-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 1rem;
  background: #ffffff;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  display: inline-flex;
  border: 1px solid #e2e8f0;
}

.concept-legal-note .info-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #94a3b8;
}

.concept-showcase-canvas {
  margin-top: 2.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.06);
  padding: 1.5rem;
}

.concept-window-replica {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.concept-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
}

.concept-site-brand {
  display: flex;
  flex-direction: column;
}

.brand-logotype {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0f172a;
}

.brand-descriptor {
  font-size: 0.75rem;
  color: #64748b;
}

.concept-site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
}

.concept-site-cta .mini-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 6px;
}

.concept-site-hero-block {
  padding: 3rem 2rem;
  text-align: center;
}

.concept-hero-content-mini {
  max-width: 650px;
  margin: 0 auto;
}

.concept-city-tag {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.concept-hero-h {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.concept-hero-p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.concept-hero-actions-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.mini-btn-solid {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.mini-hours {
  font-size: 0.8125rem;
  color: #64748b;
}

.concept-site-grid-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.concept-category-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.cat-tag {
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.cat-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem;
}

.cat-count {
  font-size: 0.75rem;
  color: #64748b;
}

.concept-site-spotlight {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

.spotlight-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.5rem;
  background: #ffffff;
}

.spotlight-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.spotlight-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.spotlight-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #475569;
  margin-bottom: 0.75rem;
}

.meta-price {
  font-weight: 700;
}

.spotlight-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.spotlight-results {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: #1e293b;
  font-weight: 500;
}

.specialist-card {
  border: 1px solid #e2e8f0;
  border-left-width: 4px;
  border-radius: 10px;
  padding: 1.5rem;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spec-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.spec-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.spec-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.spec-role {
  font-size: 0.75rem;
  color: #64748b;
}

.spec-creds {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #475569;
  margin: 0 0 1rem;
}

.spec-contact {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1e293b;
}

/* --- Requirements Section --- */
.industry-requirements-section {
  padding: 5rem 0;
}

.industry-req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.req-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.req-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
}

.req-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.req-num {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.req-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.req-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}

/* --- Deliverables Section --- */
.industry-deliverables-section {
  padding: 5rem 0;
}

.deliverables-matrix {
  max-width: 960px;
  margin: 3.5rem auto 0;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.matrix-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
}

.matrix-rows {
  display: flex;
  flex-direction: column;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #f1f5f9;
}

.matrix-row:last-child {
  border-bottom: none;
}

.matrix-cell {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.need-cell {
  background: #ffffff;
  color: #475569;
}

.need-icon {
  color: #94a3b8;
  font-size: 0.875rem;
}

.deliverable-cell {
  color: #0f172a;
}

.deliv-icon {
  font-weight: 700;
}

.entity-clarity-statement {
  max-width: 720px;
  margin: 1rem auto 0;
  font-size: 0.9375rem;
  color: #64748b;
  font-style: italic;
}

.authorship-trust-bar {
  max-width: 960px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #475569;
}

.trust-author-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.trust-author-text {
  margin: 0;
  line-height: 1.5;
}

.trust-author-text a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- Mobile Showcase Section --- */
.industry-mobile-section {
  padding: 5rem 0;
}

.industry-mobile-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.mobile-features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-features-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1e293b;
}

.mobile-check-box {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.mobile-cta-note {
  font-size: 0.875rem;
  color: #64748b;
  padding: 0.85rem 1.25rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #cbd5e1;
}

/* Smartphone Mockup */
.smartphone-frame {
  max-width: 320px;
  margin: 0 auto;
  background: #1e293b;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.smartphone-island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  background: #000000;
  border-radius: 12px;
  z-index: 10;
}

.smartphone-screen {
  border-radius: 30px;
  overflow: hidden;
  height: 520px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mini-app-header {
  padding: 2.25rem 1rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.mini-logo {
  font-weight: 700;
}

.mini-tel {
  font-weight: 600;
}

.mini-app-hero {
  padding: 1.5rem 1rem;
  text-align: center;
}

.mini-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  display: inline-block;
}

.mini-title {
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.mini-cta {
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
}

.mini-app-cards {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.mini-card-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e293b;
}

.mini-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.mini-sticky-bar {
  padding: 0.75rem 1rem;
  border-top: 1px solid #e2e8f0;
}

.sticky-btn {
  display: block;
  text-align: center;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* --- Timeline Process --- */
.industry-process-section {
  padding: 5rem 0;
}

.industry-steps-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.timeline-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.step-num-pill {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.step-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.step-card-desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 1rem;
  flex: 1;
}

.step-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Funding Bridge --- */
.industry-funding-section {
  padding: 4rem 0;
}

.funding-card-highlight {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
}

.funding-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0.5rem 0 1rem;
}

.funding-copy {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #334155;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.funding-disclaimer-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: #92400e;
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.warning-icon {
  width: 16px;
  height: 16px;
  color: #f59e0b;
  flex-shrink: 0;
}

/* --- FAQ Section --- */
.industry-faq-section {
  padding: 5rem 0;
}

.faq-accordion-group {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-accordion-item[open] {
  border-color: #cbd5e1;
}

.faq-summary {
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-indicator {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-accordion-item[open] .faq-indicator {
  transform: rotate(45deg);
}

.faq-answer-body {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

.faq-answer-body p {
  margin: 0;
}

/* --- Industry CTA --- */
.industry-cta-section {
  padding: 6rem 0;
}

.industry-cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.cta-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}

.cta-lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.cta-contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-lbl {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-val {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.industry-cta-form-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.25rem;
  color: #0f172a;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .industry-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .industry-goals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .concept-site-grid-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-req-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-steps-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-mobile-grid {
    grid-template-columns: 1fr;
  }

  .industry-cta-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .industry-goals-grid {
    grid-template-columns: 1fr;
  }

  .concept-site-header {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .concept-site-nav {
    display: none;
  }

  .concept-site-grid-categories {
    grid-template-columns: 1fr;
  }

  .concept-site-spotlight {
    grid-template-columns: 1fr;
  }

  .industry-req-grid {
    grid-template-columns: 1fr;
  }

  .matrix-header, .matrix-row {
    grid-template-columns: 1fr;
  }

  .industry-steps-timeline {
    grid-template-columns: 1fr;
  }
}
