:root {
  --black: #070707;
  --dark: #111111;
  --dark-2: #191919;
  --gold: #d9a85e;
  --gold-2: #f1c47c;
  --paper: #f5f1ea;
  --paper-2: #fffaf1;
  --text: #ffffff;
  --muted: #b9b9b9;
  --ink: #1b1b1b;
  --line: rgba(217, 168, 94, .28);
  --container: 1400px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.55
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-block;
  border: 2px solid var(--gold);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  position: relative
}

.brand-mark:after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--gold);
  clip-path: inherit
}

.brand-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .07em
}

.custom-logo {
  max-height: 44px;
  width: auto
}

.main-nav {
  margin-left: auto
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0
}

.menu a {
  font-size: 14px;
  font-weight: 600;
  color: #f3f3f3;
  opacity: .88
}

.menu a:hover {
  color: var(--gold)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px
}

.iride-language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700
}

.iride-language-switcher a,
.iride-language-switcher span {
  opacity: .8
}

.iride-language-switcher .is-active {
  color: var(--gold);
  opacity: 1
}

.iride-lang-sep {
  opacity: .35 !important
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #15100a;
  box-shadow: 0 8px 28px rgba(217, 168, 94, .18)
}

.btn-gold:hover {
  transform: translateY(-1px);
  filter: brightness(1.04)
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(0, 0, 0, .18)
}

.btn-outline:hover {
  background: rgba(217, 168, 94, .12)
}

.btn-small {
  padding: 10px 16px;
  font-size: 13px
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 32px
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 7px 0
}

.hero {
  min-height: 700px;
  background: #111;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  gap: 42px;
  align-items: center;
  padding: 116px 0 90px
}

.hero h1 {
  font-size: clamp(58px, 7vw, 108px);
  line-height: .95;
  margin: 0 0 18px;
  letter-spacing: .08em;
  font-weight: 500
}

.hero h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.5;
  margin: 0 0 18px;
  max-width: 530px
}

.hero p {
  color: #ededed;
  max-width: 560px;
  font-size: 17px
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 14px
}

.play-card {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: rgba(0, 0, 0, .22);
  backdrop-filter: blur(6px)
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 26px solid #fff;
  margin-left: 7px
}

.hero-strip {
  background: rgba(8, 8, 8, .82);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 26px 0
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f4f4f4;
  font-weight: 700
}

.icon,
.line-icon {
  display: inline-block;
  color: var(--gold);
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 10px;
  position: relative;
  flex: 0 0 auto
}

.icon:after,
.line-icon:after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid currentColor;
  border-radius: 50%
}

.section {
  position: relative
}

.section-spacious {
  padding: 96px 0
}

.compact-top {
  padding-top: 36px
}

.section-light {
  background: linear-gradient(135deg, var(--paper-2), var(--paper));
  color: var(--ink)
}

.section-light:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(0, 0, 0, .035), transparent 28%), linear-gradient(135deg, transparent, rgba(217, 168, 94, .05));
  pointer-events: none
}

.section>.container {
  position: relative;
  z-index: 1
}

.section-dark {
  background: radial-gradient(circle at 50% 0, rgba(217, 168, 94, .08), transparent 28%), linear-gradient(135deg, #0a0a0a, #171717);
  color: #fff;
  border-top: 1px solid rgba(217, 168, 94, .22);
  border-bottom: 1px solid rgba(217, 168, 94, .22)
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px
}

.align-center {
  align-items: center
}

.section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 28px
}

.richtext p {
  margin: 0 0 18px;
  color: inherit
}

.section-light .richtext {
  color: #3a3a3a;
  font-size: 17px
}

.image-panel {
  border-radius: 10px;
  overflow: hidden;
  background: #151515;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
  border: 1px solid rgba(0, 0, 0, .08);
  min-height: 240px;
  display: grid;
  place-items: center
}

.image-panel:empty:before,
.image-panel:not(:has(img)):before {
  content: "Upload image from ACF";
  color: #999;
  padding: 80px 20px
}

.image-panel.small {
  max-width: 500px
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px
}

.section-heading.centered {
  text-align: center
}

.section-heading p {
  color: var(--muted);
  margin: 0
}

.section-light .section-heading p {
  color: #666
}

.cards {
  display: grid;
  gap: 24px
}

.six-cards {
  grid-template-columns: repeat(6, 1fr)
}

.feature-card {
  padding: 34px 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  min-height: 230px
}

