/* header */
html {
  scroll-behavior: smooth;
}
.sticky-wrapper {
  height: 0 !important;
  position: relative;
  z-index: 99;
}
.site-header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.site-header.is-sticky {
  background: var(--color-dark-teal);
	color: var(--color-white);
}
.site-header .row {
  align-items: center;
  min-height: 38px;
}
.site-header .row > div:first-child {
  max-width: 200px;
}
.site-header .row > div:last-child {
  display: flex;
  justify-content: flex-end;
}
.site-header .logo {
  max-width: 270px;
  margin: 0;
}
.naw-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: flex-end;
}
.main-navigation .menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  align-items: center;
}
.main-navigation .menu a {
  color: rgba(255,255,255,1);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}
.main-navigation .menu .current-menu-item a,
.main-navigation .menu a:hover {
  color: var(--color-bright-green);
}


.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-dark-teal);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 24px;
}
.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu-top img  {
  max-width: 141px;
}
.mobile-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
}
.mobile-nav {
  margin-top: 40px;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.mobile-nav li {
  margin-bottom: 20px;
}
.mobile-nav a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}
.mobile-btn {
  margin-top: auto;
}
.no-scroll {
  overflow: hidden;
} 

.gap-header {
	min-height: 85px;
	background: var(--color-dark-teal);
}
.text-content > * {
  margin-bottom: 24px;
}


/* hero */
.s-hero {
  overflow: hidden;
}
.s-hero .row {
  align-items: center;
}
.s-hero .row > div:nth-child(2) {
  max-width: 40%; 
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-text .text-big {
  max-width: 700px;
}
.btns-wrap {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-text .text-small {
  color: var(--color-warm-grey);
}
.hero-img {
  display: flex;
  justify-content: flex-end;
}
#rextore-hex svg {
  overflow: visible !important;
}

/* logos */
.s-logos {
  padding: 20px 0;
}
.s-logos .row {
  align-items: center;
}
.s-logos .row > div {
  min-width: 0;
}
.s-logos .row > div:nth-child(1) {
  max-width: 460px;
}
.logos-slide {
  display: flex;
  align-items: center;
  gap: 8px;
}
.s-logos .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* how-we */
.s-how-we .container {
  max-width: 1440px;
}
.s-how-we .text-label {
  margin: 0 0 16px;
}
.s-how-we .h2 {
  margin: 0 0 60px;
}
.target-text {
  font-size: 48px;
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: center;
  margin-top: 140px;
}
.target-text svg {
  flex-basis: 13%;
}
.target-text span {
  margin: 0 -25px;
}
.target-text svg {
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.target-text svg:nth-child(1) {
  transform: scale(0.7) translateX(100%);
}
.target-text svg:nth-child(3) {
  transform: scale(0.7) translateX(-100%);
}
.target-text.animate svg {
  transform: scale(1);
  opacity: 1;
}
.s-how-we .row {
  margin: 0 -10px;
  gap: 20px 0px;
}
.s-how-we .row > div {
  padding: 0 10px;
}
.s-how-we .how-we-row1 {
  margin-bottom: 232px;
}
.how-we-one {
  background: var(--color-white);
  color: var(--color-dark-teal);
  padding: 24px;
  border-radius: 12px;
  height: 100%;
}
.how-we-one-img {
  min-height: 150px;
}
.how-we-one .h3 {
  margin: 0 0 16px;
}
.s-how-we p:not(:last-child) {
  margin-bottom: 16px;
}

.s-how-we .stage {
  position: relative;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
}
.s-how-we .glow {
  position: absolute;
  width: 70vmin;
  height: 70vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134,233,92,0.20) 0%, transparent 60%);
  pointer-events: none;
  animation: glowPulse 5.4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 10%   { opacity: 0; }
  35%, 80%  { opacity: 1; }
  95%, 100% { opacity: 0; }
}
.s-how-we svg.logo {
  width: 200px;
  height: 200px;
  overflow: visible;
  filter: drop-shadow(0 0 30px rgba(134,233,92,0.22));
}

/* img-slider */
.s-img-slider {
  padding: 0;
}
.s-img-slider img {
  width: 100%;
  height: 840px;
  object-fit: cover;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  width: 60px;
}


