/* ═══ VYROX V3 — Inner Pages ═══ */

.v3-body {
  background: var(--vyrox-white);
}

.v3-main {
  padding-top: var(--header-h);
}

/* Page hero */
.v3-page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
  background: var(--vyrox-off-white);
  border-bottom: 1px solid var(--vyrox-border);
}

.v3-page-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vyrox-red);
  margin-bottom: 0.75rem;
}

.v3-page-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: none;
  margin-bottom: 0.75rem;
}

.v3-page-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--vyrox-grey);
  max-width: none;
}

.v3-page-hero--image {
  position: relative;
  min-height: min(52vh, 480px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  background: var(--vyrox-charcoal);
  border-bottom: none;
}

.v3-page-hero--image .v3-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.v3-page-hero--image .v3-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(255 255 255 / 98%) 0%, rgb(255 255 255 / 70%) 45%, rgb(255 255 255 / 30%) 100%);
}

.v3-page-hero--image .v3-container {
  position: relative;
  z-index: 1;
}

.v3-page-hero--image .v3-page-hero__title {
  color: var(--vyrox-charcoal);
}

/* Content blocks */
.v3-content {
  max-width: 42rem;
}

.v3-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--vyrox-grey);
  margin-bottom: 1rem;
}

.v3-content p em {
  color: var(--vyrox-charcoal);
  font-style: normal;
  font-weight: 600;
}

.v3-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--vyrox-grey);
}

/* Service cards — photo backgrounds */
.v3-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.v3-service-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--vyrox-white);
  isolation: isolate;
}

.v3-service-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--vyrox-charcoal);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease);
}

.v3-service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(20 20 20 / 18%) 0%, rgb(20 20 20 / 42%) 38%, rgb(12 12 12 / 88%) 100%);
}

.v3-service-card:hover .v3-service-card__media {
  transform: scale(1.06);
}

.v3-service-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 22rem;
  padding: 1.75rem 1.5rem 1.5rem;
}

.v3-service-card__body h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--vyrox-white);
  margin-bottom: 0.65rem;
}

.v3-service-card__body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 82%);
  margin-bottom: 1.1rem;
  max-width: 38rem;
}

.v3-service-card__link {
  align-self: flex-start;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--vyrox-white);
  border-bottom: 1px solid rgb(255 255 255 / 45%);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.v3-service-card__link:hover {
  color: var(--vyrox-mustard);
  border-color: var(--vyrox-mustard);
}

@media (max-width: 767px) {
  .v3-services {
    grid-template-columns: 1fr;
  }

  .v3-service-card,
  .v3-service-card__body {
    min-height: 20rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v3-service-card__media,
  .v3-service-card:hover .v3-service-card__media {
    transform: none;
    transition: none;
  }
}

/* Grid helpers */
.v3-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.v3-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.v3-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

/* Tags / chips */
.v3-tag {
  display: inline-flex;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--vyrox-charcoal);
  background: var(--vyrox-white);
  border: 1px solid var(--vyrox-border);
  border-radius: 999px;
}

/* Workflow strip */
.v3-workflow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  padding: 1.5rem;
  background: var(--vyrox-off-white);
  border-radius: var(--radius);
  border: 1px solid var(--vyrox-border);
}

.v3-workflow__step {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--vyrox-white);
  border: 1px solid var(--vyrox-border);
  border-radius: 999px;
}

.v3-workflow__arrow {
  color: var(--vyrox-red);
  font-size: 0.875rem;
}

/* Timeline (vertical — about page) */
.v3-journey {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--vyrox-border);
  margin-left: 0.5rem;
  padding-left: 1.75rem;
}

.v3-journey__item {
  position: relative;
  padding-bottom: 2rem;
}

.v3-journey__item::before {
  content: "";
  position: absolute;
  left: calc(-1.75rem - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vyrox-red);
  border: 2px solid var(--vyrox-white);
  box-shadow: 0 0 0 2px var(--vyrox-red);
}

