:root {
  color-scheme: light;
  --blue: #0E3E81;
  --blue-2: #A3C5F5;
  --soft-blue: #DAE8FB;
  --pill: #edf4ff;
  --orange: #F95738;
  --text: #000000;
  --muted: #1b3355;
  --container: min(1568px, calc(100vw - 96px));
}

/* Project type rules: buttons 18px, banner heading 82px, section headings 64px, eyebrow titles 28px, body content 18px. */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  overflow-x: clip;
  background: #ffffff;
  color: var(--text);
  font-size: 18px;
  font-family: "Bricolage Grotesque", "DM Sans", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

body.preloader-active {
  overflow: hidden;
}

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

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

.page-frame {
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  overflow-x: clip;
}

.home-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  overflow: hidden;
  background: transparent;
  pointer-events: auto;
}

.home-preloader.is-loaded {
  pointer-events: none;
}

.home-preloader-slab {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: translateY(0);
  transition: transform 0.86s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.home-preloader-slab:nth-child(even) {
  background: var(--orange);
}

.home-preloader-slab:nth-child(1) {
  transition-delay: 0s;
}

.home-preloader-slab:nth-child(2) {
  transition-delay: 0.08s;
}

.home-preloader-slab:nth-child(3) {
  transition-delay: 0.16s;
}

.home-preloader-slab:nth-child(4) {
  transition-delay: 0.24s;
}

.home-preloader-slab:nth-child(5) {
  transition-delay: 0.32s;
}

.home-preloader-slab:nth-child(6) {
  transition-delay: 0.4s;
}

.home-preloader-slab:nth-child(7) {
  transition-delay: 0.48s;
}

.home-preloader-slab:nth-child(8) {
  transition-delay: 0.56s;
}

.home-preloader.is-loaded .home-preloader-slab {
  transform: translateY(-105%);
}

@media (prefers-reduced-motion: reduce) {
  .home-preloader-slab {
    transition-duration: 0.01ms;
    transition-delay: 0s;
  }
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 196px 1fr 139px;
  align-items: center;
  gap: 22px;
  width: var(--container);
  height: 133px;
  margin: 0 auto;
}

.logo {
  display: block;
  width: 142px;
  height: 88px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.primary-nav > a,
.nav-item > a {
  position: relative;
  z-index: 21;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 108px;
  height: 37px;
  padding: 0 17px;
  border-radius: 95px;
  background: var(--pill);
  color: var(--blue);
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
}

.nav-item {
  position: relative;
  display: inline-flex;
}

.has-submenu::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
  content: "";
}

.has-submenu:hover > a,
.has-submenu:focus-within > a {
  background: #dae8fb;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.nav-item > a:hover,
.nav-item > a:focus-visible {
  background: #dae8fb;
}

.primary-nav img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.primary-nav .menu-arrow-down {
  width: 11px;
  height: 6px;
  margin-left: 1px;
  transition: transform 0.24s ease;
}

.has-submenu:hover .menu-arrow-down,
.has-submenu:focus-within .menu-arrow-down {
  transform: rotate(180deg);
}

.products-submenu {
  position: absolute;
  left: 0px;
  top: calc(100% - 1px);
  z-index: 20;
  display: grid;
  gap: 18px;
  width: 300px;
  padding: 25px 20px 24px 30px;
  border-radius: 15px;
  background: #dae8fb;
  color: #000000;
  box-shadow: 0 20px 42px rgba(14, 62, 129, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  visibility: hidden;
  transition:
    opacity 0.52s ease,
    transform 0.52s ease,
    visibility 0s linear 0.52s;
}

.has-submenu:hover .products-submenu,
.has-submenu:focus-within .products-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.products-submenu strong,
.products-submenu a {
  font-size: 18px;
  line-height: 1.15;
}

.products-submenu strong {
  color: #000000;
}

.products-submenu a {
  color: #000000;
  transition: color 0.2s ease, transform 0.2s ease;
}

.products-submenu a:hover,
.products-submenu a:focus-visible {
  color: var(--blue);
  transform: translateX(4px);
}

.primary-nav i {
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
}

.contact-btn {
  justify-self: end;
  width: 137px;
  height: 37px;
  font-size: 18px;
}

.animated-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}

.animated-btn span {
  display: inline-block;
}

.animated-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.animated-btn:hover span {
  animation: button-text-slide 0.34s ease;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--pill);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue);
  transition: transform 0.2s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  width: var(--container);
  min-height: 760px;
  margin: 0 auto;
  padding-top: 54px;
}

.trusted {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  height: 39px;
  margin: 0 auto 32px;
  border-radius: 95px;
  background: #a3c5f5;
  color: var(--blue);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 1173px;
  margin: 0 auto;
  color: var(--blue);
  font-size: 82px;
  font-weight: 700;
  line-height: 1.09;
  letter-spacing: -0.01em;
  text-align: center;
}

.hero h1 span {
  display: block;
  color: var(--orange);
  transform-origin: center;
}

.hero h1 .hero-changing-word {
  display: block;
  transition: opacity 0.34s ease, transform 0.34s ease, filter 0.34s ease;
}

.hero h1 .hero-changing-word > span {
  display: none;
}

.hero h1 .hero-changing-word > span.is-active {
  display: block;
}

.hero h1 .hero-changing-word.is-changing {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(18px) scale(0.98);
}

.hero-copy {
  position: absolute;
  left: 0;
  top: 278px;
  width: 366px;
  margin: 0;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.32;
}

.quote-btn {
  position: absolute;
  right: 0;
  top: 290px;
  width: 204px;
  height: 46px;
  font-size: 18px;
}

.float-icon {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #a3c5f5;
}

.float-icon::after {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(163, 197, 245, 0.66);
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.float-icon img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.trophy {
  left: 20px;
  top: 36px;
  width: 58px;
  height: 58px;
}

.megaphone {
  left: 85px;
  top: 112px;
  width: 58px;
  height: 58px;
  background: var(--blue);
}

.idea {
  right: 39px;
  top: 56px;
  width: 58px;
  height: 58px;
}

.hero-gallery {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 44px;
  display: grid;
  grid-template-columns: 201px 281px 377px 281px 196px;
  justify-content: space-between;
  align-items: end;
  gap: 21px;
}

.hero-card,
.years-card {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background: var(--soft-blue);
}

.hero-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.42) 45%, transparent 68%);
  content: "";
  opacity: 0;
  pointer-events: none;
  translate: -120% 0;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

.roll-card,
.rolls-card {
  height: 221px;
}

.years-card {
  display: grid;
  grid-template-rows: 116px 150px;
  height: 266px;
  background: transparent;
}

.years-card strong {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 42px;
  background: #a3c5f5;
  color: var(--blue);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}

.years-card strong::after {
  position: absolute;
  inset: -45%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 14%, transparent 48%);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.years-card p {
  display: grid;
  place-items: center;
  min-height: 150px;
  margin: 0;
  padding: 24px 30px;
  border-radius: 42px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.12;
  text-align: center;
}

.store-card {
  height: 375px;
}

.display-card {
  height: 266px;
}

@media (prefers-reduced-motion: no-preference) {
  .float-icon {
    animation: hero-icon-float 5.6s ease-in-out infinite;
  }

  .float-icon::after {
    animation: hero-icon-ring 2.8s ease-out infinite;
  }

  .trophy {
    animation-delay: 0.1s;
  }

  .megaphone {
    animation-delay: 0.9s;
  }

  .idea {
    animation-delay: 1.6s;
  }

  .hero-card,
  .years-card {
    animation: hero-card-float 6.4s ease-in-out infinite;
  }

  .roll-card {
    animation-delay: 0.2s;
  }

  .years-card {
    animation-delay: 0.9s;
  }

  .store-card {
    animation-delay: 0.45s;
  }

  .display-card {
    animation-delay: 1.2s;
  }

  .rolls-card {
    animation-delay: 1.7s;
  }

  .hero-card img {
    animation: hero-image-breathe 7.5s ease-in-out infinite;
  }

  .store-card img {
    animation-duration: 8.5s;
  }

  .hero-card::after {
    animation: hero-card-shine 5.8s ease-in-out infinite;
  }

  .years-card strong {
    animation: hero-counter-pulse 3.8s ease-in-out infinite;
  }

  .years-card strong::after {
    animation: hero-counter-spark 3.8s ease-in-out infinite;
  }
}

@keyframes hero-icon-float {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }

  35% {
    translate: 0 -14px;
    rotate: -5deg;
  }

  68% {
    translate: 6px 4px;
    rotate: 5deg;
  }
}

@keyframes hero-icon-ring {
  0% {
    opacity: 0.75;
    scale: 0.75;
  }

  70%,
  100% {
    opacity: 0;
    scale: 1.35;
  }
}

@keyframes hero-card-float {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }

  45% {
    translate: 0 -13px;
    rotate: -0.6deg;
  }

  72% {
    translate: 0 5px;
    rotate: 0.45deg;
  }
}

@keyframes hero-image-breathe {
  0%,
  100% {
    scale: 1;
  }

  50% {
    scale: 1.045;
  }
}