.feature-card h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 20px 0 10px
}

.feature-card p {
  font-size: 14px;
  color: #c9c9c9;
  margin: 0
}

.feature-card .line-icon {
  margin: auto
}

.comparison-note {
  text-align: center;
  margin: 38px 0 0;
  color: #d8d8d8
}

.software-row {
  align-items: center
}

.integration-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px
}

.integration-badges span {
  padding: 12px 20px;
  border: 1px solid rgba(0, 0, 0, .22);
  background: #fff;
  border-radius: 4px;
  font-weight: 900;
  letter-spacing: .04em
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: steps
}

.step {
  text-align: center;
  padding: 34px 24px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  font-weight: 900
}

.step h3 {
  font-size: 18px;
  margin: 0 0 10px
}

.step p {
  font-size: 14px;
  color: #555;
  margin: 0
}

.features-apps {
  align-items: start
}

.feature-table {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, .2)
}

.feature-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(217, 168, 94, .18)
}

.feature-row:last-child {
  border-bottom: 0
}

.feature-row strong {
  color: #f3d3a4
}

.feature-row span {
  color: #d6d6d6
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.app-card {
  min-height: 150px;
  border-radius: 8px;
  background: linear-gradient(135deg, #272727, #111);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(217, 168, 94, .25);
  overflow: hidden
}

.app-card h3 {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 10px #000
}

.company-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 26px
}

.company-cards article {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  padding: 28px;
  border-radius: 8px
}

.company-cards h3 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: .12em;
  text-transform: uppercase
}

.company-cards p {
  margin: 0;
  color: #444
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.client-logo {
  min-height: 82px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 6px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800
}

.client-logo img {
  max-width: 70%;
  max-height: 54px;
  object-fit: contain
}

.customers-note {
  margin-top: 24px;
  text-align: center;
  color: #fff
}

.cta-band {
  padding: 56px 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, .92), rgba(7, 7, 7, .84)), radial-gradient(circle at 20% 0, rgba(217, 168, 94, .14), transparent 32%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center
}

.cta-band h2 {
  margin: 0 0 8px;
  color: #fff
}

.cta-band p {
  margin: 0;
  color: #d0d0d0
}

.contact-section {
  background: radial-gradient(circle at 20% 0, rgba(217, 168, 94, .09), transparent 28%), #0c0c0c;
  color: #fff
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px
}

.contact-details {
  color: #d8d8d8
}

.form-card {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 10px;
  padding: 32px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.form-grid label,
.privacy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #f1f1f1;
  font-weight: 700
}

.form-grid .full {
  grid-column: 1/-1
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(0, 0, 0, .28);
  color: #fff;
  padding: 14px;
  border-radius: 3px
}

textarea {
  min-height: 120px;
  resize: vertical
}

.privacy {
  display: block;
  margin: 18px 0;
  color: #d4d4d4;
  font-weight: 400
}

.privacy input {
  width: auto;
  margin-right: 8px
}

.site-footer {
  padding: 36px 0;
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #c8c8c8
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr 1fr;
  gap: 28px;
  align-items: start
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-links a {
  color: #fff
}

.footer-copy {
  text-align: right
}

.default-page {
  color: #fff
}

.default-page h1 {
  font-size: 42px
}

.default-page a {
  color: var(--gold)
}

@media(max-width:1100px) {
  .main-nav {
    display: none
  }

  .nav-toggle {
    display: block
  }

  .six-cards {
    grid-template-columns: repeat(3, 1fr)
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .hero-grid {
    grid-template-columns: 1fr
  }

  .play-card {
    justify-self: start
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .app-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:720px) {
  .container {
    width: min(100% - 28px, var(--container))
  }

  .header-inner {
    height: 64px;
    gap: 14px
  }

  .site-header .header-actions {
    margin-left: auto;
    flex: 0 0 auto
  }

  .site-header .nav-toggle {
    margin-left: auto;
    flex: 0 0 32px
  }

  .site-header .brand {
    min-width: 0;
    max-width: 215px
  }

  .site-header .custom-logo {
    max-height: 30px;
    max-width: 205px
  }

  .brand-text {
    font-size: 18px
  }

  .btn-small,
  .iride-language-switcher {
    display: none
  }

  .hero {
    min-height: auto
  }

  .hero-grid {
    padding: 78px 0 64px
  }

  .hero h1 {
    font-size: 48px
  }

  .strip-grid,
  .six-cards,
  .steps,
  .app-grid,
  .company-cards,
  .logo-grid,
  .form-grid,
  .footer-grid,
  .cta-grid {
    grid-template-columns: 1fr
  }

  .section-spacious {
    padding: 68px 0
  }

  .feature-row {
    grid-template-columns: 1fr
  }

  .footer-copy {
    text-align: left
  }
}

.hero-media {
  justify-self: center;
  width: min(620px, 100%);
  aspect-ratio: 16/9;
  border: 1px solid rgba(217, 168, 94, .34);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, .35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35)
}

.hero-media iframe,
.hero-media video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover
}

.hero-media .play-card {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0
}

@media(max-width:1100px) {
  .hero-media {
    justify-self: start
  }
}

.icon.has-image {
  display: grid;
  place-items: center;
  background: rgba(217, 168, 94, .08)
}

.icon.has-image:after {
  display: none
}

.icon.has-image img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: none
}