.v3-journey__year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--vyrox-red);
  margin-bottom: 0.25rem;
}

.v3-journey__title {
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
}

.v3-journey__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--vyrox-grey);
}

/* FAQ accordion (Envisage pattern) */
.v3-faq {
  max-width: 48rem;
  margin: 0 auto;
}

.v3-faq__item {
  border: 1px solid var(--vyrox-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--vyrox-white);
}

.v3-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  color: var(--vyrox-charcoal);
  cursor: pointer;
}

.v3-faq__trigger svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  fill: none;
  stroke: var(--vyrox-red);
  stroke-width: 2;
  transition: transform 0.25s ease;
}

.v3-faq__item.is-open .v3-faq__trigger svg {
  transform: rotate(180deg);
}

.v3-faq__panel {
  display: none;
  padding: 0 1.25rem 1.125rem;
}

.v3-faq__item.is-open .v3-faq__panel {
  display: block;
}

.v3-faq__panel p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--vyrox-grey);
}

/* Contact */
.v3-contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}

.v3-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 2rem;
  background: var(--vyrox-white);
  border: 1px solid var(--vyrox-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.v3-form form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.v3-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.v3-form-group {
  margin-bottom: 1.25rem;
}

.v3-form-group--message {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 8rem;
  margin-bottom: 1.25rem;
}

.v3-form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--vyrox-charcoal);
}

.v3-form-group input,
.v3-form-group select,
.v3-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--vyrox-border);
  border-radius: 10px;
  background: var(--vyrox-white);
  color: var(--vyrox-charcoal);
  transition: border-color 0.2s ease;
}

.v3-form-group textarea {
  flex: 1;
  min-height: 7rem;
  resize: vertical;
}

.v3-form-group input:focus,
.v3-form-group select:focus,
.v3-form-group textarea:focus {
  outline: none;
  border-color: var(--vyrox-red);
}

.v3-form-group.has-error input,
.v3-form-group.has-error select,
.v3-form-group.has-error textarea {
  border-color: var(--vyrox-red);
}

.v3-form-error {
  font-size: 0.75rem;
  color: var(--vyrox-red);
  margin-top: 0.25rem;
}

.v3-form-success {
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgb(34 197 94 / 8%);
  border: 1px solid rgb(34 197 94 / 20%);
  border-radius: 10px;
  color: #15803d;
  font-size: 0.875rem;
}

.v3-form__submit {
  width: 100%;
  margin-top: auto;
}

.v3-info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  background: var(--vyrox-off-white);
  border: 1px solid var(--vyrox-border);
  border-radius: var(--radius);
}

.v3-info-card__list {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex: 1;
}

.v3-info-card__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--vyrox-border);
}

.v3-info-card__item:last-child {
  border-bottom: none;
}

.v3-info-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(192 57 43 / 8%);
  color: var(--vyrox-red);
  border-radius: 10px;
  font-size: 1rem;
}

.v3-info-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vyrox-grey);
  margin-bottom: 0.2rem;
}

.v3-info-card__value {
  font-size: 0.9375rem;
  color: var(--vyrox-charcoal);
}

.v3-info-card__value a {
  color: var(--vyrox-red);
}

.v3-info-card__wa {
  width: 100%;
  margin-top: auto;
  background: var(--vyrox-mustard);
  color: var(--vyrox-charcoal);
}

.v3-info-card__wa:hover {
  background: #c49214;
  color: var(--vyrox-charcoal);
}

.v3-map {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--vyrox-border);
  aspect-ratio: 21 / 9;
}

.v3-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.v3-feature-list {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  color: var(--vyrox-grey);
  line-height: 1.8;
  font-size: 0.9375rem;
}

.v3-inline-link {
  color: var(--vyrox-red);
  font-weight: 600;
}

.v3-prose h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.v3-prose p,
.v3-prose li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--vyrox-grey);
}

.v3-prose ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