/* s-what-we  */
.s-what-we {
  position: relative;
  overflow-x: clip;
  padding-top: 150px;
  padding-bottom: 260px;
}
.s-what-we .sect-top-right {
  clip-path: polygon(37% 0, 100% 0, 100% 100%, 0% 100%);
  width: 29%;
  height: 100px;
  position: absolute;
  right: 0;
  transform: translateY(-100%);
  background: var(--color-dark-teal);
  top: 1px;
}
.s-what-we .sect-bottom-right {
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  width: 84%;
  height: 100px;
  position: absolute;
  right: 0;
  background: #FFFFFF;
  bottom: -1px;
}
.s-what-we .container {
  max-width: 1590px;
}
.s-what-we .ww-anim {
  position: absolute;
  right: 18%;
  top: 3%;
  max-width: 330px;
  max-height: 380px;
}
/* .ww-anim path {
  stroke-dasharray: 2300;
  stroke-dashoffset: 2300;
  opacity: 0;
  transform: scale(0.95);
  transition: 
    stroke-dashoffset 1.5s ease,
    opacity 0.6s ease,
    transform 0.6s ease;
}
.ww-anim.animate path {
  stroke-dashoffset: 0;
  opacity: 1;
  transform: scale(1);
}
.ww-anim.animate path:nth-child(1) { transition-delay: 0s; }
.ww-anim.animate path:nth-child(2) { transition-delay: 0.2s; }
.ww-anim.animate path:nth-child(3) { transition-delay: 0.4s; }
.ww-anim.animate path:nth-child(4) { transition-delay: 0.6s; }
.ww-anim.animate path:nth-child(5) { transition-delay: 0.8s; } */
.ww-anim path {
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
  transition: 
    transform 0.6s ease,
    opacity 0.6s ease;
}
.ww-anim.animate path:nth-child(5) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0s;
}
.ww-anim.animate path:nth-child(4) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}
.ww-anim.animate path:nth-child(3) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
}
.ww-anim.animate path:nth-child(2) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s;
}
.ww-anim.animate path:nth-child(1) {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.8s;
}



.s-what-we .text-label {
  color: var(--color-bright-green);
  margin: 0 0 16px;
}
.s-what-we .h2 {
  max-width: 635px;
  font-size: 50px;
  margin: 0 0 60px;
}
.s-what-we .h2 span {
  color: var(--color-bright-green);
}
.s-what-we .row {
  margin: 0 -10px;
  gap: 20px 0px;
}
.s-what-we .row > div {
  padding: 0 10px;
}
.what-we-one {
  background: var(--color-white);
  color: var(--color-dark-teal);
  border-radius: 12px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.what-we-one-img-wrap img {
  height: 390px;
  width: 100%;
  object-fit: cover;
}
.what-we-one-img {
  position: absolute;
  display: inline-flex;
  top: 20px;
  left: 20px;
  max-width: 50px;
}
.what-we-one-img svg {
  max-height: 60px;
}
.what-we-one-img span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 22px;
}
.what-we-one-text {
  padding: 24px;
  background: transparent !important;
  position: absolute;
  left: 0;
  top: 85px;
  color: #fff;
  max-width: 238px;
  font-size: 16px;
}
.what-we-one .h3 {
  font-weight: 600;
  margin: 0 0 25px;
  padding: 0 0 16px;
  font-size: 18px;
  line-height: 1.3;
  position: relative;
} 
.what-we-one .h3:after {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.s-what-we .row > div:nth-child(1) .what-we-one .h3:after {
  background: #D6FF9B;
}
.s-what-we .row > div:nth-child(2) .what-we-one .h3:after {
  background: var(--color-bright-teal);
}
.s-what-we .row > div:nth-child(3) .what-we-one .h3:after {
  background: var(--color-bright-orange);
}
.s-what-we .row > div:nth-child(3) .what-we-one {
  background: var(--color-bright-orange);
}

.s-what-we .row > div:nth-child(1) .what-we-one span {
  color: #D6FF9B;
}
.s-what-we .row > div:nth-child(2) .what-we-one span {
  color: var(--color-bright-teal);
}
.s-what-we .row > div:nth-child(3) .what-we-one span {
  color: var(--color-bright-orange);
}

.what-we-bot {
  margin: 100px 0 0;
}
.what-we-bot .h3 {
  text-align: center;
  font-size: 36px;
  margin: 0 0 60px;
  text-transform: inherit;
}
.what-we-bot .h3 span {
  color: var(--color-bright-green);
}
.what-we-b-one {
  display: flex;
  gap: 20px;
}
.what-we-b-one .what-we-one-b-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--color-bright-green);
  min-width: 80px;
  background: #011814;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what-we-b-one .what-we-one-b-img img {
  max-width: 50%;
  max-height: 50%;
}
.what-we-b-one-text .h4 {
  margin: 15px 0 25px;
  line-height: 1.2;
  font-size: 19px;
}
.what-we-b-one p {
  font-size: 17px;
}
.s-what-we .what-we-bot .row {
  margin: 0 -30px;
}
.s-what-we .what-we-bot .row > div {
  padding: 0 30px;
}
.s-what-we .what-we-bot .row > div:not(:last-child) {
  border-right: 1px solid var(--color-bright-green);
}


/* Delivery */

.s-delivery {

}
.s-delivery .container {
  max-width: 1440px;
}
.s-delivery .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  align-items: start;
}