.icon.has-image img[src$=".svg"] {
  width: 24px;
  height: 24px
}

.line-icon.has-image {
  display: grid;
  place-items: center;
  background: rgba(217, 168, 94, .08)
}

.line-icon.has-image:after {
  display: none
}

.line-icon.has-image img {
  width: 23px;
  height: 23px;
  object-fit: contain
}

.line-icon.has-image img[src$=".svg"] {
  width: 25px;
  height: 25px
}


/* How it works: icon-led process cards */
.steps {
  position: relative;
  align-items: stretch
}

.steps:before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 55px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 168, 94, .55), transparent);
  pointer-events: none
}

.step {
  position: relative;
  text-align: left;
  padding: 30px 24px 28px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, .68));
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 20, 20, .08);
  overflow: hidden
}

.step:after {
  content: "";
  position: absolute;
  inset: auto -30px -52px auto;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(217, 168, 94, .24);
  transform: rotate(45deg);
  pointer-events: none
}

.step-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 0 22px;
  border-radius: 8px;
  background: #111;
  border: 1px solid rgba(217, 168, 94, .36);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14)
}

.step-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #14100a;
  font-size: 13px;
  font-weight: 900
}

.step h3 {
  font-size: 19px;
  margin: 0 0 12px
}

.step p {
  font-size: 14px;
  line-height: 1.55;
  color: #555;
  margin: 0
}

@media(max-width:720px) {
  .steps:before {
    display: none
  }

  .step {
    padding: 26px 22px
  }

  .step-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px
  }

  .step-icon img {
    width: 38px;
    height: 38px
  }
}


/* Applications: representative image cards */
.app-card {
  position: relative;
  isolation: isolate;
  min-height: 190px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease
}

.app-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .3));
  z-index: -1
}

.app-card h3 {
  max-width: 92%;
  font-size: 17px;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .72)
}

.app-card:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 196, 124, .62);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .32)
}

.app-card:nth-child(2),
.app-card:nth-child(4),
.app-card:nth-child(6) {
  background-position: center 58%
}

@media(max-width:720px) {
  .app-card {
    min-height: 180px
  }
}


/* Technical features: contextual row icons */
.feature-row {
  grid-template-columns: 42px 1.2fr 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 20px
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(217, 168, 94, .34);
  border-radius: 8px;
  background: rgba(217, 168, 94, .08);
  flex: 0 0 auto
}

.feature-icon img {
  width: 21px;
  height: 21px;
  object-fit: contain
}

@media(max-width:720px) {
  .feature-row {
    grid-template-columns: 38px 1fr;
    gap: 8px 14px
  }

  .feature-icon {
    grid-row: 1 / span 2;
    width: 32px;
    height: 32px
  }

  .feature-row span:not(.feature-icon) {
    grid-column: 2
  }

  .feature-row strong {
    grid-column: 2
  }
}


/* Customers: white brand logos on dark panel */
.customers-panel {
  padding: 34px 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #111, #1b1b1b);
  border: 1px solid rgba(217, 168, 94, .24);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .16)
}

.section-light .customers-panel h2 {
  color: #fff
}

.customers-panel .logo-grid {
  gap: 14px
}

.customers-panel .client-logo {
  min-height: 92px;
  background: rgba(255, 255, 255, .035);
  border-color: rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .68)
}

.customers-panel .client-logo img {
  max-width: 74%;
  max-height: 58px;
  filter: brightness(0) invert(1) grayscale(1);
  opacity: .92
}

.customers-panel .customers-note {
  color: rgba(255, 255, 255, .66)
}