.v3-prose a {
  color: var(--vyrox-red);
}

/* ═══ About page — editorial premium layout ═══ */
.v3-about-page .v3-main,
.ab-main {
  padding-top: var(--header-h);
}

.ab-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vyrox-red);
  margin-bottom: 0.85rem;
}

.ab-eyebrow--light {
  color: var(--vyrox-mustard);
}

.ab-section-head {
  max-width: 32rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.ab-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.ab-section-head--light h2 {
  color: var(--vyrox-white);
}

/* Hero */
.ab-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgb(247 248 250 / 100%) 0%, rgb(255 255 255 / 100%) 55%, rgb(212 160 23 / 6%) 100%);
  border-bottom: 1px solid var(--vyrox-border);
}

.ab-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.ab-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 5vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.ab-hero__title-accent {
  color: var(--vyrox-red);
}

.ab-hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.65;
  color: var(--vyrox-grey);
  margin-bottom: 0.85rem;
  max-width: 34rem;
}

.ab-hero__lead em {
  color: var(--vyrox-charcoal);
  font-style: normal;
  font-weight: 600;
}

.ab-hero__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--vyrox-grey);
  max-width: 32rem;
}

.ab-hero__visual {
  position: relative;
}

.ab-hero__frame {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--vyrox-border);
}

.ab-hero__frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.ab-hero__frame--logo {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(160deg, rgb(255 255 255 / 100%) 0%, rgb(247 248 250 / 100%) 55%, rgb(212 160 23 / 8%) 100%);
  padding: clamp(2rem, 5vw, 3.5rem);
}

.ab-hero__frame--logo img {
  width: min(72%, 280px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.ab-hero__rule {
  position: absolute;
  left: -1.25rem;
  top: 12%;
  width: 4px;
  height: 38%;
  background: linear-gradient(180deg, var(--vyrox-mustard), var(--vyrox-red));
  border-radius: 999px;
}

/* Showcase */
.ab-showcase {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.ab-showcase__frame {
  margin: 0;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--vyrox-border);
}

.ab-showcase__frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mission & Vision */
.ab-purpose {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--vyrox-off-white);
}

.ab-purpose__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.ab-purpose__card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
}

.ab-purpose__card--mission {
  background: var(--vyrox-charcoal);
  color: var(--vyrox-white);
}

.ab-purpose__card--vision {
  background: var(--vyrox-white);
  border: 1px solid var(--vyrox-border);
  box-shadow: var(--shadow-sm);
}

.ab-purpose__card--vision::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--vyrox-mustard);
}

.ab-purpose__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ab-purpose__card--mission .ab-purpose__label {
  color: var(--vyrox-mustard);
}

.ab-purpose__card--vision .ab-purpose__label {
  color: var(--vyrox-red);
}

.ab-purpose__statement {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.2vw, 1.4375rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
  margin: 0;
}

.ab-purpose__card--vision .ab-purpose__statement {
  color: var(--vyrox-charcoal);
}

/* Core Values */
.ab-values {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--vyrox-charcoal);
  color: var(--vyrox-white);
}

.ab-values__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
}

.ab-value {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  background: var(--vyrox-charcoal);
  transition: background 0.35s var(--ease);
}

.ab-value:hover {
  background: rgb(255 255 255 / 4%);
}

.ab-value__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--vyrox-mustard);
}

.ab-value__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--vyrox-white);
}

.ab-value__text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 68%);
  margin: 0;
}

/* Journey */
.ab-journey {
  padding: clamp(3.25rem, 7vw, 5rem) 0;
  background:
    radial-gradient(900px 240px at 12% 0%, rgb(212 160 23 / 8%), transparent 70%),
    radial-gradient(700px 220px at 92% 100%, rgb(192 57 43 / 6%), transparent 65%),
    var(--vyrox-off-white);
}

.ab-journey__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  position: relative;
}

.ab-journey__track::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--vyrox-mustard), var(--vyrox-red));
  opacity: 0.55;
}

