:root {
  --bgmain: #ffffff;
  --bgalt: #e6e6e6;
  --bgoff: #fafafd;
  --bgusecase: #e7e7f5;
  --brand: #067ccc;
  --brand2: #333333;
  --brand3: #e8ebef;
  --radius: 9999px;
  --container: 1600px;
  --gutter: 60px;
  --sectionpad: 100px;
}

html, body {
  height: auto;
  overscroll-behavior: none;
  overflow-x: hidden; 
}

body {
  margin: 0;
  box-sizing: border-box;
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--brand2);
  background: var(--bgmain);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.has-scroll-smooth body { overflow: hidden; }
html:not(.has-scroll-smooth) body { overflow: auto; }
html.has-scroll-smooth [data-scroll-container],
html:not(.has-scroll-smooth) [data-scroll-container]{
  min-height: 100%;
  position: relative;
  will-change: transform;
}

.container{
  max-width: var(--container);
  padding-inline: var(--gutter);
  margin-inline: auto;
  box-sizing: border-box;
}

button {
  font: inherit;
}

.btn {
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: auto;
  height: 50px;
  font-size: 16px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  will-change: transform;
}

::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


/* ===== Header ===== */
.header{
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 1000;
  height: 40px;
  background: transparent;
  transition:
    background-color .3s ease,
    backdrop-filter .3s ease,
    padding-top .3s ease,
    linear-gradient .3s ease,
    box-shadow .3s ease,
    padding-bottom .3s ease;
}

.header.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgba(255,255,255,0.3);
  backdrop-filter: saturate(120%) blur(6px);
  position: fixed;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.scrolled::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.2),
    rgba(0,0,0,0.2)
  );
  pointer-events: none;
}

.header-row{
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.nav-left, .nav-right{
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-right{
  justify-content: flex-end;
}

.nav a{
  font-size: 17px;
  font-weight: 600;
  color: var(--brand2);
  text-decoration: none;
  transition: color .3s ease, filter .3s ease;
}

.nav a:hover{ 
  color: var(--brand);
}

.nav a.active {
  color: var(--brand);
}

.logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 
    filter .3s ease,
    drop-shadow .3s ease;
}

.logo-img{
  height: 36px;
  width: auto;
  display: block;
}

.logo:hover .logo-img{
  filter: drop-shadow(0 0 1px var(--brand));
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--brand2);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
}

.header.scrolled .hamburger span { background-color: var(--brand2); }

/* Dropdown */
.nav .has-dropdown {
  position: relative;
}

.nav .has-dropdown > .dropdown {
  position: absolute;
  top: 45%;
  left: 0;
  display: none;
  flex-direction: column;
  min-width: 380px;
  padding: 10px 10px;
  border-radius: 6px;
  background: var(--bgmain);
  box-shadow: 0 6px 10px rgba(0,0,0,0.16);
  z-index: 1000;
  border: 1px solid color-mix(in srgb, var(--brand2) 12%, #fff);
}

.nav .has-dropdown > .dropdown li { list-style: none; }

.nav .has-dropdown > .dropdown li a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 16px;
  color: var(--brand2);
  transition: color .3s ease, background-color .2s ease;
}

.nav .has-dropdown > .dropdown li a:hover {
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 8%, #fff);
}

.nav .has-dropdown > .dropdown li a.active {
  color: var(--brand);
}

@media (hover: hover) and (pointer: fine) {
  .nav .has-dropdown:hover > .dropdown { display: flex; }
}


/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100dvh;
  width: 100%;
  display: grid;
  align-items: center;
  background-color: var(--bgmain);
  overflow: clip;
}

.hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg__img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transform-origin: center center;
  max-width: auto;
  max-height: 1080px;
  object-fit: contain;
}

.layer-1{
  z-index: 1;
  opacity: 0.3;
  will-change: transform, opacity;
  animation: bgPulse 8s ease-in-out infinite;
}

.layer-2{
  z-index: 2;
}

.hero-content{
  position: relative;
  z-index: 3; 
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.hero-lead{
  max-width: 600px;
}

.hero-head{
  margin: 0 0 40px 0;
  font-weight: 800;
  line-height: 1.2;
  font-size: 44px;
  color: var(--brand2);
}

.hero-lead span{ 
  display: inline-block; 
  opacity: 0; 
}
.line1{ animation: slideInUp .6s ease-out forwards; }
.line2{ animation: slideInUp .6s ease-out .12s forwards; }

.hero-p{
  margin: 0 0 60px 0;
  color: var(--brand2);
  font-size: 17px;
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp .7s ease-out .24s forwards;
}

.btn-hero{
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn{
  display: inline-flex;
}

.btn-primary{
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover{
  background: #155dbb;
  box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}

.btn-ghost{
  background: var(--brand2);
  color: #fff;
}

.btn-ghost:hover{
  background: #505050;
  box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}

.btn-anim-1, .btn-anim-2{
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp .7s ease-out forwards;
}

.btn-anim-1{ animation-delay: .36s; }
.btn-anim-2{ animation-delay: .46s; }

.btn:focus-visible{
  outline: 2px solid color-mix(in srgb, var(--brand) 60%, white);
  outline-offset: 2px;
}


/* ===== Services ===== */
.services{
  position: relative;
  background: var(--bgoff);
  min-height: 100dvh;
  padding-inline: var(--gutter);
}

#services-2 {
  background: var(--bgmain);
}

#services-1::before,
#services-1::after,
#services-2::after,
#services-3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  pointer-events: none;
}

#services-1::before {
  top: 0;
  background: linear-gradient(
    to top,
    rgba(255,255,255,0.2),
    rgba(0,0,0,0.2)
  );
}