.customers-panel p {
  color: #fff;
}

@media(max-width:720px) {
  .customers-panel {
    padding: 26px 20px
  }

  .customers-panel .client-logo {
    min-height: 84px
  }
}

/* Contact Form 7 integration */
.wpcf7 .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px
}

.wpcf7 .form-grid label {
  min-width: 0
}

.wpcf7 .form-grid label.full {
  grid-column: 1/-1
}

.wpcf7 .form-grid>p {
  display: contents
}

.wpcf7 .form-grid br {
  display: none
}

.wpcf7 .form-grid .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px
}

.wpcf7 .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 18px 0;
  color: #d4d4d4;
  font-size: 13px;
  line-height: 1.45
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  flex: 0 0 auto
}

.wpcf7 .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 4px;
  color: #fff
}

.wpcf7-spinner {
  vertical-align: middle
}

@media(max-width:720px) {
  .wpcf7 .form-grid {
    grid-template-columns: 1fr
  }
}


/* Company cards with logos */
.company-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit
}

.company-logo {
  display: flex;
  align-items: center;
  min-height: 74px;
  margin-bottom: 20px
}

.company-logo img {
  width: auto;
  max-width: 250px;
  max-height: 74px;
  object-fit: contain
}

.company-cards article {
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease
}

.company-cards article:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 168, 94, .42);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .14)
}

.company-cards article:hover h3 {
  color: #8d6429
}

.company-cards p {
  line-height: 1.5
}

.company-support-band {
  margin-top: 38px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .44));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center
}

.support-band-copy .eyebrow {
  margin-bottom: 10px;
  color: #8d6429
}

.support-band-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
  color: var(--ink)
}

.support-band-copy p:not(.eyebrow) {
  margin: 0;
  color: #444;
  line-height: 1.6
}

.support-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px
}

.support-feature {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 850;
  color: #252525;
  line-height: 1.25
}

.support-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(217, 168, 94, .09);
  flex: 0 0 auto
}

.support-icon:before {
  content: "";
  width: 27px;
  height: 27px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain
}

.support-icon-world:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%238d6429%27 stroke-width=%271.8%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%2710%27/%3E%3Cpath d=%27M2 12h20M12 2a15.3 15.3 0 0 1 0 20M12 2a15.3 15.3 0 0 0 0 20%27/%3E%3C/svg%3E")
}

.support-icon-tech:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%238d6429%27 stroke-width=%271.8%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 8.5V7a5 5 0 0 1 10 0v1.5M5.5 8.5h13%27/%3E%3Cpath d=%27M8 11a4 4 0 0 0 8 0M5 21a7 7 0 0 1 10.5-6.1%27/%3E%3Cpath d=%27M16.5 19.5l4-4M18.2 14.2l1.6 1.6M15.2 17.2l1.6 1.6M20.5 13.5l-1.3-1.3 1.2-1.2 1.6 1.6-1.5.9z%27/%3E%3C/svg%3E")
}

.support-icon-assist:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%238d6429%27 stroke-width=%271.8%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M4 14v-2a8 8 0 0 1 16 0v2%27/%3E%3Cpath d=%27M4 14a2 2 0 0 0 2 2h1v-6H6a2 2 0 0 0-2 2v2zM20 14a2 2 0 0 1-2 2h-1v-6h1a2 2 0 0 1 2 2v2zM18 16c0 3-2 5-6 5h-2%27/%3E%3Cpath d=%27M9 21h2%27/%3E%3C/svg%3E")
}

.support-icon-training:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%238d6429%27 stroke-width=%271.8%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Crect x=%274%27 y=%274%27 width=%2716%27 height=%2718%27 rx=%272%27/%3E%3Cpath d=%27M9 4a3 3 0 0 1 6 0M9 4h6M8 13l2.5 2.5L16 10M8 18h8%27/%3E%3C/svg%3E")
}