.ab-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.7rem;
}

.ab-milestone__node {
  position: relative;
  z-index: 1;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--vyrox-white);
  border: 2px solid var(--vyrox-red);
  color: var(--vyrox-red);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 6px var(--vyrox-off-white);
}

.ab-milestone__node::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 1.5rem;
  background: rgb(192 57 43 / 22%);
  transform: translateX(-50%);
}

.ab-milestone--now .ab-milestone__node {
  background: var(--vyrox-red);
  color: var(--vyrox-white);
  border-color: var(--vyrox-red);
  box-shadow:
    0 0 0 6px var(--vyrox-off-white),
    0 0 0 8px rgb(212 160 23 / 55%);
}

.ab-milestone__card {
  width: 100%;
  padding: 1.2rem 1.1rem 1.3rem;
  background: var(--vyrox-white);
  border: 1px solid var(--vyrox-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.ab-milestone:hover .ab-milestone__card {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ab-milestone--now .ab-milestone__card {
  border-color: rgb(192 57 43 / 18%);
  box-shadow: 0 8px 28px rgb(192 57 43 / 8%);
}

.ab-milestone__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.ab-milestone__text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--vyrox-grey);
  margin: 0;
}

/* CTA */
.ab-cta {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    linear-gradient(160deg, var(--vyrox-charcoal) 0%, #1a1a1a 100%);
  text-align: center;
  color: var(--vyrox-white);
}

.ab-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 38rem;
}

.ab-cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.ab-cta__accent {
  color: var(--vyrox-mustard);
}

.ab-cta__btn {
  margin-top: 0.5rem;
}

@media (max-width: 991px) {
  .ab-hero__inner {
    grid-template-columns: 1fr;
  }

  .ab-hero__rule {
    display: none;
  }

  .ab-hero__visual {
    order: -1;
  }

  .ab-hero__frame img {
    aspect-ratio: 16 / 9;
    max-height: 320px;
  }

  .ab-hero__frame--logo {
    aspect-ratio: 16 / 9;
    min-height: 200px;
    max-height: 280px;
  }

  .ab-hero__frame--logo img {
    aspect-ratio: auto;
    max-height: none;
    width: min(68%, 220px);
  }

  .ab-purpose__grid {
    grid-template-columns: 1fr;
  }

  .ab-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ab-journey__track {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 36rem;
    margin-inline: auto;
  }

  .ab-journey__track::before {
    top: 1.35rem;
    bottom: 1.35rem;
    left: 1.35rem;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--vyrox-mustard), var(--vyrox-red));
  }

  .ab-milestone {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 0 0 1.65rem;
  }

  .ab-milestone:last-child {
    padding-bottom: 0;
  }

  .ab-milestone__node {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .ab-milestone__node::after {
    display: none;
  }

  .ab-milestone__card {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 576px) {
  .ab-values__grid {
    grid-template-columns: 1fr;
  }
}


/* Project cards grid (projects page) */
.v3-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Project detail modal (projects page) — pattern aligned with experience modal */
.v3-project-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgb(44 44 44 / 62%);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.v3-project-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.v3-project-modal[hidden] {
  display: none;
}

.v3-project-modal.is-open[hidden] {
  display: flex;
}

.v3-project-modal__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  width: min(920px, 100%);
  max-height: min(88vh, 720px);
  overflow: hidden;
  background: var(--vyrox-white);
  border: 1px solid var(--vyrox-border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 64px rgb(44 44 44 / 22%);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.35s var(--ease);
}

.v3-project-modal.is-open .v3-project-modal__panel {
  transform: translateY(0) scale(1);
}

.v3-project-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgb(44 44 44 / 72%);
  color: var(--vyrox-white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}

.v3-project-modal__close:hover {
  background: var(--vyrox-charcoal);
  transform: scale(1.04);
}

.v3-project-modal__close:focus-visible {
  outline: 2px solid var(--vyrox-mustard);
  outline-offset: 2px;
}

.v3-project-modal__media {
  min-height: 100%;
  background: var(--vyrox-grey-light);
  overflow: hidden;
}

.v3-project-modal__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.v3-project-modal__body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.v3-project-modal__meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vyrox-mustard);
  margin-bottom: 0.5rem;
}