#services-1::after,
#services-2::after,
#services-3::after {
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.2),
    rgba(0,0,0,0.2)
  );
}

.services-head{
  padding-top: var(--sectionpad);
  margin: 0 var(--gutter) 20px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand2);
}

.services_grid{
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px 100px 20px;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 100px;
  align-items: center;
  z-index: 1;
}

#services-2 .services_grid {
  grid-template-columns: 1fr 40%;
}

.services_art{
  position: relative;
  height: auto;
  width: 100%;
}

.art-stack{
  position: absolute;
  inset: 0;
}

.art-img,
.layer-1-wrap{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transform-origin: center center;
}

.art-img{
  width: auto;
  max-height: 500px;
  object-fit: contain;
  pointer-events: none;
}

.layer-1-wrap{
  animation: slowSpin 60s linear infinite;
  will-change: transform;
}

.XR-layer-1 {
  opacity: 0.1;
  animation: bgPulseServ 8s ease-in-out infinite;
  will-change: transform, opacity;
}

.XR-layer-2{
  max-height: 360px;
  z-index: 2;
}

.services_card{
  position: relative;
  border-radius: 50px;
  padding: 20px 40px 40px;
  color: var(--brand2);
  background: var(--bgmain);
  overflow: clip;
  box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.2);
}

#services_card-2 {
  background: var(--bgoff);
}

.card-title{
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
}

.card-copy{
  margin: 20px 0 30px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--brand2) 80%, #000);
}

.card-cta{
  display:flex;
  gap: 14px;
}

.card-cta .btn {
  background: var(--brand2);
}

.card-cta .btn:hover {
  background: #505050;
  box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}

.sim-roi{
  display: grid;
  max-width: var(--container);
  grid-template-columns: repeat(3, 1fr);
  gap: 200px;
  justify-content: center;
  align-items: start;
  margin: 0 auto 0;
  text-align: center;
}

.sim-roi__block{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 30px;
  gap: 8px;
}

.sim-roi__item{
  margin: 20px 0 0;
  font-size: 48px;
  font-weight: 800;
  color: var(--brand2);
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp .8s ease-out forwards;
}

.sim-roi__desc{
  margin: 0;
  font-size: 16px;
  color: color-mix(in srgb, var(--brand2) 70%, #999);
  line-height: 1.5;
}

.sim-roi__block:nth-child(1) .sim-roi__item{ animation-delay: .10s; }
.sim-roi__block:nth-child(2) .sim-roi__item{ animation-delay: .20s; }
.sim-roi__block:nth-child(3) .sim-roi__item{ animation-delay: .30s; }


/* Floated blue button that straddles the seam (no SVG needed) */
.usecases-floater{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: auto;
}

.usecases-trigger{
  all: unset;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 30px;
  padding: 10px 20px 10px;
  border-radius: 20px 20px 0 0;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 -2px 4px rgba(0,0,0,.2);
  transition: box-shadow .2s ease, background-color .2s ease, color .2s ease;
  will-change: transform;
}
.usecases-trigger:focus-visible{
  outline: 2px solid color-mix(in srgb, #fff 70%, var(--brand));
  outline-offset: 3px;
}

.usecases-trigger:hover{
  background: #155dbb;
  box-shadow: 0 -3px 6px rgba(0,0,0,0.3);
}

.usecases-trigger .uc-icon {
  height: 20px;
  width: auto;
  display: inline-block;
  fill: white;
  flex: 0 0 auto;
}


/* ===== Use Cases section ===== */
/* Closed state: truly invisible (no bg, no padding, no border) */
.usecases{
  position: relative;
  background: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  z-index: 1;
}
.usecases .usecases-panel{
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  padding: 0;
  transition: max-height .45s ease, opacity .35s ease, transform .35s ease, padding .2s ease, background-color .2s ease;
}

/* Open state: section gains bg + spacing; panel reveals */
.usecases-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.2),
    rgba(0,0,0,0.2)
  );
}

.usecases.is-open{
  background: var(--bgusecase);
}
.usecases.is-open .usecases-panel{
  opacity: 1;
  transform: translateY(0);
  padding: 20px 0 60px;
}

.usecases-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usecases-item{
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}
.usecases-item img{
  display: block;
  height: 240px; width: auto; object-fit: contain;
  margin: 40px auto;
  filter: saturate(110%);
}
.usecases-item h4{
  margin: 0 0 10px; font-size: 20px; line-height: 1.4;
  color: var(--brand2); font-weight: 700;
}
.usecases-item p{
  margin: 0; font-size: 16px; line-height: 1.6;
  color: color-mix(in srgb, var(--brand2) 80%, #000);
}

@media (max-width: 560px){
  .usecases-trigger{
    min-width: 200px;
    justify-content: center;
  }

  .usecases-grid{
    grid-template-columns: 1fr;
    gap: 60px;
    justify-content: center;
  }
}


/* === Our Clients === */
.clients-section {
  background-color: var(--bgmain);
  padding: var(--sectionpad);
  text-align: center;
}

.clients-container {
  max-width: var(--container);
  margin: 0 auto;
}

.clients-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand2);
  margin: 0 0 60px;
}