@media(max-width:900px) {
  .company-support-band {
    grid-template-columns: 1fr
  }

  .support-feature-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:720px) {
  .company-logo {
    min-height: 58px
  }

  .company-logo img {
    max-width: 210px;
    max-height: 58px
  }

  .section-light .two-col {
    gap: 34px
  }

  .company-cards article {
    padding: 22px
  }

  .company-support-band {
    margin-top: 30px;
    padding: 22px 18px 20px;
    border-left: 1px solid rgba(0, 0, 0, .12);
    border-top: 4px solid var(--gold);
    grid-template-columns: 1fr;
    gap: 22px
  }

  .support-band-copy .eyebrow {
    font-size: 11px;
    letter-spacing: .13em;
    margin-bottom: 8px
  }

  .support-band-copy h3 {
    font-size: 24px;
    line-height: 1.12;
    margin-bottom: 10px
  }

  .support-band-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.55
  }

  .support-feature-grid {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .support-feature {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 12px 13px;
    font-size: 13.5px;
    line-height: 1.22
  }

  .support-icon {
    width: 40px;
    height: 40px
  }

  .support-icon:before {
    width: 23px;
    height: 23px
  }
}


/* Software carousel */
.software-carousel {
  display: grid;
  gap: 14px;
  max-width: 560px;
  padding: 10px;
  border-radius: 10px;
  background: #121212;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22)
}

.software-carousel-stage {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 8px;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, .1)
}

.software-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  cursor: zoom-in;
  transition: opacity .24s ease, visibility .24s ease
}

.software-carousel-slide.is-active {
  opacity: 1;
  visibility: visible
}

.software-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.software-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(0, 0, 0, .62);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease
}

.software-carousel-arrow:hover {
  background: rgba(217, 168, 94, .9);
  border-color: rgba(217, 168, 94, .95);
  transform: translateY(-1px)
}

.software-carousel-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff
}

.software-carousel-arrow.is-prev {
  left: 12px
}

.software-carousel-arrow.is-next {
  right: 12px
}

.software-carousel-arrow.is-prev:before {
  transform: translate(-35%, -50%) rotate(-135deg)
}

.software-carousel-arrow.is-next:before {
  transform: translate(-65%, -50%) rotate(45deg)
}

.software-carousel-thumbs {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 2px 1px 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(217, 168, 94, .55) rgba(255, 255, 255, .08)
}

.software-carousel-thumb {
  width: 74px;
  aspect-ratio: 1.2/1;
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: #1b1b1b;
  cursor: pointer;
  opacity: .68;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease
}

.software-carousel-thumb.is-active {
  opacity: 1;
  border-color: var(--gold)
}

.software-carousel-thumb:hover {
  opacity: 1;
  transform: translateY(-1px)
}

.software-carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.software-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, .86)
}

.software-lightbox[hidden] {
  display: none
}

.software-lightbox img {
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .55)
}

.software-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  cursor: pointer
}

.software-lightbox-close:before,
.software-lightbox-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff
}

.software-lightbox-close:before {
  transform: translate(-50%, -50%) rotate(45deg)
}

.software-lightbox-close:after {
  transform: translate(-50%, -50%) rotate(-45deg)
}

@media(max-width:960px) {
  .software-carousel {
    max-width: none
  }

  .software-carousel-stage {
    aspect-ratio: 16/11
  }
}

@media(max-width:720px) {
  .software-carousel {
    padding: 8px
  }

  .software-carousel-arrow {
    width: 38px;
    height: 38px;
    margin-top: -19px
  }

  .software-carousel-thumb {
    width: 66px
  }

  .software-lightbox {
    padding: 16px
  }
}



/* Plant dimensions band */
.dimensions-band {
  padding: 74px 0;
  background: #0d0d0d;
  color: #fff;
  border-top: 1px solid rgba(217, 168, 94, .2);
  border-bottom: 1px solid rgba(217, 168, 94, .2)
}

.dimensions-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 54px;
  align-items: center
}

.dimensions-copy h2 {
  max-width: 560px;
  color: #fff
}

.dimensions-copy .richtext {
  max-width: 560px;
  color: #d7d7d7;
  font-size: 17px
}

.dimensions-image {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(217, 168, 94, .28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
  overflow: hidden
}

.dimensions-image:empty:before,
.dimensions-image:not(:has(img)):before {
  content: "Carica immagine misure impianto da ACF";
  color: rgba(255, 255, 255, .52);
  padding: 70px 20px;
  text-align: center
}

.dimensions-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain
}

@media(max-width:1100px) {
  .dimensions-grid {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .dimensions-image {
    min-height: 220px
  }
}

@media(max-width:720px) {
  .dimensions-band {
    padding: 58px 0
  }

  .dimensions-image {
    padding: 12px
  }
}


/* Technical specifications */
.specs-section {
  border-top: 1px solid rgba(217, 168, 94, .18)
}

.specs-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 58px;
  align-items: start
}

.specs-copy {
  position: sticky;
  top: 112px
}