.v3-project-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--vyrox-charcoal);
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.v3-project-modal__summary {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--vyrox-charcoal);
  margin: 0 0 0.85rem;
  line-height: 1.5;
}

.v3-project-modal__detail {
  font-size: 0.9375rem;
  color: var(--vyrox-grey);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.v3-project-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.v3-project-modal__tags li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--vyrox-charcoal);
  background: var(--vyrox-mustard-soft);
  border: 1px solid rgb(212 160 23 / 28%);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.v3-project-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

body.project-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .v3-project-modal {
    padding: 0.75rem;
    align-items: flex-end;
  }

  .v3-project-modal__panel {
    grid-template-columns: 1fr;
    max-height: min(92vh, 860px);
    border-radius: calc(var(--radius) + 2px) calc(var(--radius) + 2px) 0 0;
  }

  .v3-project-modal__media img {
    min-height: 200px;
    max-height: 220px;
  }
}

/* Page CTA */
.v3-page-cta {
  text-align: center;
  padding: clamp(3rem, 8vw, 4.5rem) 0;
  background: var(--vyrox-off-white);
  border-top: 1px solid var(--vyrox-border);
}

.v3-page-cta h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 1.25rem;
}

/* ═══ Industry microsite pages (shared template) ═══ */
.ind-page .v3-main {
  padding-top: 0;
}

.ind-loading {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  color: var(--vyrox-grey);
}

.ind-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vyrox-red);
  margin-bottom: 0.75rem;
}

.ind-hero {
  position: relative;
  min-height: min(86vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
  background: #141414;
}

.ind-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: ind-hero-zoom 20s var(--ease) forwards;
}

.ind-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgb(12 12 12 / 82%) 0%, rgb(12 12 12 / 48%) 50%, rgb(12 12 12 / 22%) 100%),
    linear-gradient(to top, rgb(12 12 12 / 70%) 0%, transparent 52%);
}

.ind-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.ind-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  color: rgb(255 255 255 / 55%);
  margin-bottom: 1.25rem;
}

.ind-breadcrumb a {
  color: rgb(255 255 255 / 72%);
}

.ind-breadcrumb a:hover {
  color: var(--vyrox-white);
}

.ind-breadcrumb span:last-child {
  color: var(--vyrox-mustard);
}

.ind-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vyrox-mustard);
  margin-bottom: 1rem;
}

.ind-hero__brand::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--vyrox-mustard);
}

.ind-hero__title {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--vyrox-white);
  max-width: none;
  margin-bottom: 1.1rem;
}

.ind-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgb(255 255 255 / 78%);
  max-width: min(56rem, 100%);
  margin-bottom: 1.85rem;
}

.ind-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ind-hero .v3-btn--secondary {
  color: var(--vyrox-white);
  border-color: rgb(255 255 255 / 35%);
  background: transparent;
}

.ind-hero .v3-btn--secondary:hover {
  border-color: var(--vyrox-white);
  background: rgb(255 255 255 / 8%);
}

@keyframes ind-hero-zoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.ind-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.ind-overview__copy h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: none;
}

.ind-overview__copy p {
  color: var(--vyrox-grey);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.ind-overview__visual {
  position: relative;
}

.ind-overview__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-md);
}

.ind-chip-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: min(18rem, calc(100% - 2rem));
  padding: 1.15rem 1.25rem;
  background: rgb(255 255 255 / 96%);
  border: 1px solid var(--vyrox-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  animation: ind-float 5.5s ease-in-out infinite;
}

.ind-chip-card h3 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vyrox-red);
  margin-bottom: 0.75rem;
}