/* Left column */
.s-delivery .left-col {
  padding-right: 40px;
  height: 100%;
}
.s-delivery .left-col-inner {
  position: sticky;
  top: 120px;
}
.s-delivery .text-label {
  margin: 0 0 16px;
}
.s-delivery h2 {
  margin-bottom: 60px;
}
.s-delivery .body-lead {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Right column – feature list */
.right-col {
  padding-top: 235px;
}

.feature-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.feature-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.feature-body {
  max-width: 560px;
}


/* manifesto */
.s-manifesto {
  padding: 0 0 100px;
}
.s-manifesto .container {
  max-width: 1440px;
}
.s-manifesto .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  align-items: center;
}
/* Left: hex icon + manifesto */
.manifesto-col {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Hexagon animation wrapper */
.hex-wrapper {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Rotating hexagon SVG */
.hex-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: hexSpin 0s linear paused;
  transform-origin: center center;
  will-change: transform;
}
/* Static plus stays centered */
.hex-plus {
  position: relative;
  z-index: 2;
  font-size: 34px;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  margin-top: 1px;
  font-family: icon;
}
@keyframes hexSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* JS drives the rotation via CSS custom property */
.hex-shape.spinning {
  animation: hexSpin 3s linear infinite;
}
.manifesto-lines {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
}
.manifesto-lines span {
  display: block;
}
/* Right: hexagon-clipped image */
.image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hex-image-wrap {
  position: relative;
}
.hex-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* clip-path: polygon(
    50% 4%,
    95% 27%,
    95% 73%,
    50% 96%,
    5% 73%,
    5% 27%
  ); */
  display: block;
}


/* section-work */
.s-work {
  padding-top: 0 !important;
}
.s-work .sect-cta { 
  background-attachment: fixed;
  background-image: url('../../../../wp-content/uploads/2026/04/Rextore_Pattern_RGB-07.png');
  background-size: cover;
}
.sect-cta {
  text-align: center;
  height: 525px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sect-cta .text-label {
  color: var(--color-bright-green);
  margin: 0 0 16px;
}
.sect-cta .h2 {
  max-width: 1200px;
  margin: 0 auto;
}


/* 3-column grid, full-bleed below container */
.work-grid-wrap {
  padding: 80px 24px 0;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.work-card-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.work-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(100%);
  border-radius: 8px;
}
.work-card-img-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 120px;
  transition: all 0.5s ease;
}
.work-card:hover .work-card-img-hover {
  opacity: 0;
}
.work-card-img-wrap svg {
  transition: all .5s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  opacity: 1;
}
.work-card:hover .work-card-img {
  filter: grayscale(0%);
}
.work-card:hover .work-card-img {
  transform: scale(1.04);
}
.work-card:hover .work-card-img-wrap svg {
  opacity: 0;
}
.work-card-info {
  padding: 16px 0px 18px;
}
.work-card-title {
  text-transform: unset;
  margin-bottom: 16px;
}
.work-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.work-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.work-card-tag svg {
  position: relative;
  top: -1px;
}
/* Bottom CTA row inside dark section */
.work-cta {
  text-align: center;
  padding: 40px 0 0;
}


/* s-conv */
.s-conv.sect-cta { 
  background-attachment: fixed;
  background-image: url('../../../../wp-content/uploads/2026/04/Rextore_Pattern_RGB-01.png');
  background-size: cover;
}
.s-conv.sect-cta .work-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.s-conv.sect-cta .work-header .text-big {
  font-size: 34px;
}


/* footer */
.site-footer {
  padding: 65px 0 20px;
}
.site-footer .row > div:not(:first-child) {
  max-width: 15%;
}
.site-footer .logo {
  max-width: 170px;
  margin: 0 0 30px;
}
.site-footer .logo + p {
  max-width: 300px;
  font-size: 14px;
  color: rgba(255,255,255,1);
}
.label-f {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.label-f-one {
  background: #1E4624;
  color: var(--color-bright-green);
  border: 1px solid var(--color-bright-green);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.site-footer .row {
  gap: 30px;
  margin-bottom: 160px;
}
.site-footer .h3 {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-menu {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: rgba(255,255,255,1);
  font-size: 16px;
}
.footer-menu a:hover {
  color: var(--color-bright-green);
}
.footer-socials {
  display: flex;
  gap: 15px;
  padding: 0;
  list-style: none;
  margin: 40px 0 0;
}
.footer-socials a {
  max-width: 30px;
  display: block;
}
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,1);
}
.logo-footer-bot {
  width: 100%;
  max-width: 100px;
}
.footer-awards {
  display: flex;
  align-items: center;
  max-width: 400px;
  gap: 0;
  margin: 0 0 20px;
}
.footer-awards .footer-award-image {
  min-width: 0;
  max-width: 100%;
  height: auto;
  flex: 1 1 0;
  transform: scale(1.3);
}