.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.clients-tool {
  position: relative;
  display: inline-block;
}

.clients-tool img {
  display: block;
  max-height: 50px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.clients-tool:hover img,
.clients-tool:focus-visible img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.clients-tool::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(8px);
  background: #111827;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.clients-tool:hover::after,
.clients-tool:focus-visible::after {
  opacity: 1;
}


/* ===== FAQ ===== */
.faq-acc {
  position: relative;
  background: var(--bgoff);
  padding: var(--sectionpad) 0;
}

.faq-acc::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(
    to top,
    rgba(255,255,255,0.2),
    rgba(0,0,0,0.2)
  );
  z-index: 2;
  pointer-events: none;
}

.faq-acc_head{
  max-width: 1480px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand2);
}

.faq-acc_wrap{
  max-width: 1480px;
  margin: 0 auto;
  background: var(--bgmain);
  border: 1px solid color-mix(in srgb, var(--brand2) 12%, #fff);
  border-radius: 8px;
  overflow: hidden;
}

.faq-acc_item{
  position: relative;
}

.faq-acc_item + .faq-acc_item{
  border-top: 1px solid color-mix(in srgb, var(--brand2) 10%, #fff);
}

.faq-acc_item.is-open::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 4px;
  background: var(--brand);
  border-radius: 0 4px 4px 0;
}

.faq-acc_q{
  all: unset;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--bgmain);
  color: var(--brand2);
  padding: 20px 24px;
  cursor: pointer;

  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: color .3s ease, background-color .3s ease, box-shadow .2s ease;
}

.faq-acc_q:hover{ color: var(--brand); }
.faq-acc_q:focus-visible{
  outline: 2px solid color-mix(in srgb, var(--brand) 60%, white);
  outline-offset: 2px;
}

.faq-acc_title{ margin: 0; }

.faq-acc_toggle{
  width: 18px;
  height: 18px;
  position: relative;
  color: currentColor;
  flex: 0 0 18px;
}
.faq-acc_toggle::before,
.faq-acc_toggle::after{
  content:"";
  position:absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform .25s ease;
}
.faq-acc_toggle::after{ transform: translate(-50%, -50%) rotate(90deg); }
.faq-acc_q[aria-expanded="true"] .faq-acc_toggle::after{ transform: translate(-50%, -50%) rotate(0deg); }

.faq-acc_a{
  box-sizing: border-box;
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background: var(--bgmain);
  color: color-mix(in srgb, var(--brand2) 82%, #000);
  line-height: 1.65;

  transition: max-height .35s ease;
}

.faq-acc_item.is-open .faq-acc_a{
  padding: 0 24px 0;
}

@media (prefers-reduced-motion: reduce){
  .faq-acc_a{ transition: none; }
  .faq-acc_q .faq-acc_toggle::after{ transition: none; }
}


/* === Footer === */
.site-footer {
  position: relative;
  background: var(--bgmain);
  color: var(--brand2);
  padding: 60px 30px 3px;
  font-size: 14px;
  z-index: 0;
}

.footer-container {
  position: relative; 
  max-width: 1480px;
  margin: 0 auto;
  z-index: 1; 
}

.footer-bg { display: none; }

.site-footer::before { display: none; }

.site-footer::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.2),
    rgba(0,0,0,0.2)
  );
  z-index: 2;
  pointer-events: none;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--brand2);
  padding-bottom: 40px;
}

.footer-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 60px;
  opacity: 1;
  filter: none;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  flex: 1;
  justify-content: flex-end;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--brand2);
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--brand2);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--brand);
}

.footer-column .socials a {
  margin-right: 12px;
  font-size: 20px;
  color: var(--brand2);
}

.footer-column .socials a:hover {
  color: var(--brand);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: var(--brand2);
}


/* === Back to top === */
.back-to-top {
  position: fixed;
  bottom: max(40px, env(safe-area-inset-bottom));
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.25);
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);

  color: var(--brand2);
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
  z-index: 10000;

  box-shadow: 
    0 0 0 1px rgba(189, 189, 189, 0.1),
    0 4px 8px rgba(0,0,0,0.15);
}

.back-to-top:hover {
  transform: translateY(-2px);
  color: var(--brand);
}

.back-to-top:active {
  transform: translateY(1px);
}


/* === Contact Page === */
.nav-right #contact-page {
  color: var(--brand);
}

.mobile-menu #contact-mobile-page {
  color: var(--brand);
}

.contact-section {
  position: relative;
  background-color: var(--bgoff);
  padding: var(--sectionpad) 0;
  text-align: center;
  overflow: hidden;
}

/*
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/contactbg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.1;
  filter: blur(1px);  
  z-index: 0;
}

.contact-section > * {
  position: relative;
  z-index: 1;
}
*/

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand2);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.contact-description {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 36px;
  color: color-mix(in srgb, var(--brand2) 72%, white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: color-mix(in srgb, var(--brand2) 85%, black);
}

input,
textarea {
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--brand3);
  border-radius: 12px;
  color: var(--brand2);
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}

input::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--brand2) 50%, #aaa);
}

input:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent);
}

.description-presets {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.description-presets button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  font-size: 12px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--brand2);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .04s ease, box-shadow .2s ease;
  will-change: transform;
}

.description-presets button:hover {
  background: #505050;
  box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}
.description-presets button:active {
  transform: translateY(1px);
}

.description-presets button:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--brand2) 60%, white);
  outline-offset: 2px;
}