.ind-chip-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.ind-chip-card li {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vyrox-charcoal);
  padding-left: 0.9rem;
  position: relative;
}

.ind-chip-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--vyrox-mustard);
}

@keyframes ind-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.ind-sols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.ind-sol {
  padding: 1.5rem;
  background: var(--vyrox-white);
  border: 1px solid var(--vyrox-border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.ind-sol:hover {
  transform: translateY(-4px);
  border-color: rgb(192 57 43 / 28%);
  box-shadow: var(--shadow-md);
}

.ind-sol__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  color: var(--vyrox-red);
  background: rgb(192 57 43 / 8%);
}

.ind-sol__icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ind-sol h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.ind-sol p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--vyrox-grey);
}

.ind-eco {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding: clamp(1.25rem, 3vw, 2.25rem) 0.15rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ind-eco::-webkit-scrollbar {
  display: none;
}

/* Single connected chain — shrinks fluidly with the viewport */
.ind-eco__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: clamp(0.2rem, 1vw, 0.65rem);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.ind-eco__node {
  flex: 1 1 0;
  min-width: 0;
  max-width: 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(0.55rem, 1.4vw, 0.95rem) clamp(0.4rem, 1.1vw, 1.1rem);
  text-align: center;
  background: var(--vyrox-off-white);
  border: 1px solid var(--vyrox-border);
  border-radius: clamp(10px, 1.2vw, 14px);
}

.ind-eco__node strong {
  display: block;
  font-size: clamp(0.62rem, 1.45vw, 0.9rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ind-eco__node--core {
  flex: 1.45 1 0;
  max-width: 11.5rem;
  padding: clamp(0.75rem, 1.8vw, 1.25rem) clamp(0.55rem, 1.4vw, 1.35rem);
  background: var(--vyrox-charcoal);
  border-color: var(--vyrox-charcoal);
  color: var(--vyrox-white);
  box-shadow: 0 16px 40px rgb(44 44 44 / 22%);
  z-index: 1;
}

.ind-eco__node--core span {
  display: block;
  font-size: clamp(0.5rem, 1.1vw, 0.65rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vyrox-mustard);
  margin-bottom: 0.35rem;
}

.ind-eco__node--core strong {
  font-size: clamp(0.68rem, 1.55vw, 0.95rem);
}

.ind-eco__line {
  flex: 0 0 clamp(0.4rem, 1.6vw, 1.5rem);
  width: clamp(0.4rem, 1.6vw, 1.5rem);
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vyrox-red), transparent);
}

.ind-benefits-band {
  padding-block: var(--section-y);
  background:
    radial-gradient(ellipse at 20% 0%, rgb(212 160 23 / 12%) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 100%, rgb(192 57 43 / 16%) 0%, transparent 50%),
    #1a1a1a;
  color: var(--vyrox-white);
}

.ind-benefits-band .v3-section-title h2,
.ind-benefits-band .v3-section-title p {
  color: var(--vyrox-white);
}

.ind-benefits-band .v3-section-title p {
  color: rgb(255 255 255 / 68%);
}

.ind-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.ind-benefit {
  padding: 1.5rem 1.25rem;
  border-top: 2px solid rgb(255 255 255 / 14%);
}

.ind-benefit__stat {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--vyrox-mustard);
  margin-bottom: 0.45rem;
}

.ind-benefit h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.ind-benefit p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 68%);
}

.ind-uses {
  display: grid;
  gap: 2.5rem;
}

.ind-use {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.ind-use--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.ind-use--reverse .ind-use__media {
  order: 2;
}

.ind-use__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
}

.ind-use__copy h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 0.75rem;
}

.ind-use__copy p:last-child {
  color: var(--vyrox-grey);
  line-height: 1.75;
}

.ind-platform {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.ind-platform__copy h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  margin-bottom: 1rem;
  max-width: none;
}

.ind-platform__copy > p:not(.ind-kicker) {
  color: var(--vyrox-grey);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.ind-platform__stats,
.ind-dash__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.ind-platform__stats strong,
.ind-dash__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--vyrox-charcoal);
}

