.mobile-call-icon {
  display: none;
}

@media screen and (max-width: 767px) {
  .mobile-call-icon {
    display: flex;
    position: fixed;
    bottom: 5vw;
    right: 5vw;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2vw;
  }

  .scroll {
    display: none;
  }

  .process-cards-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 6vw !important;
    align-items: center !important;
  }

  .process-card {
    width: 80vw !important;
    height: 80vw !important;
    padding: 6vw !important;
  }

  .card-title {
    font-size: 5vw !important;
  }

  .card-num {
    font-size: 8vw !important;
  }
}

/* Wrapper Icon Effect */
.main-cont-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 1vw;
}

.main-cont-button .icon-wrapper-cta-first {
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), opacity: 0.3s ease;
}

.main-cont-button .icon-wrapper-cta {
  position: absolute;
  right: 1.5vw;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), opacity: 0.3s ease;
}

.main-cont-button:hover .icon-wrapper-cta-first {
  transform: translateX(-150%);
  opacity: 0;
}

.main-cont-button:hover .icon-wrapper-cta {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.thunder-container:hover .sun-icon,
.thunder-container.clicked .sun-icon {
  animation: fade-in-sun 1.2s ease-in-out forwards;
}

.thunder-container:hover .animated-thunder,
.thunder-container.clicked .animated-thunder {
  animation: rotate-and-fall 1.2s ease-in-out forwards;
}

@keyframes rotate-and-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: translateY(0) rotate(360deg);
    opacity: 1;
  }

  100% {
    transform: translateY(50px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes fade-in-sun {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }

  50% {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.sun-icon {
  transform-origin: center;
}

.animated-thunder {
  transform-origin: center;
}

/* Mobile Styles for Services */
@media screen and (max-width: 991px) {
  .section {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }

  .about-services .w-container {
    grid-template-columns: 1fr !important;
    gap: 10vw !important;
  }

  .services-left {
    position: relative !important;
    top: 0 !important;
  }

  .services-right {
    align-items: center !important;
  }

  .service-card {
    width: 60vw !important;
    height: 60vw !important;
    padding: 5vw !important;
    border-radius: 50% !important;
  }

  .service-card h3 {
    font-size: 1.4rem !important;
  }

  .service-card p {
    font-size: 0.8rem !important;
  }
}

/* Service Image Workflow Fixes */
.mask-img-service {
  overflow: hidden !important;
  border-radius: 12px;
  background: #111;
}

.img-service {
  transition: transform 0.8s cubic-bezier(0.625, 0.05, 0, 1);
}

.service-wrapper:hover .img-service {
  transform: scale(1.1);
}

/* Mobile Nav Workflow */
@media screen and (min-width: 991px) {
  .nav-menu-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .nav-menu {
    display: none !important;
  }

  .click-scroll-text {
    font-size: 12vw !important;
  }

  .wrapper-cont-50 {
    width: 80% !important;
  }

  .pill-scroll,
  .circle-left-scroll,
  .hex-scroll {
    transform: scale(0.7);
  }
}

/* Barba Transition Fix */
.barba-container {
  width: 100%;
  min-height: 100vh;
}

/* Premium Footer */
.footer-premium {
  background-color: #ffffff;
  padding: 2vw 5vw 2vw 5vw;
  color: #111;
  position: relative;
  overflow: hidden;
  font-family: Goga, Arial, sans-serif;
  aspect-ratio: 21 / 9;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  bottom: -20vw;
  right: -10vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.15) 0%, rgba(0, 191, 255, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

.footer-container.pro-layout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top-cta {
  width: 100%;
}

.footer-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 3vw;
}

.footer-pro-col {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.pro-col-title {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1vw;
}

.footer-pro-links {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.pro-link-item {
  color: #111;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.pro-link-item:hover {
  color: #888;
  transform: translateX(5px);
}

.pro-text {
  color: #111;
  font-size: 1.2rem;
  line-height: 1.5;
}

.footer-bottom-bar.pro-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #888;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 2vw;
}

@media screen and (max-width: 767px) {
  .footer-premium {
    aspect-ratio: auto;
    padding: 10vw 5vw;
  }

  .footer-pro-grid {
    grid-template-columns: 1fr;
    gap: 8vw;
  }
  
  .footer-bottom-bar.pro-bottom {
    flex-direction: column;
    gap: 2vw;
    text-align: center;
  }

  .footer-huge-title span {
    font-size: 16vw;
  }

  /* Hide custom cursor on mobile */
  .page__cursor {
    display: none !important;
  }
  
  body, a, button, [role="button"], img {
    cursor: auto !important;
  }
}

/* Custom Cursor Fix - Div-based with animation */
body, a, button, [role="button"], img {
  cursor: none !important; /* Hide default cursor */
}

.page__cursor {
  aspect-ratio: 1;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity .2s ease;
  width: clamp(76px, 67.3333333333px + .0222222222 * 100vw, 110px);
  z-index: 10000;
  margin: calc(clamp(38px,33.6666666667px + .0111111111 * 100vw,55px)*-1);
}

.page__cursor.visible {
  opacity: 1;
}

.page__cursor__inner {
  aspect-ratio: 1;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.page__cursor__inner:nth-child(2) {
  opacity: .75;
}

.page__cursor__inner:nth-child(3) {
  opacity: .5;
}

.page__cursor__inner:nth-child(4) {
  opacity: .25;
}

.page__cursor__inner:before {
  background-color: #b9ff47; /* Neon green/yellow cursor from vorszk.com */
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform: scale(.148);
  transition: transform .3s cubic-bezier(.215,.61,.355,1), background-color .3s, opacity .3s;
}

.page__cursor__inner1 {
  z-index: 1;
}

.page__cursor__text {
  color: #979797;
  opacity: 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: opacity .2s cubic-bezier(.215,.61,.355,1);
  font-family: Goga, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: calc(50% - 10px);
}

/* Hover over links & buttons */
.page__cursor.link .page__cursor__inner:before {
  background-color: #95ed06b3;
  transform: scale(.4);
}

.page__cursor.link .page__cursor__inner:not(.page__cursor__inner1):before {
  opacity: 0;
}

/* Hover over copy triggers */
.page__cursor.show-text .page__cursor__text {
  opacity: 1;
  transition: opacity .4s cubic-bezier(.215,.61,.355,1) .1s;
}

.page__cursor.show-text .page__cursor__inner:before {
  transform: scale(1);
}

/* Pro Project Card Redesign (No Details) */
.project-img {
  transition: transform 0.8s cubic-bezier(0.625, 0.05, 0, 1) !important;
}

.project-item:hover .project-img {
  transform: scale(1.08);
}

.project-img-mask {
  transition: box-shadow 0.5s ease, transform 0.5s ease !important;
  border-radius: 0 !important;
}

.project-item:hover .project-img-mask {
  box-shadow: 0 15px 35px rgba(255, 188, 149, 0.15);
  transform: translateY(-5px);
}

/* Service Card Hover Animations */
.service-card {
  transition: transform 0.5s cubic-bezier(0.625, 0.05, 0, 1), box-shadow 0.5s ease, border-color 0.5s ease !important;
}

.service-card:hover {
  transform: scale(1.05);
  border-color: var(--_color---orange1) !important;
  box-shadow: 0 10px 30px rgba(255, 188, 149, 0.15);
}

.service-card svg {
  transition: transform 0.5s ease !important;
}

.service-card:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.click-scroll-text .word,
.click-scroll-text .letter {
  display: inline-block;
}

/* Missing Footer Title Styles */
.footer-huge-title {
  display: flex;
  flex-direction: column;
  line-height: 0.8;
}

.footer-huge-title span {
  font-size: 8vw;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.2vw;
}

.footer-huge-title .text-stroke {
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.footer-huge-title:hover .text-stroke {
  color: #111;
  -webkit-text-stroke: 1px transparent;
}

/* Header Color Overrides */
.nav-name-jm.intro, .nav-name-jm.is-peach,
.nav-menu-button.is-peach {
  color: #ffffff !important; /* Orange/Grey into White */
}

.dot-jm.intro {
  background-color: #ffffff !important; /* Orange into White */
}

/* Custom cursor thunder overrides deleted */

/* Nav Social Links Color Overrides */
.nav-social-link {
  color: #888 !important; /* Grey by default */
}

.nav-social-link:hover {
  color: #ffffff !important; /* White on hover */
  background-color: rgba(255, 255, 255, 0.1) !important;
}

html.loading .page__cursor {
  display: none !important;
}

/* Custom Large Hero Typography overrides */
.hero-top .nav-name-jm {
  font-size: 8.2vw !important;
  line-height: 90% !important;
  letter-spacing: -0.04em !important;
  font-weight: 600 !important;
  text-transform: none !important;
  margin: 0 !important;
  display: block !important;
}

.hero-bottom .nav-name-jm {
  font-size: 5.6vw !important;
  line-height: 95% !important;
  letter-spacing: -0.04em !important;
  font-weight: 600 !important;
  text-transform: none !important;
  margin: 0 !important;
  display: block !important;
}

@media screen and (max-width: 767px) {
  .hero-top .nav-name-jm {
    font-size: 11.5vw !important;
  }
  
  .hero-bottom .nav-name-jm {
    font-size: 8.5vw !important;
  }
}

/* Hero bottom container and text positioning overrides */
.wrapper-hero-home {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: stretch !important;
  height: 100vh !important;
  box-sizing: border-box !important;
  padding-bottom: 8vw !important; /* Spacing from screen bottom */
}

.hero-bottom {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
}

.hero-center-brand {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateY(-38px); /* Move 1 cm upward */
}

.hero-center-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}

.hero-center-logo .nav-name-jm {
  color: #ffffff !important;
  font-size: clamp(2rem, 5vw, 5.5rem) !important;
  line-height: 1 !important;
}

.hero-center-logo .dot-jm {
  background-color: #ffffff !important;
  width: clamp(.45rem, 1vw, .9rem) !important;
  height: clamp(.45rem, 1vw, .9rem) !important;
}

.hero-background {
  transition: transform 4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1);
  will-change: transform;
}

.body.loaded .hero-background {
  transform: scale(1.08);
}

.hero-brand-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: scale(.82);
  will-change: transform, opacity;
}

.hero-small-tag {
  font-family: 'Jost', 'Inter', sans-serif !important;
  font-size: clamp(0.52rem, 0.84vw, 0.77rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #ffffff !important; /* Fixed to pure white for high contrast */
  margin-bottom: clamp(10px, 1.5vw, 24px) !important;
  line-height: 1 !important;
  will-change: transform, opacity;
}

.hero-center-subtitle {
  font-family: 'Jost', 'Inter', sans-serif !important;
  font-size: clamp(2.24rem, 5.6vw, 6.4rem) !important; /* Matches preloader text size exactly */
  font-weight: 500 !important;
  line-height: 0.93 !important;
  color: #ffffff !important; /* Fixed to pure white for high contrast */
  letter-spacing: -0.02em !important;
  text-align: center !important;
  margin: 0;
}

.hero-line-wrapper {
  display: block;
  overflow: hidden;
  height: 1.22em;
  line-height: 1.22em;
  margin: -0.02em 0;
}

.hero-word {
  display: inline-block;
  color: #ffffff; /* Fixed to pure white for readability */
}

.hero-word.em-serif {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: #ffffff !important; /* Pure white focal word for high contrast */
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.15) !important;
  margin-right: 0.22em !important;
}

.body.loaded.no-gsap .hero-brand-wrapper {
  animation: heroHomeZoomIn 1.2s cubic-bezier(.215,.61,.355,1) -0.2s forwards;
}

@keyframes heroHomeZoomIn {
  from {
    opacity: 0;
    transform: scale(.82);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media screen and (max-width: 767px) {
  .wrapper-hero-home {
    padding-bottom: 12vw !important;
  }
  
  .hero-bottom {
    width: 100% !important;
  }
}

/* --- Burger Menu Button & Fullscreen Overlay Menu --- */

.nav-menu-button {
  z-index: 1000;
}

/* Force container-2 alignment on mobile viewports */
@media screen and (max-width: 767px) {
  .container-2 {
    flex-flow: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-left: 5vw !important;
    padding-right: 5vw !important;
    margin-top: 1.5rem !important;
  }
  
  .nav-menu-button {
    margin-left: auto !important;
  }
}

/* Navigation Menu Overlay */
.nav-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  
  /* Keep overlay visible during the exit animation */
  transition: visibility 0.8s step-end;
}

.nav-menu-overlay.active {
  visibility: visible;
  pointer-events: auto;
  transition: none;
}

.nav-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.nav-menu-overlay.active .nav-menu-bg {
  opacity: 1;
}

.nav-menu-inner {
  position: absolute;
  top: 1.5vw;
  left: 1.5vw;
  right: 1.5vw;
  bottom: 1.5vw;
  background-color: var(--_color---bg-warm, #faf6ef);
  border-radius: 24px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  
  /* Slide down clip-path reveal animation */
  clip-path: inset(0 0 100% 0 round 24px);
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-menu-overlay.active .nav-menu-inner {
  clip-path: inset(0 0 0 0 round 24px);
}

.nav-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-menu-top-left .nav-name {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu-top-left .nav-name-jm {
  color: var(--_color---grey, #96908c) !important;
}

.nav-menu-top-left .dot-jm {
  background-color: var(--_color---blue) !important;
}

.nav-menu-top-middle p {
  margin: 0;
  font-family: Goga, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--_color---grey, #96908c);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-menu-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.nav-menu-close-inner {
  position: relative;
  width: 16px;
  height: 16px;
}

.nav-menu-close-line1, .nav-menu-close-line2 {
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111;
  transition: transform 0.3s ease;
}

.nav-menu-close-line1 {
  transform: rotate(45deg);
}

.nav-menu-close-line2 {
  transform: rotate(-45deg);
}

.nav-menu-close:hover .nav-menu-close-line1 {
  transform: rotate(135deg);
}

.nav-menu-close:hover .nav-menu-close-line2 {
  transform: rotate(45deg);
}

/* Two-column Layout */
.nav-menu-middle {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  padding: 50px 60px;
  gap: 60px;
}

.nav-menu-col-left {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 40px;
}

.nav-menu-col-right {
  display: flex;
  flex-direction: column;
}

.nav-menu-col-title {
  font-family: Goga, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--_color---grey, #96908c);
  margin-bottom: 30px;
}

.nav-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-menu-link-item {
  font-family: Goga, Arial, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  color: #111;
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.nav-menu-link-item:hover {
  color: var(--_color---orange1, #ffbc95);
  transform: translateX(10px);
}

/* Service Preview Cards */
.nav-menu-services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-menu-service-card {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  border-radius: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-menu-service-card:hover {
  background-color: rgba(0, 0, 0, 0.03);
  transform: translateY(-2px);
}

.nav-menu-service-img-wrapper {
  width: 100px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #ddd;
}

.nav-menu-service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nav-menu-service-card:hover .nav-menu-service-img-wrapper img {
  transform: scale(1.1);
}

.nav-menu-service-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-menu-service-num {
  font-family: 'IBM Plex Mono', Courier, monospace;
  font-size: 12px;
  color: var(--_color---grey, #96908c);
}

.nav-menu-service-name {
  font-family: Goga, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0;
  transition: color 0.3s ease;
}

.nav-menu-service-card:hover .nav-menu-service-name {
  color: var(--_color---orange1, #ffbc95);
}

.nav-menu-service-desc {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.nav-menu-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.06);
  margin: 4px 0;
}

/* Responsive Overrides */
@media screen and (max-width: 991px) {
  .nav-menu-middle {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 40px 40px;
  }
  
  .nav-menu-col-left {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 0;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 479px) {
  .nav-menu-top {
    padding: 20px;
  }
  
  .nav-menu-middle {
    padding: 20px;
    gap: 30px;
  }
  
  .nav-menu-link-item {
    font-size: 2.2rem;
  }
  
  .nav-menu-service-card {
    gap: 16px;
    padding: 8px;
  }
  
  .nav-menu-service-img-wrapper {
    width: 80px;
    height: 50px;
  }
}

body.menu-open {
  overflow: hidden !important;
}

/* --- New Premium Footer (Vorszk Inspired) --- */

.about-footer {
  background-color: #272829 !important; /* Charcoal background matching image */
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 80%);
  color: #fff;
  padding: 8vw 5vw 4vw 5vw !important;
  position: relative;
  overflow: hidden;
}

.about-footer-main-new {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5vw;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 6vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-footer-col-left {
  position: relative;
}

.about-footer-border-box {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
  padding: 5vw 4vw;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.about-footer-neon-dot {
  position: absolute;
  top: -6px;
  left: 20%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #b9ff47; /* Neon green dot */
  box-shadow: 0 0 10px #b9ff47;
}

.about-footer-title-new {
  font-family: Goga, Arial, sans-serif;
  font-size: clamp(2.5rem, 5.2vw, 5.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 0;
  margin-bottom: 4vw;
  color: #e8e9ef; /* Soft warm white */
}

.about-footer-title-new .italic-serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.15em;
  color: #fff;
}

.about-footer-help-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Goga, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-footer-help-link:hover {
  color: #b9ff47;
}

.about-footer-help-link .square-bullet {
  color: #b9ff47;
  font-size: 0.8rem;
}

/* Right Column */
.about-footer-col-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 2vw;
}

.about-footer-touch-header {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.about-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  width: fit-content;
}

.about-footer-contact-item:hover {
  color: #b9ff47;
}

.contact-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.about-footer-contact-item:hover .contact-icon-circle {
  background: rgba(185, 255, 71, 0.08);
  border-color: rgba(185, 255, 71, 0.3);
}

.contact-icon-circle svg {
  width: 20px;
  height: 20px;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.about-footer-contact-item:hover .contact-icon-circle svg {
  color: #b9ff47;
  transform: scale(1.05);
}

.contact-link-text {
  font-family: Goga, Arial, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Button */
.about-footer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 8px 8px 30px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  font-family: Goga, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
  margin-top: 15px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.about-footer-cta-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.cta-btn-arrow-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.about-footer-cta-btn:hover .cta-btn-arrow-circle {
  transform: translateX(3px);
}

.cta-btn-arrow-circle svg {
  width: 18px;
  height: 18px;
  color: #111;
}

/* Footer Bottom Override */
.about-footer-bottom {
  border-top: none !important;
  margin-top: 3vw !important;
  padding-top: 0 !important;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .about-footer-main-new {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 8vw;
  }
  
  .about-footer-col-right {
    padding-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .about-footer-border-box {
    padding: 8vw 6vw;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
  
  .about-footer-title-new {
    margin-bottom: 6vw;
  }
  
  .about-footer-col-right {
    gap: 20px;
  }
}

/* --- Centered Heading overrides for IntelliHome --- */

.click-scroll-height .wrapper-cont-50 {
  width: 80% !important;
  max-width: 1100px !important;
  text-align: center !important;
}

.click-scroll-text {
  text-align: center !important;
  width: 100% !important;
}

.click-scroll-text .click-scroll-logo {
  font-family: 'IBM Plex Mono', Courier, monospace !important;
  font-size: clamp(14px, 1.4vw, 18px) !important;
  display: block !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 0.25em !important;
  margin-bottom: 2rem !important;
  color: var(--_color---grey, #96908c) !important;
  font-weight: 600 !important;
  width: 100% !important;
  transform-origin: center !important;
}

/* =====================================================
   EXPLORE BUTTON — exact Vorszk.com replica
   ===================================================== */

/* Outer wrapper: centered at bottom of hero */
.vs-scroll {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: clamp(76px, calc(67.33px + 2.22vw), 110px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  animation: vs-fade-in 0.8s cubic-bezier(.215,.61,.355,1) 1.4s forwards;
  transition: transform 0.15s ease;
}

.vs-scroll:active {
  transform: translateX(-50%) scale(0.92);
}

@keyframes vs-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Circle container fills the button */
.vs-scroll__circles {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Every circle layer — absolutely stacked */
.vs-scroll__circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.vs-scroll__circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.4s;
}

/* Clone circles ripple outward and fade */
.vs-clone {
  pointer-events: none;
  transition: opacity 1.5s;
}
.vs-clone::before {
  background-color: rgba(255, 255, 255, 0.08);
}

/* nth-child(2,3,4) are the three clones */
.vs-scroll__circles .vs-scroll__circle:nth-child(2)::before {
  animation: vs-blink 1.5s linear 0s infinite;
}
.vs-scroll__circles .vs-scroll__circle:nth-child(3)::before {
  animation: vs-blink 1.5s linear 0.5s infinite;
}
.vs-scroll__circles .vs-scroll__circle:nth-child(4)::before {
  animation: vs-blink 1.5s linear 1s infinite;
}

@keyframes vs-blink {
  0%   { transform: scale(1);   opacity: 0.45; }
  100% { transform: scale(2);   opacity: 0;    }
}

/* Hover: clones collapse, base circle brightens */
.vs-scroll:hover .vs-clone {
  opacity: 0;
  transition: opacity 0.8s;
}
.vs-scroll:hover .vs-scroll__circles .vs-scroll__circle:first-child::before {
  background-color: rgba(255, 255, 255, 0.32);
}

/* Text — 5th child inside circles, centered */
.vs-scroll__text {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.vs-scroll__text p {
  display: flex;
  margin: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Duplicate row sits absolutely on top, hidden below */
.vs-scroll__text p:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
}

/* Each letter slides independently */
.vs-scroll__text p span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(.215,.61,.355,1);
}
.vs-scroll__text p span:nth-child(1) { transition-delay: 0.000s; }
.vs-scroll__text p span:nth-child(2) { transition-delay: 0.030s; }
.vs-scroll__text p span:nth-child(3) { transition-delay: 0.060s; }
.vs-scroll__text p span:nth-child(4) { transition-delay: 0.090s; }
.vs-scroll__text p span:nth-child(5) { transition-delay: 0.120s; }
.vs-scroll__text p span:nth-child(6) { transition-delay: 0.150s; }

/* Row 2 starts below viewport */
.vs-scroll__text p:nth-child(2) span { transform: translateY(110%); }

/* Hover: row 1 exits up, row 2 enters from below */
.vs-scroll:hover .vs-scroll__text p:nth-child(1) span { transform: translateY(-110%); }
.vs-scroll:hover .vs-scroll__text p:nth-child(2) span { transform: translateY(0); }

/* Mobile */
@media screen and (max-width: 479px) {
  .vs-scroll { width: 72px; bottom: 3.5vh; }
}