.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  transition: transform .04s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  will-change: transform;

  z-index: 1;
  overflow: hidden;
}

.submit-btn:hover {
  background: #155dbb;
  box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}

.submit-btn:active {
  transform: translateY(2px);
}

.submit-btn:focus-visible{
  outline: 2px solid color-mix(in srgb, var(--brand) 60%, white);
  outline-offset: 2px;
}

.contact-email {
  margin: 5px;
  align-items: center;
  font-size: 16px;
  line-height: 1.8;
  color: var(--brand2);
}

.email-address { color: var(--brand); font-weight: 700; }

.copy-email.tool-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-left: 8px;
  z-index: 5;
  cursor: pointer;
}

.tool-icon::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(8px);
  background: #111827;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.tool-icon:hover::after,
.tool-icon:focus-visible::after,
.tool-icon.show-tip::after { opacity: 1; }

.copy-email img {
  filter: brightness(0) invert(0);
  height: 20px;
  padding-left: 10px;
  transition: transform .2s ease, filter .2s ease;
}
.copy-email:hover img {
  transform: translateY(-1px);
  filter: brightness(0) saturate(1.2);
}

/* === reCAPTCHA === */
.grecaptcha-badge {
  position: fixed !important;
  bottom: 120px !important;
  transform: none !important;
  transform-origin: bottom right;
  z-index: 2147483647 !important;
  visibility: visible !important;
}


/* ===== Portfolio ===== */
.nav-left #portfolio-page {
  color: var(--brand);
}

.mobile-menu #portfolio-mobile-page {
  color: var(--brand);
}