.ind-platform__stats span,
.ind-dash__stat span {
  font-size: 0.75rem;
  color: var(--vyrox-grey);
}

.ind-dash {
  padding: 1rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(160deg, #2a2a2a 0%, #171717 100%);
  border: 1px solid rgb(255 255 255 / 8%);
  box-shadow: var(--shadow-md);
  color: var(--vyrox-white);
}

.ind-dash__top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.ind-dash__top span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgb(255 255 255 / 25%);
}

.ind-dash__top span:first-child { background: #ff5f57; }
.ind-dash__top span:nth-child(2) { background: #febc2e; }
.ind-dash__top span:nth-child(3) { background: #28c840; }

.ind-dash__top strong {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 70%);
}

.ind-dash__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.ind-dash__panel {
  padding: 1rem;
  border-radius: 12px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 8%);
  min-height: 5.5rem;
}

.ind-dash__panel--wide {
  grid-column: 1 / -1;
}

.ind-dash__panel em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 55%);
  margin-bottom: 0.65rem;
}

.ind-dash__panel b {
  font-size: 1.25rem;
  color: var(--vyrox-mustard);
}

.ind-dash__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 3.25rem;
}

.ind-dash__bars i {
  display: block;
  width: 18%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--vyrox-red), var(--vyrox-mustard));
}

.ind-dash__bars i:nth-child(1) { height: 45%; }
.ind-dash__bars i:nth-child(2) { height: 70%; }
.ind-dash__bars i:nth-child(3) { height: 55%; }
.ind-dash__bars i:nth-child(4) { height: 88%; }

.ind-dash__line {
  height: 3px;
  margin-top: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vyrox-red), var(--vyrox-mustard), rgb(255 255 255 / 20%));
}

.ind-dash__stats {
  padding-top: 0.35rem;
}

.ind-dash__stat strong {
  color: var(--vyrox-white);
}

.ind-dash__stat span {
  color: rgb(255 255 255 / 55%);
}

.ind-strip {
  padding: 2.25rem 0;
  border-block: 1px solid var(--vyrox-border);
  background: var(--vyrox-off-white);
}

.ind-strip .ind-kicker {
  text-align: center;
  margin-bottom: 1rem;
}

.ind-strip__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.ind-strip__tags span {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--vyrox-charcoal);
  background: var(--vyrox-white);
  border: 1px solid var(--vyrox-border);
  border-radius: 999px;
}

.ind-why {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.ind-why__item {
  padding-top: 0.25rem;
}

.ind-why__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--vyrox-red);
  background: rgb(192 57 43 / 8%);
  border-radius: 10px;
}

.ind-why__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ind-why__item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.ind-why__item p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--vyrox-grey);
}

.ind-page-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(4.5rem, 10vw, 6rem) 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgb(192 57 43 / 18%) 0%, transparent 55%),
    #141414;
}

.ind-page-cta h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: var(--vyrox-white);
  max-width: none;
  margin: 0 0 0.85rem;
}

.ind-page-cta p {
  color: rgb(255 255 255 / 70%);
  max-width: none;
  margin: 0 0 1.75rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .v3-grid-2,
  .v3-grid-3,
  .v3-contact {
    grid-template-columns: 1fr;
  }

  .v3-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .v3-form,
  .v3-info-card {
    height: auto;
  }

  .ind-overview,
  .ind-platform,
  .ind-use,
  .ind-use--reverse {
    grid-template-columns: 1fr;
  }

  .ind-use--reverse .ind-use__media {
    order: 0;
  }

  .ind-sols,
  .ind-benefits,
  .ind-why {
    grid-template-columns: 1fr 1fr;
  }

  .ind-hero {
    min-height: min(78vh, 620px);
  }

  .ind-chip-card {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: 1rem;
    animation: none;
  }
}

