/* ===== VERDIUS V5 — INDUSTRY PAGE STYLES (o9 hero-two layout, exact match) ===== */

/* ===== HERO-TWO ===== */
.ind-hero {
  padding-top: calc(var(--header-height-mobile) + 2rem);
  padding-bottom: 0;
}

@media (min-width: 1280px) {
  .ind-hero {
    padding-top: calc(var(--header-height) + 2rem);
  }
}

/* 12-column grid matching o9 grid-setup */
.ind-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
}

/* Row 1: Breadcrumb — col-span-full, lg:col-start-1 lg:col-end-7 */
.ind-breadcrumb {
  grid-row: 1;
  grid-column: 1 / -1;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--size-sm);
  font-weight: 300;
  color: var(--color-primary-muted);
}

.ind-breadcrumb a {
  transition: color 0.3s;
}

.ind-breadcrumb a:hover {
  color: var(--color-primary);
}

.ind-breadcrumb .sep {
  color: var(--white-30);
}

@media (min-width: 1280px) {
  .ind-breadcrumb {
    grid-column: 1 / 7;
    margin-bottom: 1.5rem;
  }
}

/* Row 2: Title — col-span-full, lg:col-start-1 lg:col-end-7 */
.ind-hero-title {
  grid-row: 2;
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ind-hero-title h1 {
  font-size: var(--size-5xl);
  line-height: 1.1;
  letter-spacing: -1px;
}

@media (min-width: 1280px) {
  .ind-hero-title {
    grid-column: 1 / 7;
  }
  .ind-hero-title h1 {
    font-size: var(--size-7xl);
    line-height: 1;
  }
}

/* Row 3 (mobile) / Row 2 (desktop): Description + CTA — lg:col-start-7 lg:col-end-12 */
.ind-hero-desc {
  grid-row: 3;
  grid-column: 1 / -1;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
}

.ind-hero-desc p {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.3;
}

@media (min-width: 1280px) {
  .ind-hero-desc {
    grid-row: 2;
    grid-column: 7 / 12;
    margin-top: 0;
    padding-right: 2rem;
  }
}

/* Stacked variant: description always below title (for pages without video) */
.ind-hero-grid--stacked .ind-hero-title {
  grid-column: 1 / -1;
}

.ind-hero-grid--stacked .ind-hero-desc {
  grid-row: 3;
  grid-column: 1 / -1;
}

@media (min-width: 1280px) {
  .ind-hero-grid--stacked .ind-hero-title {
    grid-column: 1 / 9;
  }
  .ind-hero-grid--stacked .ind-hero-desc {
    grid-row: 3;
    grid-column: 1 / 7;
    margin-top: 1.5rem;
    padding-right: 0;
  }
  .ind-hero-grid--stacked .ind-hero-video {
    grid-row: 4;
  }
}

/* Hero actions */
.ind-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Row 4 (mobile) / Row 3 (desktop): Video — col-span-full */
.ind-hero-video {
  grid-row: 4;
  grid-column: 1 / -1;
  margin-top: 2.5rem;
}

@media (min-width: 1280px) {
  .ind-hero-video {
    grid-row: 3;
    margin-top: 3rem;
  }
}

.ind-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--white-05);
  overflow: hidden;
}

.ind-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ind-video-wrapper .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 1px solid var(--color-primary);
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.ind-video-wrapper .play-btn:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

.ind-video-wrapper .play-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.ind-video-wrapper.playing .play-btn {
  display: none;
}

/* ===== SECTION HEADING ===== */
.ind-section-heading {
  padding: var(--section-pad) 0 3rem;
}

.ind-section-heading-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ind-section-badge {
  font-family: var(--font-mono);
  font-size: var(--size-sm);
  font-weight: 300;
  color: var(--color-primary-muted);
  text-transform: uppercase;
}

.ind-section-heading h2 {
  font-size: var(--size-5xl);
  line-height: 1.1;
  letter-spacing: -1px;
}

@media (min-width: 1280px) {
  .ind-section-heading-inner {
    max-width: 66.67%;
  }
  .ind-section-heading h2 {
    font-size: var(--size-7xl);
    line-height: 1;
  }
}

/* ===== BENTO GRID ===== */
.ind-bento {
  padding-bottom: var(--section-pad);
}