@keyframes hero-card-shine {
  0%,
  58% {
    opacity: 0;
    translate: -120% 0;
  }

  70% {
    opacity: 0.75;
  }

  86%,
  100% {
    opacity: 0;
    translate: 120% 0;
  }
}

@keyframes hero-counter-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(14, 62, 129, 0);
    scale: 1;
  }

  48% {
    box-shadow: 0 18px 34px rgba(14, 62, 129, 0.14);
    scale: 1.025;
  }
}

@keyframes hero-counter-spark {
  0%,
  45% {
    opacity: 0;
    translate: -30% -20%;
  }

  58% {
    opacity: 0.85;
  }

  78%,
  100% {
    opacity: 0;
    translate: 32% 18%;
  }
}

.ticker {
  width: 100%;
  height: 60px;
  background: var(--blue-2);
  color: var(--blue);
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 30px;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  gap: 72px;
  padding: 0 28px;
  font-size: 28px;
  font-weight: normal;
  white-space: nowrap;
  animation: ticker-slide 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.ticker img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.who-section {
  position: relative;
  width: 100%;
  min-height: 1060px;
  margin: 0;
  padding: 102px max(48px, calc((100vw - 1568px) / 2 + 56px)) 118px;
  background: linear-gradient(180deg, #ffffff 0%, var(--soft-blue) 100%);
  overflow: hidden;
}

.world-map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  pointer-events: none;
}

.who-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.who-heading p,
.section-title p {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.who-heading h2,
.section-title h2 {
  margin: 0;
  color: var(--blue);
  font-size: 64px;
  font-weight: 600;
  line-height: 0.98;
}

.who-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 590px minmax(0, 670px);
  align-items: center;
  gap: 118px;
  max-width: 1456px;
  margin: 0 auto;
}

.who-images {
  position: relative;
  display: grid;
  gap: 28px;
}

.who-video {
  position: relative;
  display: block;
  width: 450px;
  height: 274px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: #000000;
  cursor: pointer;
}

.who-main,
.who-small {
  border-radius: 26px;
  object-fit: cover;
  box-shadow: none;
}

.who-main {
  width: 100%;
  height: 100%;
}

.who-small {
  width: 590px;
  height: 218px;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.play-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.who-video:hover .play-button {
  transform: translate(-50%, -50%) scale(1.06);
}

.who-video.is-playing .who-main,
.who-video.is-playing .play-button {
  opacity: 0;
  pointer-events: none;
}

.who-video-player {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(14, 62, 129, 0.78), rgba(14, 62, 129, 0.78)),
    url("assets/videothumb.svg") center / cover no-repeat;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.who-copy {
  position: relative;
  align-self: start;
  padding-top: 8px;
}

.who-copy p {
  max-width: 666px;
  margin-bottom: 20px;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.quality-seal {
  position: absolute;
  right: -10px;
  top: 155px;
  z-index: 3;
  width: 120px;
  height: 120px;
}

.quality-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.progress-list {
  display: grid;
  gap: 24px;
  width: min(100%, 660px);
  margin-top: 34px;
}

.progress-item {
  display: grid;
  gap: 8px;
}

.progress-label {
  display: grid;
  grid-template-columns: 1fr 54px;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  color: #000000;
  font-size: 18px;
  line-height: 1;
}

.progress-label span {
  text-align: right;
}

.progress-label strong,
.progress-label span {
  font-size: 18px;
  font-weight: 800;
}

.progress-bar {
  height: 7px;
  overflow: visible;
  border-radius: 999px;
  background: var(--blue-2);
}

.progress-bar span {
  position: relative;
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transition: width 1.15s ease;
}

.who-section.progress-active .progress-bar span {
  width: var(--value);
}

.progress-bar span::after {
  position: absolute;
  right: -12px;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 5px solid var(--blue);
  border-radius: 50%;
  background: var(--soft-blue);
  content: "";
  transform: translateY(-50%);
}

.about-btn {
  width: 204px;
  height: 46px;
  margin-top: 42px;
}

@keyframes button-text-slide {
  0% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-130%);
  }

  46% {
    transform: translateY(130%);
  }

  100% {
    transform: translateY(0);
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1456px;
  margin: 112px auto 0;
}

.about-stats span {
  display: grid;
  justify-items: center;
  gap: 15px;
  min-height: 128px;
  padding: 0 0px;
  border-right: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-size: 18px;
  font-weight: normal;
  text-align: center;
}

.about-stats span:last-child {
  border-right: 0;
}

.about-stats img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform 0.22s ease;
}

.about-stats span:hover img {
  transform: scale(1.22);
}

.about-stats strong {
  font-size: 48px;
  font-weight: normal;
  line-height: 0.95;
}

.about-stats small {
  color: #000000;
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
}

.products-section {
  width: var(--container);
  margin: 0 auto;
  padding: 0px 0 0;
}

.products-section {
  padding-top: 80px;
}

.section-title {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.products-section .section-title {
  max-width: 900px;
  margin-bottom: 30px;
}

.products-section .section-title p {
  margin-bottom: 18px;
}

.products-section .section-title h2 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.product-slider {
  /* max-width: 1390px; */
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
  overscroll-behavior: contain;
  touch-action: pan-y;
  user-select: none;
}

.product-slider.is-dragging {
  cursor: grabbing;
}

.product-grid {
  display: flex;
  gap: 38px;
  margin: 0;
  transition: transform 0.45s ease;
  will-change: transform;
}

.product-card {
  --card-glow-x: 50%;
  --card-glow-y: 50%;
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  position: relative;
  display: grid;
  grid-template-rows: auto 76px;
  flex: 0 0 calc((100% - 114px) / 4);
  min-height: 405px;
  padding-bottom: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--blue);
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 12px 28px rgba(14, 62, 129, 0.08);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  transform-style: preserve-3d;
}

.product-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, rgba(218, 232, 251, 0.2), rgba(218, 232, 251, 0) 42%);
  opacity: 0;
  pointer-events: none;
  content: "";
  transition: opacity 0.28s ease;
}

.product-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  border: 1px solid rgba(218, 232, 251, 0.74);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  opacity: 0;
  pointer-events: none;
  content: "";
  transition: opacity 0.28s ease;
}

.product-card:hover > img {
  background-color: transparent;
  filter: saturate(1.08) contrast(1.03);
  transform: translateZ(18px) scale(1.015);
}

.product-card:hover > h3 {
  color: var(--soft-blue);
}

.product-card:hover {
  transform: perspective(900px) translateY(-8px) rotateX(var(--card-tilt-x)) rotateY(var(--card-tilt-y));
  box-shadow:
    0 22px 48px rgba(14, 62, 129, 0.24),
    0 0 0 1px rgba(218, 232, 251, 0.55);
}

.product-card:hover::before,
.product-card:hover::after {
  opacity: 1;
}

.product-card > img {
  grid-row: 1;
  width: 100%;
  height: auto;
  margin-top: 0;
  border-radius: 30px 30px 22px 22px;
  object-fit: contain;
  transition: background-color 0.22s ease, filter 0.28s ease, transform 0.28s ease;
}

.product-card h3 {
  position: relative;
  grid-row: 2;
  align-self: center;
  z-index: 3;
  transform: translateZ(30px);
  left: auto;
  bottom: auto;
  max-width: 100%;
  margin: 0;
  padding: 0 74px 0 18px;
  border-radius: 0;
  background: transparent;
  color: var(--soft-blue);
  box-shadow: none;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
  overflow-wrap: anywhere;
  transition: color 0.22s ease;
}

.product-card:hover > h3 {
  color: var(--soft-blue);
}

.product-card h3 span {
  display: block;
}

.product-card p {
  display: none;
}

.product-arrow {
  position: absolute;
  right: 14px;
  bottom: 17px;
  display: block;
  width: 42px;
  height: 42px;
  z-index: 4;
  transition: transform 0.22s ease;
}

.product-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card:hover .product-arrow {
  transform: translateX(4px) translateZ(34px) scale(1.08);
}

.product-controls {
  display: grid;
  grid-template-columns: 160px 1fr 180px;
  align-items: center;
  /* max-width: 1390px; */
  margin: 58px auto 0;
}

.product-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.product-nav button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-nav img {
  width: 28px;
  height: 16px;
  object-fit: contain;
}

.product-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.product-dots span {
  width: 10px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
  cursor: pointer;
}

.product-dots .active {
  background: var(--blue-2);
}
.form-row br {
    display: none;
}
.products-btn {
  justify-self: end;
  width: 204px;
  height: 46px;
}

.partners-section {
  position: relative;
  width: 100%;
  /* min-height: 690px; */
  margin-top: 90px;
  padding: 0 max(48px, calc((100vw - 1568px) / 2));
  background: linear-gradient(180deg, #dae8fb 0%, #dae8fb 58%, #ffffff 100%);
  overflow: hidden;
}

.partners-section::before,
.partners-section::after {
  display: none;
}

.partners-section .section-title {
  position: absolute;
  left: 50%;
  top: 100px;
  z-index: 4;
  width: min(980px, calc(100vw - 80px));
  margin: 0;
  transform: translateX(-50%);
}

.partners-section .section-title p {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.partners-section .section-title h2 {
  color: var(--blue);
  font-size: 64px;
  font-weight: 600;
  line-height: 0.98;
}

.partner-orbit {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1500px, 100%);
  height: 620px;
  margin: 150px auto 0;
}

.partner-logo,
.partner-ghost {
  position: absolute;
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  padding: 10px;
  border-radius: 24px;
  background: #ffffff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  box-shadow: none;
  overflow: visible;
}

.partner-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.03));
  box-shadow: none;
  opacity: 0.78;
  pointer-events: none;
}