.specs-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #d5d5d5;
  font-size: 16px;
  line-height: 1.65
}

.specs-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(217, 168, 94, .26);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .22)
}

.spec-row {
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid rgba(217, 168, 94, .16);
  border-bottom: 1px solid rgba(217, 168, 94, .16);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015))
}

.spec-row:nth-child(2n) {
  border-right: 0
}

.spec-row:nth-last-child(-n+2) {
  border-bottom: 0
}

.spec-row strong {
  display: block;
  margin-bottom: 10px;
  color: #f3d3a4;
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .08em
}

.spec-row span {
  display: block;
  color: #e7e7e7;
  font-size: 15px;
  line-height: 1.5
}

.spec-row span p {
  margin: 0
}

@media(max-width:1100px) {
  .specs-grid {
    grid-template-columns: 1fr
  }

  .specs-copy {
    position: static
  }

  .specs-table {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media(max-width:720px) {
  .specs-grid {
    gap: 30px
  }

  .specs-table {
    grid-template-columns: 1fr
  }

  .spec-row {
    min-height: 0;
    border-right: 0
  }

  .spec-row:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(217, 168, 94, .16)
  }

  .spec-row:last-child {
    border-bottom: 0
  }
}


/* Subtle motion */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .68s ease, transform .68s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0)
}

.hero {
  animation: heroBreath 14s ease-in-out infinite alternate
}

.hero-media,
.image-panel,
.software-carousel,
.dimensions-image,
.customers-panel,
.form-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.hero-media:hover,
.image-panel:hover,
.software-carousel:hover,
.dimensions-image:hover,
.customers-panel:hover,
.form-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 76px rgba(0, 0, 0, .3);
  border-color: rgba(217, 168, 94, .42)
}

.strip-item,
.feature-card,
.step,
.spec-row,
.feature-row,
.client-logo {
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease
}

.strip-item:hover,
.feature-card:hover,
.step:hover,
.spec-row:hover,
.feature-row:hover,
.client-logo:hover {
  transform: translateY(-2px)
}

.feature-card:hover,
.step:hover,
.spec-row:hover,
.feature-row:hover {
  border-color: rgba(217, 168, 94, .44)
}

.btn {
  position: relative;
  overflow: hidden
}

.btn:after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -70%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  transform: skewX(-22deg);
  transition: left .62s ease;
  pointer-events: none
}

.btn:hover:after {
  left: 128%
}

@keyframes heroBreath {
  from {
    background-position: center center
  }

  to {
    background-position: center 42%
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *:before,
  *:after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important
  }

  .btn:after {
    display: none
  }
}


/* Mobile navigation */
@media(max-width:1100px) {
  .site-header {
    position: sticky
  }

  .header-inner {
    position: relative
  }

  .main-nav {
    display: block;
    position: absolute;
    left: 22px;
    right: 22px;
    top: calc(100% + 1px);
    margin-left: 0;
    padding: 14px;
    background: rgba(7, 7, 7, .97);
    border: 1px solid rgba(217, 168, 94, .24);
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, .38);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto
  }

  .main-nav .menu {
    display: grid;
    gap: 4px
  }

  .main-nav .menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 15px
  }

  .main-nav .menu a:hover {
    background: rgba(217, 168, 94, .12)
  }

  .nav-toggle {
    position: relative;
    height: 32px;
    cursor: pointer
  }

  .nav-toggle span {
    transition: transform .2s ease, opacity .2s ease
  }

  .nav-toggle.is-active span:first-child {
    transform: translateY(9px) rotate(45deg)
  }

  .nav-toggle.is-active span:last-child {
    transform: translateY(0) rotate(-45deg)
  }
}

@media(max-width:720px) {
  .main-nav {
    left: 14px;
    right: 14px
  }

  .main-nav .menu a {
    padding: 12px
  }
}


/* Header fit refinements */
@media(min-width:1101px) {
  .menu {
    gap: 20px
  }

  .menu a,
  .btn-small {
    white-space: nowrap
  }

  .main-nav {
    min-width: 0
  }

  .header-actions {
    flex: 0 0 auto
  }
}

.mobile-language-switcher {
  display: none;
}

@media(max-width:1100px) {
  .mobile-language-switcher {
    display: flex;
    justify-content: center;
    padding: 12px 14px 2px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .mobile-language-switcher .iride-language-switcher {
    display: flex;
  }

  .header-actions > .iride-language-switcher {
    display: none;
  }
}