.ind-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 1280px) {
  .ind-bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ind-bento-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== BENTO CARD ===== */
.ind-bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--white-10);
  background: var(--white-05);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.ind-bento-card:hover {
  border-color: var(--white-30);
}

.ind-bento-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.ind-bento-card-tag {
  font-family: var(--font-mono);
  font-size: var(--size-xs);
  font-weight: 300;
  color: var(--color-primary-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ind-bento-card h3 {
  font-size: var(--size-lg);
  font-weight: 400;
  line-height: 1.3;
}

.ind-bento-card p {
  color: var(--white-50);
  font-size: var(--size-sm);
  font-weight: 300;
  line-height: 1.7;
  flex-grow: 1;
}

.ind-bento-card .hidden-arrow-link {
  margin-top: 16px;
}

/* ===== LIST LAYOUT — editorial rows with dividers ===== */
.ind-list {
  padding-bottom: var(--section-pad);
}

.ind-list-items {
  border-top: 1px solid var(--white-10);
}

.ind-list-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--white-10);
}

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

.ind-list-num {
  font-family: var(--font-mono);
  font-size: var(--size-xs);
  font-weight: 300;
  color: var(--color-primary-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ind-list-item h3 {
  font-size: var(--size-xl);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.ind-list-right p {
  color: var(--white-50);
  font-size: var(--size-base);
  font-weight: 300;
  line-height: 1.7;
}

@media (min-width: 1280px) {
  .ind-list-item {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    padding: 3rem 0;
  }

  .ind-list-item h3 {
    font-size: var(--size-2xl);
  }

  .ind-list-right {
    padding-top: 1.75rem;
  }
}

/* ===== STACK GRID — numbered items, no cards ===== */
.ind-stack {
  padding-bottom: var(--section-pad);
}

.ind-stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1280px) {
  .ind-stack-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

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

.ind-stack-num {
  font-family: var(--font-mono);
  font-size: var(--size-xs);
  font-weight: 300;
  color: var(--color-primary-muted);
  letter-spacing: 2px;
}

.ind-stack-item h3 {
  font-size: var(--size-xl);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

@media (min-width: 1280px) {
  .ind-stack-item h3 {
    font-size: var(--size-2xl);
  }
}

.ind-stack-item p {
  color: var(--white-50);
  font-size: var(--size-base);
  font-weight: 300;
  line-height: 1.7;
}

.ind-stack-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
  font-size: var(--size-sm);
  font-weight: 300;
  color: var(--color-primary);
  transition: gap 0.3s;
}

.ind-stack-link:hover {
  gap: 10px;
}

.ind-stack-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* ===== FEATURE BLOCKS — left accent border, single column ===== */
.ind-feature {
  padding-bottom: var(--section-pad);
}

.ind-feature-items {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1280px) {
  .ind-feature-items {
    gap: 3.5rem;
  }
}

.ind-feature-item {
  padding-top: 1.5rem;
  border-top: 1px solid var(--white-20);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s;
}

.ind-feature-item:hover {
  border-color: var(--color-primary);
}

.ind-feature-num {
  font-family: var(--font-mono);
  font-size: var(--size-xs);
  font-weight: 300;
  color: var(--color-primary-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ind-feature-item h3 {
  font-size: var(--size-xl);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

@media (min-width: 1280px) {
  .ind-feature-item h3 {
    font-size: var(--size-2xl);
  }
}

.ind-feature-item p {
  color: var(--white-50);
  font-size: var(--size-base);
  font-weight: 300;
  line-height: 1.7;
  max-width: 720px;
}

/* ===== INDUSTRY CTA — o9 cta-placeholder pattern ===== */
.ind-cta {
  padding: var(--section-pad) 0;
  text-align: center;
}

.ind-cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.ind-cta h2 {
  font-size: var(--size-5xl);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 24px;
}

@media (min-width: 1280px) {
  .ind-cta h2 {
    font-size: var(--size-5xl);
    line-height: 1.15;
  }
}

.ind-cta p {
  color: var(--white-70);
  font-size: var(--size-md);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 44px;
}

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

.ind-cta-actions .btn-primary {
  height: 48px;
  padding: 11px 24px;
  font-size: var(--size-md);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 743px) {
  .ind-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .ind-hero-actions .btn-primary,
  .ind-hero-actions .btn-secondary {
    width: 100%;
  }
  .ind-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
