/* ===================================================
   INDUSTRY PAGE — extends main style.css
   =================================================== */

/* ── HERO ── */
.ind-hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 3.5rem 3rem var(--nav-h);
  /* No margin-top: the hero starts at top:0 and padding-top clears the fixed header */
}

.ind-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.04);
  animation: ind-zoom 12s ease-out forwards;
}
@keyframes ind-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0);  }
}
.ind-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

.ind-hero-content { position: relative; z-index: 1; max-width: 680px; }

.ind-hero-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.ind-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.ind-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.ind-hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── TRUST / CLIENT LOGOS ROW ── */
.ind-trust {
  background: var(--white);
  border-bottom: 1px solid var(--gray-10);
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow-x: auto;
}

.ind-trust-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-50);
  white-space: nowrap;
  flex-shrink: 0;
}

.ind-trust-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.ind-trust-logo {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-30);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}
.ind-trust-logo:hover { color: var(--gray-50); }

/* ── SECTION SHARED ── */
.ind-section {
  background: var(--white);
  padding: 5rem 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.ind-section-full {
  background: var(--white);
  padding: 5rem 3rem;
}

.ind-section-gray {
  background: var(--gray-5);
  padding: 5rem 3rem;
}

.ind-section-dark {
  background: var(--black);
  padding: 5rem 3rem;
}

.ind-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-50);
  margin-bottom: 1rem;
}

.ind-h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1rem;
  max-width: 680px;
}

.ind-h2-white { color: var(--white); }

.ind-body {
  font-size: 1rem;
  color: var(--gray-50);
  line-height: 1.75;
  max-width: 560px;
}

.ind-body-white { color: rgba(255,255,255,0.55); }

/* ── EXPLAINER: left list + right UI mockup ── */
.ind-explainer {
  background: var(--white);
  padding: 5rem 3rem;
}

.ind-explainer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ind-feature-list { display: flex; flex-direction: column; gap: 2rem; }

.ind-feature-item { display: flex; flex-direction: column; gap: 0.4rem; cursor: default; }

.ind-feature-item-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ind-feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-30);
  flex-shrink: 0;
  transition: background 0.2s;
}

.ind-feature-item:hover .ind-feature-dot { background: var(--black); }

.ind-feature-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}

.ind-feature-desc {
  font-size: 0.875rem;
  color: var(--gray-50);
  line-height: 1.65;
  padding-left: 1.375rem;
}

/* Right: UI mockup panel */
.ind-mockup {
  background: #0f0f0f;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.06);
}

.ind-mockup-bar {
  background: #1a1a1a;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ind-mockup-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.ind-mockup-dot:nth-child(1) { background: #ff5f56; }
.ind-mockup-dot:nth-child(2) { background: #ffbd2e; }
.ind-mockup-dot:nth-child(3) { background: #27c93f; }

.ind-mockup-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  margin-left: 0.5rem;
}

.ind-mockup-body {
  flex: 1;
  padding: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.2);
  overflow: hidden;
}

.ind-mockup-line { margin-bottom: 0; }
.t-g { color: #4ec9b0; }
.t-y { color: #dcdcaa; }
.t-b { color: #9cdcfe; }
.t-w { color: rgba(255,255,255,0.8); }
.t-a { color: #c8b89a; }
.t-d { color: rgba(255,255,255,0.25); }
.t-cur {
  display: inline-block; width: 7px; height: 13px;
  background: rgba(255,255,255,0.6);
  animation: blink 1.1s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes blink { 50% { opacity: 0; } }

/* ── PROCESS / HOW-TO ── */
.ind-process {
  text-align: center;
  padding: 5rem 3rem;
}

.ind-process-intro {
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.ind-process-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--gray-10);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 2.5rem;
}

.ind-tab {
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-50);
  background: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid var(--gray-10);
  letter-spacing: 0.02em;
}
.ind-tab:last-child { border-right: none; }
.ind-tab.active, .ind-tab:hover { background: var(--black); color: var(--white); }

.ind-process-panels { max-width: 1100px; margin: 0 auto; }

.ind-process-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  text-align: left;
}

.ind-process-panel.active { display: grid; }

.ind-process-panel-visual {
  background: #0f0f0f;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.08);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.ind-process-panel-text { padding-top: 1rem; }

.ind-process-panel-step {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-50);
  margin-bottom: 0.75rem;
}

.ind-process-panel-h {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1rem;
}

.ind-process-panel-body {
  font-size: 0.9rem;
  color: var(--gray-50);
  line-height: 1.75;
}

/* ── PHASES CARDS ── */
.ind-phases {
  padding: 5rem 3rem;
  background: var(--gray-5);
}

.ind-phases-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.ind-phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-10);
  border: 1px solid var(--gray-10);
  border-radius: 12px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.ind-phase-card {
  background: var(--white);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s;
}
.ind-phase-card:hover { background: var(--gray-5); }

.ind-phase-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray-30);
  letter-spacing: 0.1em;
}