@media (max-width: 640px) {
  .ind-sols,
  .ind-benefits,
  .ind-why,
  .ind-platform__stats,
  .ind-dash__stats {
    grid-template-columns: 1fr;
  }

  /* Keep one continuous chain: vertical stack with visible connectors */
  .ind-eco {
    overflow: visible;
    padding-inline: 0.5rem;
  }

  .ind-eco__track {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 17.5rem);
    gap: 0;
  }

  .ind-eco__node {
    flex: none;
    width: 100%;
    max-width: none;
    padding: 0.85rem 1rem;
  }

  .ind-eco__node strong {
    font-size: 0.88rem;
  }

  .ind-eco__node--core {
    flex: none;
    max-width: none;
    padding: 1.1rem 1.15rem;
    transform: scale(1.03);
  }

  .ind-eco__node--core span {
    font-size: 0.62rem;
  }

  .ind-eco__node--core strong {
    font-size: 0.95rem;
  }

  .ind-eco__line {
    flex: 0 0 1.15rem;
    width: 2px;
    height: 1.15rem;
    align-self: center;
    background: linear-gradient(180deg, transparent, var(--vyrox-red), transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ind-hero__media,
  .ind-chip-card,
  .ind-eco__node--core {
    animation: none;
    transform: none;
  }
}

/* ═══ Solutions catalogue ═══ */
.sol-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.75rem;
  background:
    radial-gradient(800px 220px at 8% 0%, rgb(212 160 23 / 8%), transparent 70%),
    var(--vyrox-off-white);
  border-bottom: 1px solid var(--vyrox-border);
}

.sol-hero__inner {
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.sol-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0.9rem;
  max-width: none;
}

.sol-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--vyrox-grey);
  max-width: none;
}

.sol-jump {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vyrox-border);
}

.sol-jump__inner {
  display: flex;
  gap: 0.4rem;
  padding: 0.7rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.sol-jump__inner::-webkit-scrollbar {
  display: none;
}

.sol-jump__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  padding: 0.38rem 0.8rem;
  border: 1px solid var(--vyrox-border);
  border-radius: 999px;
  background: var(--vyrox-white);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--vyrox-charcoal);
  white-space: nowrap;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

.sol-jump__num {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--vyrox-red);
}

.sol-jump__link:hover {
  border-color: rgb(192 57 43 / 28%);
  color: var(--vyrox-red);
  background: rgb(192 57 43 / 4%);
}

.sol-catalog {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.sol-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
  scroll-margin-top: calc(var(--header-h) + 4.25rem);
}

.sol-card + .sol-card {
  margin-top: clamp(2.75rem, 6vw, 4.5rem);
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
  border-top: 1px solid var(--vyrox-border);
}

.sol-card--flip .sol-card__media {
  order: 2;
}

.sol-card__media {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--vyrox-border);
}

.sol-card__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.sol-card:hover .sol-card__media img {
  transform: scale(1.04);
}

.sol-card__num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 92%);
  color: var(--vyrox-red);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}

.sol-card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vyrox-red);
  margin-bottom: 0.55rem;
}

.sol-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

.sol-card__summary {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--vyrox-grey);
  margin-bottom: 1.1rem;
}

.sol-card__features {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
}

.sol-card__features li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--vyrox-grey);
}

.sol-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--vyrox-mustard);
}

.sol-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sol-cta {
  padding: clamp(3.25rem, 7vw, 4.75rem) 0;
  background: linear-gradient(160deg, var(--vyrox-charcoal) 0%, #1a1a1a 100%);
  text-align: center;
  color: var(--vyrox-white);
}

.sol-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 36rem;
}

.sol-cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0;
}

.sol-cta__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 68%);
  margin: 0 0 0.5rem;
}

@media (max-width: 991px) {
  .sol-card {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .sol-card--flip .sol-card__media,
  .sol-card__media {
    order: -1;
  }

  .sol-card__media img {
    aspect-ratio: 16 / 9;
    max-height: 280px;
  }
}