.partner-logo img {
  width: 150px;
  height: 114px;
  object-fit: contain;
  transform-origin: center;
}

@media (prefers-reduced-motion: no-preference) {
  .partner-logo {
    animation: partner-logo-float 6.6s ease-in-out infinite;
  }

  .partner-logo img {
    animation: partner-logo-breathe 5.8s ease-in-out infinite;
  }

  .partner-ghost {
    animation: partner-ghost-drift 7s ease-in-out infinite;
  }

  .logo-1,
  .ghost-1 {
    animation-delay: 0s;
  }

  .logo-2,
  .ghost-2 {
    animation-delay: 0.35s;
  }

  .logo-3,
  .ghost-3 {
    animation-delay: 0.7s;
  }

  .logo-4,
  .ghost-4 {
    animation-delay: 1.05s;
  }

  .logo-5,
  .ghost-5 {
    animation-delay: 1.4s;
  }

  .logo-6,
  .ghost-6 {
    animation-delay: 1.75s;
  }

  .logo-7,
  .ghost-7 {
    animation-delay: 2.1s;
  }

  .logo-8,
  .ghost-8 {
    animation-delay: 2.45s;
  }

  .logo-9 {
    animation-delay: 2.8s;
  }

  .logo-10 {
    animation-delay: 3.15s;
  }

  .logo-11 {
    animation-delay: 3.5s;
  }

  .logo-12 {
    animation-delay: 3.85s;
  }

  .logo-13 {
    animation-delay: 4.2s;
  }
}

@keyframes partner-logo-float {
  0%,
  100% {
    translate: 0 0;
  }

  38% {
    translate: 0 -14px;
  }

  70% {
    translate: 0 5px;
  }
}

@keyframes partner-logo-breathe {
  0%,
  100% {
    scale: 1;
  }

  48% {
    scale: 1.045;
  }
}

@keyframes partner-ghost-drift {
  0%,
  100% {
    opacity: 0.55;
    translate: 0 0;
  }

  45% {
    opacity: 0.86;
    translate: 0 -18px;
  }

  78% {
    opacity: 0.68;
    translate: 0 7px;
  }
}

.logo-1 {
  left: 0;
  top: 0;
}

.logo-2 {
  left: 0;
  top: 165px;
}

.logo-3 {
  left: 160px;
  top: 85px;
}

.logo-4 {
  left: 160px;
  top: 250px;
}

.logo-5 {
  left: 320px;
  top: 186px;
}

.logo-6 {
  left: 480px;
  top: 285px;
}

.logo-7 {
  left: 640px;
  top: 225px;
}

.logo-8 {
    left: 800px;
    top: 300px;
}

.logo-9 {
  left: 960px;
  top: 186px;
}

.logo-10 {
  left: 1120px;
  top: 85px;
}

.logo-11 {
  left: 1120px;
  top: 250px;
}

.logo-12 {
  right: 5px;
  top: 0;
}

.logo-13 {
  right: 5px;
  top: 165px;
}

.ghost-1 {
  left: 0;
  top: 330px;
}

.ghost-2 {
  left: 160px;
  top: 415px;
}

.ghost-3 {
  left: 320px;
  top: 355px;
}

.ghost-4 {
  left: 480px;
  top: 450px;
}

.ghost-5 {
    left: 640px;
    top: 390px;
}

.ghost-6 {
    left: 800px;
    top: 465px;
}

.ghost-7 {
  left: 960px;
  top: 350px;
}

.ghost-8 {
  right: 5px;
  top: 330px;
}

.ordering-section {
  width: var(--container);
  margin: 0px auto 0;
  padding-bottom: 110px;
}

.ordering-card {
  padding: 60px 40px 60px;
  border-radius: 28px;
  background: var(--blue);
  color: #ffffff;
  text-align: center;
}

.ordering-card > p {
  margin: 0 0 18px;
  color: #dbeaff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.ordering-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(44px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 0.95;
}

.ordering-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 70px;
}

.ordering-steps::before,
.ordering-steps::after {
  position: absolute;
  top: 45px;
  width: calc((100% - 112px) / 3);
  border-top: 2px dashed rgba(255, 255, 255, 0.32);
  content: "";
}

.ordering-steps::before {
  left: calc(33.333% + 28px);
  transform: translateX(-50%);
}

.ordering-steps::after {
  right: calc(33.333% + 28px);
  transform: translateX(50%);
}

.ordering-steps article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  color: #ffffff;
}

.ordering-icon {
  display: grid;
  place-items: center;
  width: 85px;
  height: 85px;
  margin-bottom: 25px;
  border-radius: 16px;
  background: #dbeaff;
  transform-origin: center;
}

.ordering-icon img {
  width: 100px;
  height: 40px;
  object-fit: contain;
  transform-origin: center;
}

@media (prefers-reduced-motion: no-preference) {
  .ordering-steps::before,
  .ordering-steps::after {
    animation: ordering-line-draw 3.8s ease-in-out infinite;
    transform-origin: left center;
  }

  .ordering-steps::after {
    animation-delay: 0.45s;
  }

  .ordering-steps article {
    animation: ordering-step-rise 5.4s ease-in-out infinite;
  }

  .ordering-icon {
    animation: ordering-icon-float 4.6s ease-in-out infinite;
  }

  .ordering-icon img {
    animation: ordering-icon-pop 4.6s ease-in-out infinite;
  }

  .ordering-steps article:nth-child(2),
  .ordering-steps article:nth-child(2) .ordering-icon,
  .ordering-steps article:nth-child(2) .ordering-icon img {
    animation-delay: 0.55s;
  }

  .ordering-steps article:nth-child(3),
  .ordering-steps article:nth-child(3) .ordering-icon,
  .ordering-steps article:nth-child(3) .ordering-icon img {
    animation-delay: 1.1s;
  }
}

@keyframes ordering-line-draw {
  0%,
  18% {
    opacity: 0.32;
    scale: 0.15 1;
  }

  44%,
  100% {
    opacity: 0.5;
    scale: 1 1;
  }
}

@keyframes ordering-step-rise {
  0%,
  100% {
    translate: 0 0;
  }

  42% {
    translate: 0 -8px;
  }

  68% {
    translate: 0 3px;
  }
}

@keyframes ordering-icon-float {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(218, 232, 251, 0);
    translate: 0 0;
  }

  42% {
    box-shadow: 0 16px 30px rgba(218, 232, 251, 0.18);
    translate: 0 -10px;
  }

  68% {
    translate: 0 4px;
  }
}

@keyframes ordering-icon-pop {
  0%,
  100% {
    scale: 1;
  }

  42% {
    scale: 1.1;
  }

  68% {
    scale: 0.98;
  }
}

.ordering-steps h3 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 28px;
  font-weight: normal;
  line-height: 1;
}

.ordering-steps p {
  max-width: 400px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.40;
}

.testimonials-section {
  width: 100%;
  margin: 0;
  padding: 0 0 96px;
  overflow: hidden;
}

.testimonials-heading {
  max-width: 950px;
  margin: 0 auto 30px;
  text-align: center;
}