.ind-phase-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f0f0f;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.06);
}

.ind-phase-visual svg { opacity: 0.3; }

.ind-phase-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}

.ind-phase-body {
  font-size: 0.875rem;
  color: var(--gray-50);
  line-height: 1.65;
  flex: 1;
}

.ind-phase-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.ind-phase-link:hover { gap: 0.7rem; }

/* ── TRUST/REASONS ── */
.ind-reasons {
  background: var(--white);
  padding: 5rem 3rem;
  text-align: center;
}

.ind-reasons-intro {
  max-width: 620px;
  margin: 0 auto 3rem;
}

.ind-reasons-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-50);
  margin-bottom: 0.75rem;
}

.ind-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.ind-reason {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ind-reason-icon {
  width: 36px;
  height: 36px;
  background: var(--gray-5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind-reason-icon svg { width: 16px; height: 16px; }

.ind-reason-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}

.ind-reason-body {
  font-size: 0.875rem;
  color: var(--gray-50);
  line-height: 1.65;
}

/* ── RESOURCES ── */
.ind-resources {
  background: var(--white);
  padding: 5rem 3rem;
  border-top: 1px solid var(--gray-10);
}

.ind-resources-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ind-resources-intro {
  margin-bottom: 2.5rem;
}

.ind-resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.ind-resource-card {
  background: var(--gray-5);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.ind-resource-card:hover { background: var(--gray-10); }

.ind-resource-img {
  aspect-ratio: 16 / 7;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  color: rgba(255,255,255,0.08);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.ind-resource-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.ind-resource-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-50);
  margin-bottom: 0.5rem;
}

.ind-resource-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.35;
}

/* ── CALLOUT / FOUNDATION MODEL ── */
.ind-callout {
  background: var(--white);
  padding: 5rem 3rem;
  border-top: 1px solid var(--gray-10);
}

.ind-callout-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ind-callout-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-50);
  margin-bottom: 0.75rem;
}

.ind-callout-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  margin-top: 1.25rem;
  border-bottom: 1px solid var(--gray-30);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s;
}
.ind-callout-link:hover { border-color: var(--black); }

.ind-callout-visual {
  background: #0f0f0f;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── DARK CTA SECTION ── */
.ind-cta {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 3.5rem 3rem;
  overflow: hidden;
}

.ind-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}
.ind-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.ind-cta-content { position: relative; z-index: 1; max-width: 640px; }

.ind-cta h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}

/* ── FADE-UP ANIMATIONS ── */
.ind-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.ind-fade.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ind-hero { padding: 2rem 1.5rem; }
  .ind-trust { padding: 1rem 1.5rem; }
  .ind-section, .ind-section-full, .ind-section-gray, .ind-section-dark,
  .ind-explainer, .ind-process, .ind-phases, .ind-reasons,
  .ind-resources, .ind-callout, .ind-cta { padding: 3.5rem 1.5rem; }
  .ind-explainer-inner { grid-template-columns: 1fr; }
  .ind-process-panel { grid-template-columns: 1fr; }
  .ind-phases-grid { grid-template-columns: 1fr; }
  .ind-reasons-grid { grid-template-columns: 1fr; }
  .ind-resources-grid { grid-template-columns: 1fr; }
  .ind-callout-inner { grid-template-columns: 1fr; }
}

/* ── SERVICE PAGE OVERRIDES ── */
.svc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.svc-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.svc-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--gray-10);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.svc-step:hover { border-color: var(--gray-30); background: var(--gray-5); }

.svc-step-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray-30);
  letter-spacing: 0.1em;
}
.svc-step-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}
.svc-step-body {
  font-size: 0.875rem;
  color: var(--gray-50);
  line-height: 1.65;
}

/* Full-width dark statement band */
.svc-statement {
  background: var(--black);
  padding: 5rem 3rem;
  text-align: center;
}
.svc-statement-text {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
}
.svc-statement-text em { font-style: italic; color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .svc-two-col { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2.5rem; }
  .svc-three-col { grid-template-columns: 1fr; }
  .svc-statement { padding: 3.5rem 1.5rem; }
}

@media (max-width: 768px) {
  .svc-statement { padding: 3rem 1.25rem; }
  .svc-statement-text { font-size: clamp(1.3rem, 5vw, 1.9rem); }
  .svc-two-col, .svc-three-col { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .svc-step { padding: 1.25rem; }
  .ind-h2 { font-size: clamp(1.3rem, 5vw, 1.9rem); }
}