.portfolio-hero {
  background: var(--bgoff);
  padding: 140px 0 40px;
  border-bottom: 1px solid color-mix(in srgb, var(--brand2) 12%, #fff);
}
.portfolio-hero-head{
  margin: 0 0 10px; font-size: 42px; line-height: 1.15; font-weight: 800; text-align: center; color: var(--brand2);
}
.portfolio-hero-desc{
  margin: 0 auto 26px; max-width: var(--container); text-align: center;
  color: color-mix(in srgb, var(--brand2) 78%, #000);
}
.portfolio-search-wrap{ display:flex; justify-content:center; }
.portfolio-search{
  display:flex; align-items:center; gap:10px; width:min(720px, 100%); background:#fff;
  border:1px solid color-mix(in srgb, var(--brand2) 12%, #fff); border-radius:9999px; padding:8px 12px;
  box-shadow:0 6px 14px rgba(0,0,0,.06);
}
.portfolio-search input{
  flex:1; border:0; outline:none; font:inherit; font-size:16px; padding:10px 6px; background:transparent;
}
.portfolio-kbd{ font-size:12px; color:#666; border:1px solid #e5e7eb; border-radius:6px; padding:2px 6px; background:#f8fafc; }
.portfolio-results{ margin:12px 0 0; text-align:center; color:#555; }

/* Viewer */
.portfolio-viewer-outer{ background:var(--bgmain); border-bottom:1px solid color-mix(in srgb, var(--brand2) 12%, #fff); }
.portfolio-viewer{
  max-width:1000px; margin:0 auto; padding:0 var(--gutter);
  overflow:hidden; max-height:0; opacity:0; transform:translateY(-8px);
  transition:max-height .45s ease, opacity .35s ease, transform .35s ease;
}
.portfolio-viewer.is-open{ opacity:1; transform:translateY(0); }
.portfolio-viewer-content{ padding:36px 0; }
.portfolio-viewer h1{ margin:0 0 8px; text-align:center; font-size:36px; line-height:1.2; color:var(--brand2); }
.portfolio-viewer .meta{ margin:0 auto 26px; text-align:center; color:#555; }
.portfolio-viewer .prose{ max-width:var(--container); margin:0 auto; color:#222; }
.portfolio-viewer .prose p{ margin:0 0 1em; }
.portfolio-viewer .controls{ display:flex; justify-content:center; margin:10px 0 26px; }
.portfolio-viewer .btn{ min-width:180px; }
#portfolioCloseTop    { margin-bottom: 20px; }
#portfolioCloseBottom { margin-top: 30px; }

/* Grid: 2 columns max, down to 1 on small screens */
.portfolio-grid-wrap{ padding:40px 0 80px; }
.portfolio-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
@media (max-width:560px){ .portfolio-grid{ grid-template-columns:1fr; } }

/* Card + thumbnail: fill width, crop vertically */
.portfolio-card{
  display:block; background:#fff; border:1px solid color-mix(in srgb, var(--brand2) 10%, #fff);
  border-radius:14px; overflow:hidden; box-shadow:0 10px 18px rgba(0,0,0,.06);
  cursor:pointer; transition:transform .2s ease, box-shadow .2s ease;
}
.portfolio-card:hover{ transform:translateY(-4px); box-shadow:0 16px 26px rgba(0,0,0,.10); }

/* Fixed visual height; image scales by width; vertical overflow hidden */
.portfolio-thumb-wrap{
  height: clamp(200px, 24vw, 300px);
  overflow: hidden;
  background:#eaecef;
  display:flex; align-items:center; justify-content:center;
}
@media (max-width:1024px){ .portfolio-thumb-wrap{ height: auto; } }
.portfolio-thumb{ width:100%; height:auto; display:block; }

.portfolio-card-body{ padding:14px 14px 18px; }
.portfolio-title{ font-weight:700; line-height:1.3; color:var(--brand2); }
.portfolio-year{ font-size:13px; color:#666; margin-top:6px; }
.portfolio-empty{ display:none; text-align:center; padding:40px 0; color:#666; }
.portfolio-empty.show{ display:block; }


/* ===== Blog ===== */
.nav-right #blog-page {
  color: var(--brand);
}

.mobile-menu #blog-mobile-page {
  color: var(--brand);
}

.blog-hero {
  background: var(--bgoff);
  padding: 140px 0 40px;
  border-bottom: 1px solid color-mix(in srgb, var(--brand2) 12%, #fff);
}
.blog-hero-head{
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
  color: var(--brand2);
}
.blog-hero-desc{
  margin: 0 auto 26px;
  max-width: var(--container);
  text-align: center;
  color: color-mix(in srgb, var(--brand2) 78%, #000);
}
.blog-search-wrap{ display:flex; justify-content:center; }
.blog-search{
  display:flex; align-items:center; gap:10px;
  width:min(720px, 100%);
  background:#fff;
  border:1px solid color-mix(in srgb, var(--brand2) 12%, #fff);
  border-radius:9999px;
  padding:8px 12px;
  box-shadow:0 6px 14px rgba(0,0,0,.06);
}
.blog-search input{
  flex:1; border:0; outline:none; font:inherit; font-size:16px; padding:10px 6px; background:transparent;
}
.blog-kbd{
  font-size:12px; color:#666; border:1px solid #e5e7eb; border-radius:6px; padding:2px 6px; background:#f8fafc;
}
.blog-results{ margin:12px 0 0; text-align:center; color:#555; }

/* Viewer (opens between hero & grid) */
.blog-viewer-outer{
  background:var(--bgmain);
  border-bottom:1px solid color-mix(in srgb, var(--brand2) 12%, #fff);
}
.blog-viewer{
  max-width: 1000px; margin:0 auto; padding:0 var(--gutter);
  overflow:hidden; max-height:0; opacity:0; transform:translateY(-8px);
  transition:max-height .45s ease, opacity .35s ease, transform .35s ease;
}
.blog-viewer.is-open{ opacity:1; transform:translateY(0); }
.blog-viewer-content{ padding:36px 0; }
.blog-viewer h1{ margin:0 0 8px; text-align:center; font-size:36px; line-height:1.2; color:var(--brand2); }
.blog-viewer .meta{ margin:0 auto 26px; text-align:center; color:#555; }
.blog-viewer .prose{ max-width:var(--container); margin:0 auto; color:#222; }
.blog-viewer .prose p{ margin:0 0 1em; }
.blog-viewer .controls{ display:flex; justify-content:center; margin:10px 0 26px; }
.blog-viewer .btn{ min-width:180px;}

#blogCloseTop    { margin-bottom: 20px; }
#blogCloseBottom { margin-top: 30px; }

/* Grid */
.blog-grid-wrap{ padding:40px 0 80px; }
.blog-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.blog-card{
  display:block; background:#fff;
  border:1px solid color-mix(in srgb, var(--brand2) 10%, #fff);
  border-radius:14px; overflow:hidden;
  box-shadow:0 10px 18px rgba(0,0,0,.06);
  cursor:pointer; transition:transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover{ transform:translateY(-4px); box-shadow:0 16px 26px rgba(0,0,0,.10); }
.blog-thumb{ aspect-ratio:16/9; background:#eaecef; display:block; width:100%; object-fit:cover; }
.blog-card-body{ padding:14px 14px 18px; }
.blog-title{ font-weight:700; line-height:1.3; color:var(--brand2); }
.blog-date{ font-size:13px; color:#666; margin-top:6px; }
.blog-empty{ display:none; text-align:center; padding:40px 0; color:#666; }
.blog-empty.show{ display:block; }

/* Responsive */
@media (max-width:1200px){ .blog-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:900px){
  .blog-grid{ grid-template-columns:repeat(2,1fr); }
  .blog-hero-head{ font-size:36px; }
}
@media (max-width:560px){
  .blog-grid{ grid-template-columns:1fr; }
  .blog-hero{ padding:120px 0 30px; }
  .blog-viewer h1{ font-size:28px; }
}


/* ===== Careers ===== */
.nav-right #careers-page {
  color: var(--brand);
}
.mobile-menu #careers-mobile-page {
  color: var(--brand);
}

.careers-hero {
  background: var(--bgoff);
  padding: 140px 0 40px;
  border-bottom: 1px solid color-mix(in srgb, var(--brand2) 12%, #fff);
}
.careers-hero-head{
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
  color: var(--brand2);
}
.careers-hero-desc{
  margin: 0 auto 26px;
  max-width: var(--container);
  text-align: center;
  color: color-mix(in srgb, var(--brand2) 78%, #000);
}

.careers-search-wrap{ display:flex; justify-content:center; }
.careers-search{
  display:flex; align-items:center; gap:10px;
  width:min(720px, 100%);
  background:#fff;
  border:1px solid color-mix(in srgb, var(--brand2) 12%, #fff);
  border-radius:9999px;
  padding:8px 12px;
  box-shadow:0 6px 14px rgba(0,0,0,.06);
}
.careers-search input{
  flex:1; border:0; outline:none; font:inherit; font-size:16px; padding:10px 6px; background:transparent;
}
.careers-kbd{
  font-size:12px; color:#666; border:1px solid #e5e7eb; border-radius:6px; padding:2px 6px; background:#f8fafc;
}
.careers-results{ margin:12px 0 0; text-align:center; color:#555; }

/* Viewer (opens between hero & grid) */
.careers-viewer-outer{
  background:var(--bgmain);
  border-bottom:1px solid color-mix(in srgb, var(--brand2) 12%, #fff);
}
.careers-viewer{
  max-width: 1000px; margin:0 auto; padding:0 var(--gutter);
  overflow:hidden; max-height:0; opacity:0; transform:translateY(-8px);
  transition:max-height .45s ease, opacity .35s ease, transform .35s ease;
}
.careers-viewer.is-open{ opacity:1; transform:translateY(0); }
.careers-viewer-content{ padding:36px 0; }
.careers-viewer h1{ margin:0 0 8px; text-align:center; font-size:36px; line-height:1.2; color:var(--brand2); }
.careers-viewer .meta{ margin:0 auto 26px; text-align:center; color:#555; }
.careers-viewer .prose{ max-width:var(--container); margin:0 auto; color:#222; }
.careers-viewer .prose p{ margin:0 0 1em; }
.careers-viewer .controls{ display:flex; justify-content:center; gap:14px; margin:10px 0 26px; }
.careers-viewer .btn{ min-width:160px; }

#careersCloseTop    { margin-bottom: 20px; }
#careersCloseBottom { margin-top: 30px; }

.careers-viewer .controls:has(.btn-primary) {
  display: flex;
  flex-wrap: wrap;         /* allow line breaks */
  justify-content: center;
  gap: 14px;
}

.careers-viewer .controls:has(.btn-primary)::before,
.careers-viewer .controls:has(.btn-primary)::after {
  content: "";
  flex-basis: 100%;
}

.careers-viewer .controls:has(.btn-primary)::before { order: 1; }
.careers-viewer .controls .btn-primary { order: 2; }
.careers-viewer .controls:has(.btn-primary)::after  { order: 3; }
.careers-viewer .controls:has(.btn-primary) > :not(.btn-primary) { order: 4; }

.job-inline-info {
  font-size: 16px;
  color: var(--brand2);
}
.job-inline-info strong { font-weight: 700; }


/* Apply now */
.careers-viewer .controls .btn-primary {
  flex: 0 0 auto;
  max-width: 180px;
  margin: 30px auto 0;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.careers-viewer .controls .btn-primary:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}

/* Grid */
.careers-grid-wrap{ padding:40px 0 80px; }
.careers-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.careers-card{
  display:block; background:#fff;
  border:1px solid color-mix(in srgb, var(--brand2) 10%, #fff);
  border-radius:14px; overflow:hidden;
  box-shadow:0 10px 18px rgba(0,0,0,.06);
  cursor:pointer; transition:transform .2s ease, box-shadow .2s ease;
}
.careers-card:hover{ transform:translateY(-4px); box-shadow:0 16px 26px rgba(0,0,0,.10); }

.careers-thumb{ aspect-ratio:16/9; background:#eaecef; display:block; width:100%; object-fit:cover; }
.careers-thumb.placeholder{
  background-image: linear-gradient(135deg, #e5f2ff, #f4f7fb);
}

.careers-card-body{ padding:14px 14px 18px; }
.careers-title{ font-weight:700; line-height:1.3; color: var(--brand2); }
.careers-meta{ font-size:14px; color:#555; margin-top:6px; }
.careers-date{ font-size:13px; color:#777; margin-top:6px; }

.careers-empty{ display:none; text-align:center; padding:40px 0; color:#666; }
.careers-empty.show{ display:block; }

/* Responsive */
@media (max-width:1200px){ .careers-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:900px){
  .careers-grid{ grid-template-columns:repeat(2,1fr); }
  .careers-hero-head{ font-size:36px; }
}
@media (max-width:560px){
  .careers-grid{ grid-template-columns:1fr; }
  .careers-hero{ padding:120px 0 30px; }
  .careers-viewer h1{ font-size:28px; }
}


/* Careers form tweaks (reuse Contact styles) */
.careers-apply-section {
  position: relative;
}

.careers-apply-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(
    to top,
    rgba(255,255,255,0.2),
    rgba(0,0,0,0.2)
  );
}

.careers-apply-section select {
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--brand3);
  border-radius: 12px;
  color: var(--brand2);
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.careers-apply-section select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent);
}
/* Salary row (amount + currency + period) */
.careers-apply-section .inline-3 {
  display: grid;
  grid-template-columns: 1fr minmax(90px, 140px) minmax(140px, 220px);
  gap: 10px;
}



/* ===== Animations ===== */
@keyframes slideInUp{
  from{ opacity:0; transform: translateY(80px); }
  to{   opacity:1; transform: translateY(0); }
}

@keyframes bgPulse{
  0%,
  100% {
    transform: translate(-50%,-50%) scale(0.7);
    opacity: 0.15;
  }
  50% {
    transform: translate(-50%,-50%) scale(0.8);
    opacity: 0.25;
  }
}

@keyframes bgPulseServ{
  0%,
  100% {
    transform: translate(-50%,-50%) scale(0.9);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%,-50%) scale(1);
    opacity: 0.15;
  }
}

@keyframes slowSpin{
  to{ transform: translate(-50%,-50%) rotate(-360deg); }
}


/* ==== RESPONSIVENESS ==== */

/* Reduced motion: stop bg pulse/rotation */
@media (prefers-reduced-motion: reduce){
  .layer-1-wrap,
  .layer-1{ animation: none; }
}


/* ==== Mobile ==== */
@media (max-width: 1024px) {
  :root {
    --gutter: 30px;
    --sectionpad: 100px;
    --container: 90dvw;
  }


  /* Header / Nav */
  .header { --barH: 40px; height: var(--barH); }
  .header-row {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    height: 100%;
    position: relative;
  }

  .mobile-menu {
    position: fixed;
    top: calc(var(--barH) + 20px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 14px var(--gutter) 18px;
    list-style: none;
    background-color: rgba(255,255,255,0.98);
    backdrop-filter: saturate(120%) blur(10px);
    -webkit-backdrop-filter: saturate(120%) blur(10px);
    box-shadow: 0 10px 24px rgba(0,0,0,.15);
    border-top: 1px solid color-mix(in srgb, var(--brand2) 10%, #fff);
    z-index: 2000;
  }
  .mobile-menu.is-open { display: flex; }

  .mobile-menu[hidden] { display: none !important; }

  .mobile-menu a,
  .mobile-menu .mobile-parent {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 10px 0;
    font: inherit;
    font-size: 18px;
    font-weight: 600;
    color: var(--brand2);
    text-decoration: none;
  }
  .mobile-menu a:hover { color: var(--brand); }

  .mobile-menu a.active { color: var(--brand); }

  .mobile-menu .mobile-sub {
    list-style: none;
    margin: 6px 0 0;
    padding: 0 0 0 16px;
    display: block;
  }
  .mobile-menu .mobile-sub a {
    font-size: 16px;
    font-weight: 500;
    padding: 6px 0;
    color: var(--brand2);
  }

  .mobile-menu .mobile-sub a.active { 
    color: var(--brand);
  }

  .mobile-menu .mobile-sub a:hover {
    color: var(--brand);
  }
  
  .nav-left { display: none !important; }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .nav-right > a { display: none !important; }
  
  .logo {
    margin-left: 0;
    justify-content: flex-start;
  }
  .logo-img { height: 34px; }
  
  .hamburger {
    display: inline-flex;
    margin-left: auto;
    z-index: 2100;
  }
  .header.scrolled .hamburger span { background-color: var(--brand2); }
  
  .mobile-menu {
    position: fixed;
    top: calc(var(--barH) + 20px);
    left: 0;
    right: 0;
  }

  .nav-right .mobile-menu a { display: block !important; }


  /* Hero */
  .hero-content {
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .layer-2{display: none;}
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 60px;
  }

  .hero-head {
    font-size: 34px;
    margin-inline: auto;
  }
  .hero-p {
    font-size: 16px;
  }

  .btn {
    height: 46px;
    font-size: 15px;
  }
  .btn-hero {
    justify-content: center;
  }

  /* Services */
  .services-head {
    font-size: 24px;
    padding: 100px 0 80px;
  }

  #services-2 .services_grid { grid-template-columns: 1fr; }

  #services-1 .services_grid,
  #services-2 .services_grid,
  #services-3 .services_grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "art"
      "card";
    gap: 20px;
    padding: 80px 0 0;
  }

  .services_art  { grid-area: art;  }
  .services_card { grid-area: card; }

  .services_art {
    position: relative;
    min-height: 180px;
  }
  .art-stack {
    position: relative;
    inset: auto;
    height: 100%;
  }
  .art-img,
  .layer-1-wrap {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .art-img { max-height: 300px; }
  .XR-layer-2 { max-height: 240px; }

  .services_card {
    padding: 30px;
  }

  /* ROI strip */
  .sim-roi {
    max-width: var(--container);
    gap: 40px;
    padding: 20px 0 50px;
  }

  .sim-roi__item {
    font-size: 36px;
  }

  .sim-roi__desc {
    font-size: 15px;
  }


  /* Clients */
  .clients-section { 
    padding: 60px 0; 
  }

  .clients-title {
    font-size: 24px;
    margin: 0 0 40px;
  }

  .clients-logos {
    gap: 40px;
  }

  .clients-tool img {
    max-height: 42px;
  }


  /* FAQ */
  .faq-acc { padding: 80px 0; }
  .faq-acc_head { 
    margin-bottom: 40px;
    font-size: 24px;
  }
  .faq-acc_wrap {
    border-radius: 6px;
    max-width: var(--container);
  }
  .faq-acc_q { padding: 18px 20px; }
  .faq-acc_a { padding: 0 20px; }


  /* Footer */
  .footer-logo img {
    width: auto;
    height: 50px;
  }

  .footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .footer-column a {
    font-size: 18px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column ul {
    padding: 0;
  }

  .footer-column li {
    list-style: none;
    margin: 10px 0;
  }

  .footer-bottom {
    font-size: 14px;
  }
  
  .footer-column .socials {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
  }
  
  .footer-column .socials a {
    transform: scale(1.6);
    transition: transform 0.3s;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* Contact */
  .contact-container {
    max-width: var(--container);
  }
  
  .contact-title {
    font-size: 24px;
  }
  
  .contact-description {
    max-width: var(--container);
  }
  
  .form-group label {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  /* === reCAPTCHA === */
  .grecaptcha-badge {
    bottom: 80px !important;
  }
}


/* ==== Landscape mobile ==== */
@media (orientation: landscape) and (max-width: 1369px) and (max-height: 1024px) {

  :root {
    --gutter: 40px;
    --sectionpad: 100px;
    --container: 90dvw;
  }

  /* Hero */
  .hero-lead{
    max-width: var(--container);
  }
  .hero-head {
    font-size: 40px;
  }
  .hero-p {
    font-size: 17px;
  }
  .btn {
    height: 46px;
  }


  /* Services */
  .services-head {
    font-size: 28px;
    padding: 100px 0 80px;
  }

  .services_art {
    position: relative;
    min-height: 240px;
  }
  .art-img { max-height: 420px; }
  .XR-layer-2 { max-height: 320px; }

  .services_card {
    padding: 30px;
  }

  /* ROI strip */
  .sim-roi {
    gap: 80px;
    padding: 20px 0 60px;
  }

  .sim-roi__item {
    font-size: 44px;
  }

  .sim-roi__desc {
    font-size: 16px;
  }


  /* Clients */
  .clients-section { 
    padding: 60px 0; 
  }

  .clients-title {
    font-size: 28px;
    margin: 0 0 60px;
  }

  .clients-logos {
    gap: 60px;
  }

  .clients-tool img {
    max-height: 46px;
  }


  /* FAQ */
  .faq-acc { padding: 80px 0; }
  .faq-acc_head { 
    margin-bottom: 40px;
    font-size: 24px;
  }
  .faq-acc_wrap {
    border-radius: 6px;
    max-width: var(--container);
  }
  .faq-acc_q { padding: 18px 20px; }
  .faq-acc_a { padding: 0 20px; }


  /* Footer */
  .footer-logo img {
    width: auto;
    height: 50px;
  }

  .footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .footer-column a {
    font-size: 18px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column ul {
    padding: 0;
  }

  .footer-column li {
    list-style: none;
    margin: 10px 0;
  }

  .footer-bottom {
    font-size: 14px;
  }
  
  .footer-column .socials {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
  }
  
  .footer-column .socials a {
    transform: scale(1.6);
    transition: transform 0.3s;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }


  /* Contact */
  .mobile-menu #contact-mobile-page {
    color: var(--brand);
  }

  .contact-container {
    max-width: var(--container);
  }
  
  .contact-title {
    font-size: 24px;
  }
  
  .contact-description {
    max-width: var(--container);
  }
  
  .form-group label {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  /* === reCAPTCHA === */
  .grecaptcha-badge {
    bottom: 80px !important;
  }
}


/* ==== Portrait tablet ==== */
@media (orientation: portrait) and (max-width: 1024px) and (min-width: 768px) and (max-height: 1368px) {
    :root {
    --gutter: 30px;
    --sectionpad: 100px;
    --container: 90dvw;
  }


  /* Hero */
  .hero-content {
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .layer-2{display: none;}
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 60px;
  }
  .hero-head {
    font-size: 44px;
    margin-inline: auto;
  }
  .hero-p {
    font-size: 20px;
  }
  .btn {
    height: 60px;
    font-size: 18px;
  }
  .btn-hero {
    justify-content: center;
  }

  /* Services */
  .services-head {
    font-size: 32px;
    padding: 100px 0 140px;
  }

  #services-2 .services_grid { grid-template-columns: 1fr; }

  #services-1 .services_grid,
  #services-2 .services_grid,
  #services-3 .services_grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "art"
      "card";
    gap: 20px;
    padding: 60px 0 0;
  }

  .services_art  { grid-area: art;  }
  .services_card { grid-area: card; }

  .services_art {
    position: relative;
    min-height: 240px;
  }
  .art-stack {
    position: relative;
    inset: auto;
    height: 100%;
  }
  .art-img,
  .layer-1-wrap {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .art-img { max-height: 360px; }
  .XR-layer-2 { max-height: 280px; }

  .services_card {
    padding: 30px;
  }

  .card-title{
    font-size: 24px;
  }

  .card-copy {
    font-size: 18px;
  }

  /* ROI strip */
  .sim-roi {
    gap: 80px;
    padding: 20px 0 60px;
  }

  .sim-roi__item {
    font-size: 42px;
  }

  .sim-roi__desc {
    font-size: 16px;
  }


  /* Clients */
  .clients-section { 
    padding: 60px 0; 
  }

  .clients-title {
    font-size: 32px;
    margin: 0 0 60px;
  }

  .clients-logos {
    gap: 80px;
  }

  .clients-tool img {
    max-height: 42px;
  }


  /* FAQ */
  .faq-acc { padding: 80px 0; }
  .faq-acc_head { 
    margin-bottom: 40px;
    font-size: 32px;
  }
  .faq-acc_wrap {
    border-radius: 6px;
    max-width: var(--container);
  }
  .faq-acc_q { 
    padding: 18px 20px;
    font-size: 20px;
  }
  .faq-acc_a {
    padding: 0 20px;
    font-size: 18px;
  }


  /* Footer */
  .footer-logo img {
    width: auto;
    height: 50px;
  }

  .footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .footer-column a {
    font-size: 18px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column ul {
    padding: 0;
  }

  .footer-column li {
    list-style: none;
    margin: 10px 0;
  }

  .footer-bottom {
    font-size: 14px;
  }
  
  .footer-column .socials {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
  }
  
  .footer-column .socials a {
    transform: scale(1.8);
    transition: transform 0.3s;
  }

  /* Back to top */
  .back-to-top {
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  /* === reCAPTCHA === */
  .grecaptcha-badge {
    bottom: 100px !important;
  }
}