.testimonials-heading p {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.testimonials-heading h2 {
  max-width: 950px;
  margin: 0 auto;
  color: var(--blue);
  font-size: 64px;
  font-weight: 600;
  line-height: 0.98;
}

.testimonial-slider {
  position: relative;
  width: 100%;
}

.testimonial-viewport {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  padding: 0;
}

.testimonial-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.testimonial-card {
  position: absolute;
  left: 50%;
  top: 30px;
  display: flex;
  flex-direction: column;
  width: 440px;
  height: 400px;
  padding: 38px 34px 28px;
  border-radius: 40px;
  background: var(--soft-blue);
  color: #000000;
  opacity: 0;
  transform: translateX(-50%) scale(0.9);
  filter: blur(0);
  transition:
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card.is-center {
  box-shadow: 0 18px 40px rgba(14, 62, 129, 0.08);
}

.testimonial-card.is-center {
  z-index: 3;
  opacity: 1;
  transform: translateX(-50%) rotate(0deg);
}

.testimonial-card.is-left {
  z-index: 2;
  opacity: 1;
  transform: translateX(calc(-50% - 475px)) rotate(-11deg);
  top: 70px;
}

.testimonial-card.is-right {
  z-index: 2;
  opacity: 1;
  transform: translateX(calc(-72% + 570px)) rotate(10deg);
  top: 70px;
}

.testimonial-card.is-far-left {
  z-index: 1;
  opacity: 1;
  transform: translateX(calc(-20% - 1062px)) rotate(-20deg);
  top: 200px;
}

.testimonial-card.is-far-right {
  z-index: 1;
  opacity: 1;
  transform: translateX(calc(-90% + 1105px)) rotate(18deg);
  top: 180px;
}

.testimonial-card.is-wrapping {
  opacity: 0;
  transition: none;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 5px;
  color: #000000;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.testimonial-card small {
  display: block;
  margin-bottom: 30px;
  color: #2F4550;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.testimonial-card h3 {
  max-width: 352px;
  margin: 0 0 30px;
  color: #000000;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.28;
}

.testimonial-card p {
  max-width: 370px;
  margin: 0 0 auto;
  color: #000000;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.32;
}

.testimonial-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.testimonial-foot > span {
  height: 1px;
  background: rgba(0, 0, 0, 0.34);
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rating i {
  width: 18px;
  height: 18px;
  background: #ffca17;
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}

.rating b {
  margin-left: 8px;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-controls {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 36px auto 36px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: -90px;
}

.testimonial-controls button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

.testimonial-controls img {
  width: 28px;
  height: 16px;
  object-fit: contain;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 36px;
}

.testimonial-dots span {
  width: 32px;
  height: 5px;
  border-radius: 999px;
  background: var(--blue);
}

.testimonial-dots .active {
  background: var(--blue-2);
}

.testimonial-see-all {
  position: relative;
  z-index: 10;
  display: flex;
  margin: 16px auto 0;
  width: 204px;
  height: 46px;
  font-size: 18px;
  font-weight: 700;
}

.faqs-section {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 96px;
}

.faqs-heading {
  max-width: 760px;
  margin: 0 0 58px;
}

.faqs-heading p {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.faqs-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: 64px;
  font-weight: 700;
  line-height: 0.98;
}

.faqs-grid {
  display: grid;
  grid-template-columns: minmax(0, 838px) minmax(360px, 620px);
  align-items: start;
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  border-left: 0 solid var(--blue);
  border-radius: 32px;
  background: var(--soft-blue);
  color: var(--blue);
  transition:
    border-left-width 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.faq-item.is-open {
  border-left: 8px solid var(--blue);
  border-radius: 26px 32px 32px 26px;
}

.faq-item:hover,
.faq-item:focus-within {
  border-left-width: 8px;
  border-radius: 26px 32px 32px 26px;
  box-shadow: 0 16px 34px rgba(14, 62, 129, 0.12);
  transform: translateY(-3px);
}

.faq-question {
  display: grid;
  grid-template-columns: 1fr 38px;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 68px;
  padding: 0 18px 0 46px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.12;
  text-align: left;
  cursor: pointer;
}

.faq-item.is-open .faq-question {
  min-height: 68px;
  padding-top: 20px;
  padding-bottom: 8px;
}

.faq-question i {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-2);
  color: var(--blue);
  transition:
    background 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.faq-item:hover .faq-question i,
.faq-item:focus-within .faq-question i {
  background: var(--blue);
  color: #ffffff;
  transform: rotate(90deg) scale(1.06);
}

.faq-question i::before,
.faq-question i::after {
  position: absolute;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.faq-question i::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question i {
  background: var(--blue);
  color: #ffffff;
  transform: rotate(0deg) scale(1);
}

.faq-item.is-open:hover .faq-question i,
.faq-item.is-open:focus-within .faq-question i {
  transform: rotate(0deg) scale(1.06);
}

.faq-item.is-open .faq-question i::after {
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.50;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding: 0 42px 34px 46px;
}

.faq-contact-card {
  position: sticky;
  top: 28px;
  align-self: start;
  min-height: 416px;
  padding: 50px 43px 54px;
  border-radius: 34px;
  background: var(--blue);
  color: #ffffff;
}

.faq-contact-card h3 {
  margin: 0 0 12px;
  color: #dbeaff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.faq-contact-card p {
  max-width: 430px;
  margin: 0 0 62px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.faq-phone,
.faq-email {
  display: block;
  color: #dbeaff;
  line-height: 1;
  transition: color 0.22s ease, transform 0.22s ease;
}

.faq-phone:hover,
.faq-email:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.faq-phone {
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
}

.faq-email {
  margin-bottom: 64px;
  font-size: 24px;
  font-weight: 500;
}

.faq-see-all {
  width: 100%;
  height: 46px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}

.faq-see-all:hover {
  background: var(--orange);
  color: #ffffff;
}

.blogs-section {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 120px;
}

.blogs-heading {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.blogs-heading p {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.blogs-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: 64px;
  font-weight: 700;
  line-height: 0.98;
}

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

.blog-card {
  position: relative;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: #000000;
}

.blog-image {
  position: relative;
  display: grid;
  place-items: center;
  height: 300px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(218, 232, 251, 0.45)),
    #ffffff;
  transition: margin-bottom 0.24s ease, box-shadow 0.24s ease;
}

.blog-image span {
  position: absolute;
  left: 10px;
  top: 2px;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: auto;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card:hover .blog-image {
  margin-bottom: 16px;
}

.blog-content {
  min-height: 168px;
  padding: 28px 22px 27px;
  border-radius: 30px;
  background: var(--soft-blue);
}

.blog-content h3 {
  max-width: 430px;
  margin: 0 0 16px;
  color: #000000;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.10;
}

.blog-content p {
  display: -webkit-box;
  overflow: hidden;
  max-width: 430px;
  margin: 0 0 22px;
  color: #000000;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5795EC;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  transition: color 0.22s ease, transform 0.22s ease;
}

.blog-content a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: transform 0.22s ease;
}

.blog-content a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.blog-content a:hover img {
  transform: translateX(2px);
}

.blog-see-all {
  display: flex;
  width: 154px;
  height: 46px;
  margin: 34px auto 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
}

.footer-touch {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #ffffff;
}

.footer-tags {
  position: absolute;
  left: 50%;
  top: 60px;
  z-index: 3;
  width: min(1480px, calc(100vw - 96px));
  height: 280px;
  transform: translateX(-50%);
}

.footer-tags span {
  --tag-x: 0px;
  --tag-y: 0px;
  --tag-rotate: 0deg;
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  color: #0e3e81;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: grab;
  touch-action: none;
  user-select: none;
  transform: translate3d(var(--tag-x), var(--tag-y), 0) rotate(var(--tag-rotate));
  will-change: transform;
  transition: box-shadow 0.24s ease, scale 0.24s ease;
}

.footer-tags span.is-dragging {
  z-index: 5;
  cursor: grabbing;
  scale: 1.04;
  box-shadow: 0 18px 34px rgba(14, 62, 129, 0.16);
}

.footer-tags .tag-blue {
  background: #A3C5F5;
}

.footer-tags .tag-green {
  background: #E8F4D5;
}

.footer-tags span:nth-child(3n) {
  background: #DAE8FB;
}

.footer-tags .tag-frontlit {
  left: 118px;
  top: 52px;
  --tag-rotate: -43deg;
}

.footer-tags .tag-lamination {
  left: 270px;
  top: -20px;
  --tag-rotate: 1deg;
}

.footer-tags .tag-large-format {
  left: 236px;
  top: 30px;
  --tag-rotate: -8deg;
}

.footer-tags .tag-reflector {
  left: 550px;
  top: 22px;
  --tag-rotate: 15deg;
}

.footer-tags .tag-backlit {
  left: 745px;
  top: 0;
}

.footer-tags .tag-diamond {
  left: 880px;
  right: auto;
  top: 2px;
  --tag-rotate: -24deg;
}

.footer-tags .tag-self-top {
  left: 1138px;
  right: auto;
  top: 45px;
  --tag-rotate: 26deg;
}

.footer-tags .tag-promotion-left {
  left: 82px;
  top: 105px;
  --tag-rotate: -5deg;
}

.footer-tags .tag-display-left {
  left: 420px;
  top: 105px;
  --tag-rotate: 10deg;
}

.footer-tags .tag-agency {
  left: 690px;
  top: 103px;
}

.footer-tags .tag-trade {
  left: 1000px;
  right: auto;
  top: 92px;
  --tag-rotate: 5deg;
}

.footer-tags .tag-promotion-bottom {
  left: 0;
  top: 130px;
  --tag-rotate: 12deg;
}

.footer-tags .tag-cold {
  left: 238px;
  top: 126px;
  --tag-rotate: -1deg;
}

.footer-tags .tag-vinyl {
  left: 650px;
  top: 124px;
  --tag-rotate: -18deg;
}

.footer-tags .tag-pvc {
  left: 790px;
  right: auto;
  top: 122px;
  --tag-rotate: -5deg;
}

.footer-tags .tag-display-right {
  left: 1128px;
  right: auto;
  top: 124px;
}

.footer-tags .tag-self-bottom {
  left: 1032px;
  right: auto;
  top: 176px;
}

.footer-touch-title {
  position: absolute;
  left: 50%;
  bottom: 0px;
  z-index: 1;
  width: min(2040px, 100vw);
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 2;
  background: var(--blue);
  color: #ffffff;
}

.footer-main::before {
  position: absolute;
  left: 0;
  top: -50px;
  z-index: 1;
  width: 100%;
  height: 144px;
  background: url("assets/footertopshape.png") center bottom / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.85fr 1.15fr;
  gap: 68px;
  width: var(--container);
  margin: 0 auto;
  padding: 50px 0 50px;
}

.footer-brand img {
  width: 138px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 32px;
}

.footer-brand p,
.footer-newsletter p {
  max-width: 320px;
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.30;
}

.footer-contact-list {
  display: grid;
  gap: 22px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 24px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
}

.footer-contact-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

.footer-contact-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-contact-list li > span:not(.footer-contact-icon),
.footer-contact-list a {
  display: block;
  padding-top: 1px;
}

.footer-contact-list a,
.footer-links a {
  color: #ffffff;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 15px;
  padding-top: 42px;
}

.footer-links h3,
.footer-newsletter h3 {
  margin: 0 0 36px;
  color: var(--blue-2);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.footer-links a {
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
}

.footer-contact-list a:hover,
.footer-links a:hover,
.footer-socials a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-newsletter {
  padding-top: 42px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 44px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--blue-2);
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-socials img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 200px) 134px;
  gap: 14px;
  margin-top: 24px;
}

.newsletter-form input,
.newsletter-form button {
  height: 40px;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: normal;
}

.newsletter-form input {
  width: 100%;
  padding: 0 18px;
  border: 1px solid var(--blue-2);
  background: transparent;
  color: #ffffff;
  outline: 0;
}

.newsletter-form input::placeholder {
  color: rgba(218, 232, 251, 0.58);
}

.newsletter-form button {
  border: 0;
  background: var(--soft-blue);
  color: var(--blue);
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.newsletter-form button:hover {
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  padding: 0 max(40px, calc((100vw - 1568px) / 2));
  background: var(--soft-blue);
  color: var(--blue);
}

.footer-bottom p {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
}

.campaign-cta {
  position: relative;
  width: var(--container);
  aspect-ratio: 1720 / 506;
  margin: 0 auto 40px;
}

.campaign-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.campaign-cta-content {
  position: absolute;
  left: 64px;
  top: 74px;
  z-index: 1;
  max-width: 620px;
  color: #ffffff;
}

.campaign-cta-content h2 {
  max-width: 560px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  line-height: 0.98;
}

.campaign-cta-content p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.2;
}

.campaign-cta-actions {
  position: absolute;
  left: 0;
  bottom: 85px;
  z-index: 1;
  display: flex;
  gap: 15px;
  align-items: center;
}

.campaign-primary,
.campaign-secondary {
  width: 204px;
  height: 46px;
  font-size: 18px;
}

.campaign-secondary {
  border: 2px solid var(--blue);
  background: #ffffff;
  color: var(--blue);
}

.campaign-secondary:hover {
  border-color: var(--orange);
  color: #ffffff;
}

@media (max-width: 1320px) {
  :root {
    --container: min(100vw - 48px, 1080px);
  }

  .site-header {
    grid-template-columns: 150px 1fr 120px;
  }

  .primary-nav {
    gap: 10px;
  }

  .primary-nav > a,
  .nav-item > a {
    min-width: auto;
    padding: 0 13px;
  }

  .hero {
    min-height: 950px;
  }

  .hero-copy,
  .quote-btn {
    position: static;
    margin: 28px auto 0;
  }

  .hero-copy {
    width: min(560px, 100%);
    text-align: center;
  }

  .quote-btn {
    display: flex;
  }

  .hero-gallery {
    grid-template-columns: repeat(6, 1fr);
    bottom: 0;
  }

  .store-card {
    grid-column: 1 / -1;
    order: -1;
  }

  .roll-card,
  .years-card,
  .display-card,
  .rolls-card {
    grid-column: span 3;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .who-images {
    min-height: 0;
  }

  .who-video {
    width: 100%;
    height: 250px;
  }

  .who-main,
  .who-small {
    width: 100%;
    height: 250px;
  }

  .who-small {
    margin-left: 0;
  }

  .quality-seal {
    left: auto;
    right: 22px;
    top: 214px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    flex-basis: calc((100% - 38px) / 2);
  }

  .product-controls {
    grid-template-columns: 120px 1fr 160px;
  }

  .partner-logo:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 1020px) {
  .partners-section {
    min-height: auto;
    padding: 34px 24px 42px;
  }

  .partners-section::before,
  .partners-section::after {
    display: none;
  }

  .partners-section .section-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin: 0 auto 24px;
  }

  .partner-orbit {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .partner-logo,
  .partner-ghost,
  .partner-logo:nth-child(n),
  .partner-ghost:nth-child(n) {
    position: relative;
    inset: auto;
  }

  .partner-ghost {
    display: none;
  }

  .ordering-card {
    padding: 42px 32px;
  }

  .ordering-steps {
    gap: 24px;
  }

  .testimonial-card {
    width: 380px;
    padding: 32px 26px 24px;
  }

  .testimonials-heading h2 {
    font-size: clamp(46px, 6vw, 64px);
  }

  .testimonial-card.is-left {
    transform: translateX(calc(-50% - 420px)) rotate(-8deg);
  }

  .testimonial-card.is-right {
    transform: translateX(calc(-50% + 420px)) rotate(8deg);
  }

  .testimonial-card.is-far-left {
    transform: translateX(calc(-50% - 840px)) rotate(-8deg);
  }

  .testimonial-card.is-far-right {
    transform: translateX(calc(-50% + 840px)) rotate(8deg);
  }

  .faqs-grid {
    grid-template-columns: 1fr;
  }

  .faq-contact-card {
    min-height: 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .campaign-cta-content {
    left: 42px;
    top: 52px;
  }

  .campaign-cta-content h2 {
    max-width: 430px;
    font-size: 38px;
  }

  .campaign-cta-actions {
    bottom: 54px;
    gap: 18px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 28px, 560px);
  }

  body {
    background: #ffffff;
  }

  .site-header {
    grid-template-columns: 128px 1fr;
    height: 92px;
  }

  .logo {
    width: 118px;
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .contact-btn {
    display: none;
  }

  .primary-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 92px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(14, 62, 129, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-item {
    display: grid;
  }

  .nav-item > a {
    width: 100%;
  }

  .has-submenu::after {
    display: none;
  }

  .products-submenu {
    position: static;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding: 0 18px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: none;
    transform: translateY(-6px);
    transition:
      max-height 0.26s ease,
      margin-top 0.26s ease,
      padding 0.26s ease,
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0s linear 0.26s;
  }

  .has-submenu:hover .products-submenu,
  .has-submenu:focus-within .products-submenu {
    max-height: 260px;
    margin-top: 10px;
    padding: 16px 18px 20px;
  }

  .menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
    padding: 36px 0 40px;
  }

  .float-icon {
    display: none;
  }

  .trusted {
    width: 230px;
    height: 34px;
    margin-bottom: 18px;
    font-size: 18px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.08;
  }

  .hero-copy,
  .quote-btn {
    position: static;
  }

  .hero-copy {
    width: min(100%, 340px);
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 1.35;
    text-align: center;
  }

  .quote-btn {
    display: flex;
    width: 192px;
    height: 42px;
    margin: 22px auto 0;
  }

  .hero-gallery {
    position: static;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .roll-card,
  .years-card,
  .display-card,
  .rolls-card,
  .store-card {
    grid-column: auto;
    height: 232px;
    border-radius: 28px;
  }

  .years-card {
    height: auto;
    grid-template-rows: 96px 118px;
  }

  .years-card strong,
  .years-card p {
    border-radius: 28px;
  }

  .years-card strong {
    font-size: 48px;
  }

  .years-card p {
    min-height: 118px;
    padding: 18px 24px;
    font-size: 16px;
  }

  .ticker-track {
    gap: 34px;
    font-size: 18px;
  }

  .who-section {
    min-height: auto;
    padding: 72px 14px 56px;
  }

  .world-map {
    height: 100%;
  }

  .who-heading h2,
  .section-title h2 {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.08;
  }

  .products-section .section-title h2 {
    max-width: 360px;
    font-size: clamp(32px, 8.8vw, 40px);
    line-height: 1.08;
  }

  .who-grid {
    gap: 24px;
  }

  .who-main,
  .who-small {
    width: 100%;
    height: 220px;
  }

  .who-video {
    width: 100%;
    height: 220px;
  }

  .who-small {
    margin: 14px 0 0;
  }

  .who-images {
    gap: 0;
  }

  .quality-seal {
    right: 16px;
    top: 178px;
    width: 78px;
    height: 78px;
  }

  .progress-label {
    grid-template-columns: 1fr 48px;
    gap: 16px;
  }

  .about-stats span {
    min-height: 0;
    gap: 7px;
    padding: 18px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  }

  .about-stats img {
    width: 34px;
    height: 34px;
  }

  .about-stats strong {
    font-size: clamp(31px, 9.5vw, 42px);
    line-height: 1;
  }

  .about-stats small {
    font-size: 14px;
    line-height: 1.15;
  }

  .about-stats span:last-child {
    border-bottom: 0;
  }

  .about-stats,
  .partner-orbit {
    grid-template-columns: 1fr;
  }

  .product-card {
    align-content: start;
    grid-template-rows: auto 68px;
    flex-basis: 100%;
    min-height: 0;
    padding-bottom: 0;
    overflow: hidden;
    border-radius: 24px;
  }

  .product-card:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(14, 62, 129, 0.08);
  }

  .product-card:hover::before {
    opacity: 0;
  }

  .product-card:hover > img {
    filter: none;
    transform: none;
  }

  .product-card > img {
    height: auto;
    margin-top: 0;
    border-radius: 24px 24px 18px 18px;
    object-fit: contain;
  }

  .product-card h3 {
    left: auto;
    top: auto;
    bottom: auto;
    max-width: 100%;
    margin: 0;
    padding: 0 66px 0 16px;
    font-size: 19px;
    line-height: 1.12;
  }
  .footer-main::before {
    display: none;
  }

  .product-card:hover > h3 {
    left: auto;
    top: auto;
    bottom: auto;
    color: var(--soft-blue);
  }

  .product-arrow {
    right: 12px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }

  .product-card:hover .product-arrow {
    transform: none;
  }

  .product-controls {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
  }

  .product-nav {
    order: 2;
  }

  .product-dots {
    display: none;
  }

  .products-btn {
    order: 3;
    justify-self: center;
  }

  .partner-orbit {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 8px;
  }

  .partners-section {
    margin-top: 44px;
    padding: 34px 14px 42px;
  }

  .partners-section .section-title h2 {
    font-size: clamp(32px, 8vw, 42px);
  }

  .partner-logo,
  .partner-ghost {
    width: 100%;
    height: 156px;
    border-radius: 18px;
    overflow: hidden;
  }

  .partner-logo img {
    width: 82%;
    height: 112px;
  }

  .partner-logo:nth-child(n) {
    transform: none;
    translate: none;
    rotate: none;
    animation: none;
  }

  .ordering-section {
    margin-top: 54px;
    padding-bottom: 56px;
  }

  .ordering-card {
    padding: 34px 22px 36px;
    border-radius: 24px;
  }

  .ordering-card > p {
    font-size: 14px;
  }

  .ordering-card h2 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(26px, 7.8vw, 32px);
    line-height: 1.08;
  }

  .ordering-steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }

  .ordering-steps::before,
  .ordering-steps::after {
    display: none;
  }

  .ordering-steps p {
    max-width: 320px;
  }

  .testimonials-section {
    padding-bottom: 60px;
  }

  .testimonials-heading {
    margin-bottom: 32px;
  }

  .testimonials-heading p {
    font-size: 18px;
  }

  .testimonials-heading h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .testimonial-viewport {
    height: 430px;
  }

  .testimonial-card {
    top: 0;
    width: min(86vw, 360px);
    height: 360px;
    padding: 26px 22px 24px;
    border-radius: 18px;
  }

  .testimonial-card.is-left {
    opacity: 0;
    transform: translateX(calc(-50% - 100vw)) rotate(0deg);
  }

  .testimonial-card.is-right {
    opacity: 0;
    transform: translateX(calc(-50% + 100vw)) rotate(0deg);
  }

  .testimonial-card.is-far-left,
  .testimonial-card.is-far-right {
    opacity: 0;
  }

  .testimonial-card p,
  .testimonial-card h3 {
    font-size: 15px;
    line-height: 1.28;
  }

  .testimonial-card strong {
    font-size: 25px;
  }

  .testimonial-card small {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .testimonial-card h3 {
    margin-bottom: 22px;
  }

  .testimonial-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }

  .testimonial-controls {
    margin-top: -46px;
  }

  .testimonial-see-all {
    margin-top: 18px;
  }

  .faqs-section {
    padding-bottom: 60px;
  }

  .faqs-heading {
    margin-bottom: 34px;
  }

  .faqs-heading p {
    font-size: 18px;
  }

  .faqs-heading h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .faqs-grid {
    gap: 22px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item,
  .faq-item.is-open {
    border-radius: 20px;
  }

  .faq-item.is-open {
    border-left-width: 5px;
  }

  .faq-question {
    grid-template-columns: 1fr 30px;
    min-height: 54px;
    padding: 0 12px 0 22px;
    gap: 12px;
    font-size: 16px;
  }

  .faq-item.is-open .faq-question {
    min-height: 58px;
    padding-top: 15px;
    padding-bottom: 8px;
  }

  .faq-question i {
    width: 30px;
    height: 30px;
  }

  .faq-answer > p {
    font-size: 15px;
    line-height: 1.24;
  }

  .faq-item.is-open .faq-answer > p {
    padding: 0 18px 22px 22px;
  }

  .faq-contact-card {
    position: static;
    padding: 32px 24px;
    border-radius: 24px;
  }

  .faq-contact-card h3 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .faq-contact-card p {
    margin-bottom: 38px;
  }

  .faq-phone {
    font-size: clamp(28px, 8vw, 34px);
  }

  .faq-email {
    margin-bottom: 40px;
    font-size: 20px;
  }

  .blogs-section {
    padding-bottom: 64px;
  }

  .blogs-heading {
    margin-bottom: 32px;
  }

  .blogs-heading p {
    font-size: 18px;
  }

  .blogs-heading h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .blog-grid {
    gap: 22px;
  }

  .blog-image {
    height: 240px;
    border-radius: 20px;
  }

  .blog-card {
    border-radius: 20px;
  }

  .blog-content {
    min-height: 0;
    padding: 24px 18px 26px;
  }

  .blog-content h3 {
    font-size: 20px;
  }

  .campaign-cta {
    aspect-ratio: auto;
    min-height: 0;
    padding: 34px 24px 28px;
    margin-bottom: 56px;
    overflow: hidden;
    border-radius: 26px;
    background: var(--blue);
  }

  .campaign-cta-bg {
    inset: auto -120px 0 auto;
    width: 520px;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 0.34;
  }

  .campaign-cta-content {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
  }

  .campaign-cta-content h2 {
    max-width: 300px;
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.08;
  }

  .campaign-cta-content p {
    max-width: 270px;
    font-size: 16px;
  }

  .campaign-cta-actions {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    display: grid;
    gap: 12px;
    width: min(100%, 220px);
    margin-top: 56px;
  }

  .campaign-primary,
  .campaign-secondary {
    width: 100%;
    max-width: none;
  }

}

@media (max-width: 1320px) {
  .footer-touch {
    height: 280px;
  }

  .footer-tags {
    top: 42px;
    width: calc(100vw - 48px);
    transform: translateX(-50%) scale(0.82);
    transform-origin: top center;
  }

  .footer-touch-title {
    width: 128vw;
    bottom: -4px;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 34px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1020px) {
  .footer-touch {
    height: 255px;
  }

  .footer-tags {
    top: 34px;
    transform: translateX(-50%) scale(0.68);
  }

  .footer-touch-title {
    width: 146vw;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 56px;
    padding: 58px 0 46px;
  }

  .footer-links,
  .footer-newsletter {
    padding-top: 0;
  }

  .footer-links h3,
  .footer-newsletter h3 {
    margin-bottom: 24px;
  }

  .newsletter-form {
    grid-template-columns: minmax(0, 1fr) 126px;
  }
}

@media (max-width: 820px) {
  .footer-touch {
    height: 185px;
  }

  .footer-tags {
    top: 12px;
    height: 130px;
    width: calc(100vw - 28px);
    transform: translateX(-50%);
  }

  .footer-touch-title {
    bottom: 3px;
    width: 100vw;
  }

  .footer-tags span {
    height: 34px;
    min-width: auto;
    padding: 0 15px;
    font-size: 12px;
  }

  .footer-tags span:nth-child(n + 8) {
    display: none;
  }

  .footer-tags .tag-frontlit {
    left: 2px;
    top: 18px;
  }

  .footer-tags .tag-lamination {
    left: 80px;
    top: 0;
  }

  .footer-tags .tag-large-format {
    left: 88px;
    top: 38px;
  }

  .footer-tags .tag-reflector {
    left: 190px;
    top: 16px;
  }

  .footer-tags .tag-backlit {
    left: auto;
    right: 8px;
    top: 0;
  }

  .footer-tags .tag-diamond {
    left: 138px;
    right: auto;
    top: 74px;
  }

  .footer-tags .tag-self-top {
    right: 0;
    top: 44px;
  }

  .footer-tags .tag-promotion-left {
    left: 8px;
    top: 74px;
  }

  .footer-tags .tag-display-left {
    left: 104px;
    top: 106px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 54px 0 40px;
  }

  .footer-brand img {
    width: 132px;
    height: auto;
    margin-bottom: 20px;
  }

  .footer-brand p,
  .footer-newsletter p {
    font-size: 16px;
    line-height: 1.35;
  }

  .footer-contact-list {
    gap: 16px;
    margin-top: 24px;
  }

  .footer-contact-list li {
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    font-size: 18px;
  }

  .footer-contact-list a,
  .footer-contact-list li > span:not(.footer-contact-icon) {
    overflow-wrap: anywhere;
  }

  .footer-links {
    gap: 13px;
  }

  .footer-links h3,
  .footer-newsletter h3 {
    margin-bottom: 18px;
  }

  .footer-socials {
    margin-bottom: 28px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
    justify-content: start;
    padding: 14px;
  }
}

.inner-main {
  overflow: hidden;
}

.faqs-main {
  overflow: visible;
}

.products-main {
  overflow: visible;
}

.inner-hero {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  position: relative;
  width: var(--container);
  min-height: 330px;
  margin: 0 auto 92px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  background-color: var(--blue);
  background-image: url("assets/whoback.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: soft-light;
  color: #ffffff;
  transform: perspective(1100px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 18px 52px rgba(14, 62, 129, 0.08);
}

.inner-hero::before,
.inner-hero::after {
  position: absolute;
  display: none;
  content: "";
  pointer-events: none;
}

.inner-hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 18px);
  transition: transform 0.28s ease;
}

.inner-hero-shapes span {
  position: absolute;
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  animation: inner-banner-float 6s ease-in-out infinite;
}

.inner-hero-shapes span:nth-child(1) {
  left: 7%;
  top: 22%;
  rotate: -12deg;
}

.inner-hero-shapes span:nth-child(2) {
  right: 8%;
  top: 18%;
  rotate: 10deg;
  animation-delay: 0.8s;
}

.inner-hero-shapes span:nth-child(3) {
  left: 13%;
  bottom: 18%;
  rotate: 8deg;
  animation-delay: 1.45s;
}

.inner-hero-shapes span:nth-child(4) {
  right: 16%;
  bottom: 21%;
  rotate: -9deg;
  animation-delay: 2.1s;
}

.inner-hero-ripple {
  position: absolute;
  left: var(--ripple-x);
  top: var(--ripple-y);
  z-index: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: inner-banner-ripple 0.72s ease-out forwards;
}

.inner-hero:hover,
.inner-hero.is-pointer-active {
  box-shadow: 0 24px 72px rgba(14, 62, 129, 0.16);
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 56px 24px;
  text-align: center;
  transform: translateZ(54px);
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, background 0.28s ease;
}

.inner-hero:hover .breadcrumbs,
.inner-hero.is-pointer-active .breadcrumbs {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.breadcrumbs a {
  color: #ffffff;
  transition: color 0.22s ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--blue-2);
}

.breadcrumbs span:last-child {
  color: #dbeaff;
}

.inner-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 82px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
  transition: transform 0.28s ease, text-shadow 0.28s ease;
}

.inner-hero:hover h1,
.inner-hero.is-pointer-active h1 {
  transform: translateY(4px) scale(1.015);
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

@keyframes inner-banner-float {
  0%,
  100% {
    translate: 0 0;
  }

  44% {
    translate: 0 -12px;
  }

  72% {
    translate: 8px 4px;
  }
}

@keyframes inner-banner-ripple {
  0% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .inner-hero,
  .inner-hero::before,
  .inner-hero::after,
  .inner-hero h1,
  .breadcrumbs,
  .inner-hero-shapes span,
  .inner-hero-ripple {
    animation: none;
    transition: none;
  }

  .inner-hero {
    transform: none;
  }

  .inner-hero-shapes,
  .inner-hero-ripple {
    display: none;
  }
}

.inner-main .who-section {
  min-height: auto;
  padding-top: 96px;
}

.inner-main .products-section,
.inner-main .faqs-section,
.inner-main .blogs-section,
.gallery-page-section,
.contact-page-section {
  padding-bottom: 120px;
}

.inner-main .products-section {
  padding-top: 0;
}

.inner-products-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  gap: 38px;
}

.product-filter-panel {
  position: sticky;
  top: 28px;
  padding: 28px 24px 30px;
  border-radius: 28px;
  background: var(--soft-blue);
  color: var(--blue);
}

.product-filter-panel h3 {
  margin: 0 0 22px;
  color: #000000;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.product-filter-list {
  display: grid;
  gap: 12px;
}

.product-filter-list button {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000000;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.22s ease, transform 0.22s ease;
}

.product-filter-list button::before {
  display: block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background: url("assets/productarrow.svg") center / contain no-repeat;
  content: "";
  transition: transform 0.22s ease;
}

.product-filter-list button:hover,
.product-filter-list button:focus-visible,
.product-filter-list button.active {
  color: var(--blue);
  transform: translateX(4px);
}

.product-filter-list button:hover::before,
.product-filter-list button:focus-visible::before,
.product-filter-list button.active::before {
  transform: translateX(4px);
}

.inner-products-content {
  min-width: 0;
}

.inner-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

.inner-product-grid .product-card {
  min-height: 405px;
}

.inner-product-grid .product-card > img {
  margin-top: 0;
}

.inner-product-grid .product-card.is-hidden {
  display: none;
}

.product-detail-main {
  overflow: hidden;
}

.product-detail-section,
.related-products-section,
.blog-detail-section,
.related-blogs-section {
  width: var(--container);
  margin: 0 auto;
}

.product-detail-section {
  padding-bottom: 110px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: stretch;
}

.product-detail-image {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 16px;
  border-radius: 34px;
  background: var(--soft-blue);
}

.product-gallery-stage {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
}

.product-gallery-main {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-gallery-main.is-active {
  display: block;
}

.product-gallery-main:focus-visible,
.product-gallery-thumb:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease;
}

.product-gallery-main:hover img {
  transform: scale(1.04);
}

.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
  justify-content: flex-start;
}

.product-gallery-thumb {
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  overflow: hidden;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
  opacity: 0.72;
  transition: border-color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.product-gallery-thumb.is-active,
.product-gallery-thumb:hover {
  border-color: var(--orange);
  opacity: 1;
  transform: translateY(-2px);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-form-wrap {
  padding: 42px;
  border-radius: 34px;
  background: var(--soft-blue);
}

.product-detail-form-wrap > p,
.related-products-heading p {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.product-detail-form-wrap h2,
.related-products-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: 52px;
  font-weight: 600;
  line-height: 0.98;
}

.product-detail-copy {
  display: grid;
  gap: 22px;
  margin: 24px 0 34px;
}

.product-detail-copy p {
  margin: 0;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.product-detail-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail-copy li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.product-detail-copy li::before {
  width: 20px;
  height: 20px;
  background: url("assets/correct.svg") center / contain no-repeat;
  content: "";
}

.product-quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-quote-submit {
  grid-column: 1 / -1;
  justify-self: end;
  width: 204px;
  height: 46px;
}

.related-products-section {
  padding-bottom: 120px;
}

.related-products-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.blog-detail-main {
  overflow: visible;
}

.blog-detail-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
  padding-bottom: 110px;
}

.blog-detail-article {
  overflow: hidden;
  border-radius: 34px;
  background: var(--soft-blue);
}

.blog-detail-image {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.blog-detail-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 62, 129, 0) 42%, rgba(14, 62, 129, 0.65) 100%);
  content: "";
  pointer-events: none;
}

.blog-detail-image > span {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.blog-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-body {
  padding: 42px;
}

.blog-detail-body > p,
.related-blogs-heading p {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.blog-detail-body h2,
.related-blogs-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
}

.blog-detail-body div {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.blog-detail-body div p {
  margin: 0;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.blog-detail-body div h3 {
  margin: 14px 0 0;
  color: var(--blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.blog-detail-sidebar {
  position: sticky;
  top: 28px;
  padding: 38px 32px;
  border-radius: 30px;
  background: var(--blue);
  color: #ffffff;
}

.blog-detail-sidebar h3 {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.blog-detail-sidebar p {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.blog-detail-sidebar .animated-btn {
  width: 100%;
  height: 46px;
  background: var(--soft-blue);
  color: var(--blue);
}

.blog-detail-sidebar .animated-btn:hover {
  background: var(--orange);
  color: #ffffff;
}

.related-blogs-section {
  padding-bottom: 120px;
}

.related-blogs-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.inner-main .faqs-section,
.inner-main .blogs-section {
  padding-top: 0;
}

.inner-main .faqs-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.inner-faqs-section .faq-contact-card {
  position: sticky;
  top: 28px;
}

.gallery-page-section {
  width: var(--container);
  margin: 0 auto;
}

.contact-page-section {
  width: var(--container);
  margin: 0 auto;
}

.contact-page-heading {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.contact-page-heading p {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-page-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: 64px;
  font-weight: 700;
  line-height: 0.98;
}

.contact-page-grid {
  display: grid;
  gap: 28px;
}

.contact-form,
.contact-map {
  border-radius: 30px;
  background: var(--soft-blue);
}

.contact-info-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-info-panel article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 0;
  padding: 24px;
  border-radius: 24px;
  background: var(--soft-blue);
}

.contact-info-panel article > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--blue);
}

.contact-info-panel img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-info-panel h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.contact-info-panel p,
.contact-info-panel a {
  margin: 0;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.26;
}

.contact-info-panel a {
  display: inline-block;
  transition: color 0.22s ease, transform 0.22s ease;
}

.contact-info-panel a:hover,
.contact-info-panel a:focus-visible {
  color: var(--orange);
  transform: translateX(4px);
}

.contact-form-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 42px;
}

.contact-form .wpcf7 {
  grid-column: 1 / -1;
}

.contact-form .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-form .wpcf7-form p {
  margin: 0;
}

.contact-form .wpcf7-form p:has(textarea),
.contact-form .wpcf7-form p:has(.wpcf7-submit),
.contact-form .wpcf7-response-output {
  grid-column: 1 / -1;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
}

.contact-form .wpcf7-form label {
  display: block;
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.contact-form .wpcf7-form input:not([type="submit"]),
.contact-form .wpcf7-form select,
.contact-form .wpcf7-form textarea {
  width: 100%;
  border: 1px solid rgba(14, 62, 129, 0.18);
  border-radius: 20px;
  background: #ffffff;
  color: #000000;
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  outline: 0;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-form .wpcf7-form input:not([type="submit"]),
.contact-form .wpcf7-form select {
  height: 58px;
  padding: 0 18px;
}

.contact-form .wpcf7-form textarea {
  min-height: 160px;
  padding: 18px;
  resize: vertical;
}

.contact-form .wpcf7-form input::placeholder,
.contact-form .wpcf7-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form select:focus,
.contact-form .wpcf7-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(163, 197, 245, 0.36);
}

.contact-form .wpcf7-submit {
  width: 204px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.contact-map {
  min-height: 100%;
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.generic-content-section {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 110px;
}

.generic-content-body {
  padding: 42px;
  border-radius: 30px;
  background: var(--soft-blue);
  color: #000000;
}

.generic-content-body > *:first-child {
  margin-top: 0;
}

.generic-content-body > *:last-child {
  margin-bottom: 0;
}

.generic-content-body h2,
.generic-content-body h3,
.generic-content-body h4 {
  margin: 32px 0 14px;
  color: var(--blue);
  font-weight: 700;
  line-height: 1.08;
}

.generic-content-body h2 {
  font-size: 36px;
}

.generic-content-body h3 {
  font-size: 28px;
}

.generic-content-body p,
.generic-content-body li {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.generic-content-body p,
.generic-content-body ul,
.generic-content-body ol {
  margin: 0 0 18px;
}

.generic-content-body ul,
.generic-content-body ol {
  padding-left: 24px;
}

.form-row {
  display: grid;
  gap: 10px;
}

.form-row-full,
.contact-submit {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(14, 62, 129, 0.18);
  border-radius: 20px;
  background: #ffffff;
  color: #000000;
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  outline: 0;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.form-row input,
.form-row select {
  height: 58px;
  padding: 0 18px;
}

.form-row textarea {
  min-height: 160px;
  padding: 18px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(163, 197, 245, 0.36);
}

.contact-submit {
  width: 204px;
  height: 46px;
  justify-self: start;
}

.gallery-page-section .section-title {
  max-width: 900px;
  margin-bottom: 46px;
}

.gallery-grid {
  column-count: 4;
  column-gap: 26px;
}

.gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 280px;
  margin: 0 0 26px;
  border-radius: 30px;
  background: var(--soft-blue);
  color: #ffffff;
  isolation: isolate;
  break-inside: avoid;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14, 62, 129, 0) 36%, rgba(14, 62, 129, 0.88) 100%);
  content: "";
  opacity: 0.92;
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.38s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.gallery-card span {
  width: max-content;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.gallery-card[data-gallery-id] {
  cursor: pointer;
}

.gallery-card[data-gallery-id]:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

.gallery-card-large {
  height: 430px;
}

.gallery-card-wide {
  height: 260px;
}

.gallery-card-tall {
  height: 520px;
}

.gallery-detail-section {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 120px;
}

.related-gallery-heading p {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.related-gallery-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: 52px;
  font-weight: 600;
  line-height: 0.98;
}

.related-gallery-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.gallery-detail-grid {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-detail-grid.is-active {
  display: grid;
}

.gallery-detail-card {
  position: relative;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  border-radius: 30px;
  background: var(--soft-blue);
  color: #ffffff;
  cursor: zoom-in;
  box-shadow: 0 18px 48px rgba(14, 62, 129, 0.08);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.gallery-detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.gallery-detail-card:hover img {
  transform: scale(1.05);
}

.gallery-detail-card:hover {
  box-shadow: 0 24px 64px rgba(14, 62, 129, 0.16);
  transform: translateY(-5px);
}

.gallery-detail-card:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 48px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.gallery-lightbox figure {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 96px);
  margin: 0;
  transform: scale(0.96);
  transition: transform 0.24s ease;
}

.gallery-lightbox.is-open figure {
  transform: scale(1);
}

.gallery-lightbox img {
  width: 100%;
  max-height: calc(100vh - 96px);
  border-radius: 28px;
  object-fit: contain;
  background: var(--soft-blue);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox-close {
  position: absolute;
  right: 28px;
  top: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: var(--orange);
  color: #ffffff;
  transform: rotate(90deg);
}

@media (max-width: 1320px) {
  .inner-hero {
    min-height: 300px;
    margin-bottom: 72px;
  }

  .inner-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 30px;
  }

  .product-gallery-stage {
    min-height: 390px;
  }

  .gallery-grid {
    column-count: 3;
  }

}

@media (max-width: 1020px) {
  .inner-hero {
    min-height: 270px;
  }

  .gallery-grid {
    column-count: 2;
  }

  .gallery-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .blog-detail-section {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
  }

  .product-gallery-stage {
    min-height: 360px;
  }

  .product-detail-form-wrap h2,
  .related-products-heading h2,
  .blog-detail-body h2,
  .related-blogs-heading h2 {
    font-size: clamp(42px, 7vw, 52px);
  }
}

@media (max-width: 820px) {
  .inner-hero {
    min-height: 230px;
    margin-bottom: 56px;
    border-radius: 24px;
  }

  .inner-hero-shapes span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }

  .inner-hero-shapes span:nth-child(1),
  .inner-hero-shapes span:nth-child(3) {
    left: -16px;
  }

  .inner-hero-shapes span:nth-child(2),
  .inner-hero-shapes span:nth-child(4) {
    right: -22px;
  }

  .inner-hero-content {
    gap: 14px;
    padding: 42px 16px;
  }

  .breadcrumbs {
    min-height: 36px;
    padding: 0 16px;
    font-size: 14px;
  }

  .inner-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .inner-main .who-section {
    padding-top: 72px;
  }

  .inner-main .products-section,
  .inner-main .faqs-section,
  .inner-main .blogs-section,
  .gallery-page-section,
  .contact-page-section {
    padding-bottom: 72px;
  }

  .contact-page-heading h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .contact-page-heading p {
    font-size: 18px;
  }

  .contact-info-panel,
  .contact-form-map-grid,
  .contact-form,
  .contact-form .wpcf7-form {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-map {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-info-panel {
    gap: 14px;
  }

  .contact-info-panel article {
    grid-template-columns: 46px 1fr;
    min-height: 0;
    padding: 16px;
    border-radius: 18px;
  }

  .contact-info-panel article > span {
    width: 46px;
    height: 46px;
  }

  .contact-info-panel h3 {
    font-size: 20px;
  }

  .contact-map iframe {
    min-height: 360px;
  }

  .generic-content-section {
    padding-bottom: 72px;
  }

  .generic-content-body {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .generic-content-body h2 {
    font-size: 30px;
  }

  .generic-content-body h3 {
    font-size: 24px;
  }

  .contact-submit {
    width: 100%;
    justify-self: stretch;
  }

  .contact-form .wpcf7-submit {
    width: 100%;
  }

  .inner-products-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-filter-panel {
    position: static;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .product-filter-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .inner-product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .inner-product-grid .product-card {
    min-height: 0;
  }

  .inner-product-grid .product-card > img {
    height: auto;
    margin-top: 0;
  }

  .product-detail-section {
    padding-bottom: 72px;
  }

  .product-gallery-stage {
    min-height: 280px;
  }

  .product-detail-image {
    border-radius: 24px;
  }

  .product-gallery-thumb {
    flex-basis: 72px;
    width: 72px;
    height: 58px;
    border-radius: 12px;
  }

  .product-detail-form-wrap {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .product-detail-form-wrap h2,
  .related-products-heading h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .product-quote-form {
    grid-template-columns: 1fr;
  }

  .product-quote-submit {
    width: 100%;
    justify-self: stretch;
  }

  .related-products-section {
    padding-bottom: 72px;
  }

  .blog-detail-section {
    gap: 24px;
    padding-bottom: 72px;
  }

  .blog-detail-article,
  .blog-detail-sidebar {
    border-radius: 24px;
  }

  .blog-detail-image {
    height: 300px;
  }

  .blog-detail-body,
  .blog-detail-sidebar {
    padding: 26px 20px;
  }

  .blog-detail-body h2,
  .related-blogs-heading h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .blog-detail-body div p {
    font-size: 18px;
  }

  .related-blogs-section {
    padding-bottom: 72px;
  }

  .gallery-grid {
    column-count: 1;
    column-gap: 18px;
  }

  .gallery-card-large,
  .gallery-card-wide,
  .gallery-card-tall {
    height: 260px;
  }

  .gallery-card {
    height: 260px;
    margin-bottom: 18px;
    border-radius: 22px;
  }

  .gallery-card h3 {
    font-size: 24px;
  }

  .gallery-detail-section {
    padding-bottom: 72px;
  }

  .related-gallery-heading h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .gallery-detail-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-detail-card {
    aspect-ratio: 1 / 0.78;
    border-radius: 22px;
  }

  .gallery-lightbox {
    padding: 22px;
  }

  .gallery-lightbox figure {
    max-height: calc(100vh - 44px);
  }

  .gallery-lightbox img {
    max-height: calc(100vh - 44px);
    border-radius: 20px;
  }

  .gallery-lightbox-close {
    right: 16px;
    top: 14px;
    width: 42px;
    height: 42px;
    font-size: 31px;
  }

}
.page-id-11 .inner-main .who-section {
  margin-bottom: 100px;
}
