/* ============================================
   MarketingFlow - CSS Variables & Overrides
   Base styles from Webflow CDN
   ============================================ */

:root {
  --background: #000;
  --primary: #ffa66b;
  --secondary: #fff;
  --tertiary: #14151c;
  --border: #414141;
  --border-2: #e3e3e3;
  --heading: #fff;
  --heading-2: #000;
  --paragraph: #e9e9e9;
  --paragraph-2: #292929;
  --transparent: transparent;
  --white: #fff;
  --black: #000;
  --overlay-color: rgba(0, 0, 0, 0.4);
  --radius--border-sm: 5px;
  --radius--border: 10px;
  --radius--border-lg: 20px;
  --radius--border-xl: 1000px;
  --fonts--paragraph: 'Titillium Web', sans-serif;
  --fonts--heading: 'League Spartan', sans-serif;
}

body.main-body {
  background-color: var(--background);
  color: var(--paragraph);
  font-family: var(--fonts--paragraph);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fonts--heading);
  color: var(--heading);
}

/* ============================================
   Page Preloader
   ============================================ */
#page-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

#page-preloader.preloader-exit {
  transform: translateY(-100%);
}

.preloader-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  width: 260px;
  height: auto;
  display: block;
}

/* Preloader logo animations (mirror hero logo) */
.pl-capsule {
  stroke-dasharray: 76;
  stroke-dashoffset: 76;
  animation: hl-stroke-in 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards,
             hl-capsule-redraw 5s ease-in-out 2s infinite;
}

.pl-orbit {
  stroke-dasharray: 14 62;
  opacity: 0;
  animation: hl-orbit-show 0.6s ease 1.6s forwards,
             hl-orbit-spin 3.5s linear 1.8s infinite;
}

.pl-dot {
  opacity: 0;
  transform: scale(0);
}

.pl-dot1 {
  transform-origin: 10px 18px;
  animation: hl-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
}

.pl-dot2 {
  transform-origin: 17px 18px;
  animation: hl-pop-dim 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

.pl-text-stroke {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: hl-stroke-in 1.4s ease 0.4s forwards,
             hl-stroke-fade 0.6s ease 1.6s forwards;
}

.pl-text-fill {
  opacity: 0;
  animation: hl-appear 0.8s ease 1.4s forwards;
}

@media (prefers-reduced-motion: reduce) {
  #page-preloader {
    transition: opacity 0.3s ease;
  }
  #page-preloader.preloader-exit {
    transform: none;
    opacity: 0;
  }
  .pl-capsule { stroke-dashoffset: 0; animation: none; }
  .pl-dot { opacity: 1; transform: none; animation: none; }
  .pl-dot2 { opacity: 0.6; }
  .pl-text-stroke { opacity: 0; animation: none; }
  .pl-text-fill { opacity: 1; animation: none; }
  .pl-orbit { opacity: 0; animation: none; }
}

@media screen and (max-width: 767px) {
  #page-preloader {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .preloader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .preloader-logo {
    width: 200px;
    margin: 0 auto;
    display: block;
  }
}

/* ============================================
   Navbar: Bottom-fixed floating pill (Desio style)
   ============================================ */

.navbar-main {
  position: fixed !important;
  top: auto !important;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent !important;
  border-bottom: none !important;
  padding: 0 20px 20px !important;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.navbar-main.navbar-hidden {
  transform: translateY(calc(100% + 20px));
  opacity: 0;
}

/* Inner navbar — floating pill container */
.navbar-main .navbar {
  border: 1px solid rgba(255, 166, 107, 0.12) !important;
  border-radius: 14px !important;
  background-color: rgba(14, 14, 20, 0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  max-width: 1200px;
  overflow: visible !important;
  padding: 12px 24px !important;
}

/* Hero: remove negative margin since navbar is out of flow */
.hero-section {
  margin-top: 0 !important;
}

.hero-sub-heading {
  max-width: 550px;
}

.hero-supporting-text {
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.hero-top-content .primary-button {
  margin-top: 32px;
}

/* Hero Stats Strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat__number {
  font-family: var(--fonts--heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-stat__label {
  font-size: 0.85rem;
  color: var(--paragraph);
  opacity: 0.8;
  letter-spacing: 0.02em;
}

.hero-stats__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

@media (max-width: 767px) {
  .hero-stats {
    gap: 20px;
    margin-top: 32px;
  }
  .hero-stat__number {
    font-size: 1.5rem;
  }
  .hero-stat__label {
    font-size: 0.75rem;
  }
  .hero-stats__divider {
    height: 36px;
  }
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.spb-section {
  position: relative;
  padding: 48px 0 40px;
  /* background: linear-gradient(180deg, #060714 0%, #0a0b1a 50%, #060714 100%); */
  overflow: hidden;
}

/* Top/bottom subtle border lines */
.spb-section::before,
.spb-section::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99,102,241,0.12) 30%, rgba(251,146,60,0.1) 70%, transparent 100%);
}
.spb-section::before { top: 0; }
.spb-section::after { bottom: 0; }

.spb-heading {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin: 0 0 28px;
}

.spb-subtext {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin: 24px 0 0;
}

/* Track wrapper with edge fade masks */
.spb-track-wrapper {
  width: 75%;
  margin: auto;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* Swiper overrides */
.spb-swiper {
  overflow: hidden;
}

.spb-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.spb-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.04);
  background: #fff;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}

/* .spb-item:hover {
  border-color: rgba(99,102,241,0.15);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
} */

.spb-logo {
  height: 70px;
  width: 95%;
  object-fit: contain;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .spb-section {
    padding: 40px 0 32px;
  }
}

@media screen and (max-width: 767px) {
  .spb-track-wrapper {
    width: 100%;
  }
  .spb-section {
    padding: 32px 0 24px;
  }
  .spb-heading {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .spb-item {
    padding: 6px 12px;
  }
}

@media screen and (max-width: 479px) {
  .spb-item {
    padding: 5px 10px;
    border-radius: 8px;
  }
  .spb-logo {
    height: 50px;
    width: auto;
  }
  .spb-subtext {
    font-size: 13px;
    color: rgba(255,255,255,0.50);
  }
}

/* ============================================
   Hero Laptop Animation (8-scene cycle)
   ============================================ */

#hero-seo-illust {
  position: absolute;
  top: -100px;
  right: 0;
  width: 48%;
  max-width: 580px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: lp-fade-in 1.8s ease 1.2s forwards;
}

#hero-seo-illust svg {
  width: 100%;
  height: auto;
  display: block;
  animation: lp-hover 8s ease-in-out infinite;
}

@keyframes lp-fade-in {
  to { opacity: 0.92; }
}

@keyframes lp-hover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Ambient glow */
.lp-amb {
  animation: lp-amb-pulse 10s ease-in-out infinite;
}
@keyframes lp-amb-pulse {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.06; }
}

/* --- Scene Cycling: 8 scenes × 3.5s = 28s --- */
.lp-scene {
  opacity: 0;
  animation: lp-cycle 28s ease-in-out infinite;
}
.lp-s1 { animation-delay: 0s; }
.lp-s2 { animation-delay: 3.5s; }
.lp-s3 { animation-delay: 7s; }
.lp-s4 { animation-delay: 10.5s; }
.lp-s5 { animation-delay: 14s; }
.lp-s6 { animation-delay: 17.5s; }
.lp-s7 { animation-delay: 21s; }
.lp-s8 { animation-delay: 24.5s; }

@keyframes lp-cycle {
  0%     { opacity: 0; transform: translateY(6px); }
  2%     { opacity: 1; transform: translateY(0); }
  10.5%  { opacity: 1; transform: translateY(0); }
  12.5%  { opacity: 0; transform: translateY(-4px); }
  100%   { opacity: 0; transform: translateY(6px); }
}

/* --- Cursor Blink (browser chrome) --- */
.lp-cursor-blink {
  animation: lp-blink 1s step-end infinite;
}
@keyframes lp-blink {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0; }
}

/* --- Scene 1: Chart Line Drawing --- */
.lp-draw {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: lp-line-draw 28s ease infinite;
}
.lp-draw.lp-d2 {
  animation-name: lp-line-draw-alt;
}
@keyframes lp-line-draw {
  0%     { stroke-dashoffset: 500; }
  1.5%   { stroke-dashoffset: 500; }
  8%     { stroke-dashoffset: 0; }
  12%    { stroke-dashoffset: 0; }
  12.5%  { stroke-dashoffset: 500; }
  100%   { stroke-dashoffset: 500; }
}
@keyframes lp-line-draw-alt {
  0%     { stroke-dashoffset: 500; }
  2.5%   { stroke-dashoffset: 500; }
  9%     { stroke-dashoffset: 0; }
  12%    { stroke-dashoffset: 0; }
  12.5%  { stroke-dashoffset: 500; }
  100%   { stroke-dashoffset: 500; }
}

/* --- Scene 2: Bar Chart Rise --- */
.lp-bars-anim {
  animation: lp-bars-enter 28s ease-out infinite;
  animation-delay: 3.5s;
}
@keyframes lp-bars-enter {
  0%     { transform: translateY(15px); }
  1.5%   { transform: translateY(15px); }
  5%     { transform: translateY(0); }
  12.5%  { transform: translateY(0); }
  100%   { transform: translateY(0); }
}

/* --- Scene 4: Keyword Row Reveal --- */
.lp-row-anim {
  opacity: 0;
  animation: lp-row-in 28s ease infinite;
  animation-delay: 10.5s;
}
.lp-row-anim.lp-ra2 { animation-name: lp-row-in-2; }
.lp-row-anim.lp-ra3 { animation-name: lp-row-in-3; }
.lp-row-anim.lp-ra4 { animation-name: lp-row-in-4; }

@keyframes lp-row-in {
  0%     { opacity: 0; transform: translateX(-8px); }
  2%     { opacity: 1; transform: translateX(0); }
  12%    { opacity: 1; transform: translateX(0); }
  12.5%  { opacity: 0; transform: translateX(0); }
  100%   { opacity: 0; transform: translateX(-8px); }
}
@keyframes lp-row-in-2 {
  0%     { opacity: 0; transform: translateX(-8px); }
  3%     { opacity: 0; transform: translateX(-8px); }
  5%     { opacity: 1; transform: translateX(0); }
  12%    { opacity: 1; transform: translateX(0); }
  12.5%  { opacity: 0; transform: translateX(0); }
  100%   { opacity: 0; transform: translateX(-8px); }
}
@keyframes lp-row-in-3 {
  0%     { opacity: 0; transform: translateX(-8px); }
  4%     { opacity: 0; transform: translateX(-8px); }
  6%     { opacity: 1; transform: translateX(0); }
  12%    { opacity: 1; transform: translateX(0); }
  12.5%  { opacity: 0; transform: translateX(0); }
  100%   { opacity: 0; transform: translateX(-8px); }
}
@keyframes lp-row-in-4 {
  0%     { opacity: 0; transform: translateX(-8px); }
  5%     { opacity: 0; transform: translateX(-8px); }
  7%     { opacity: 1; transform: translateX(0); }
  12%    { opacity: 1; transform: translateX(0); }
  12.5%  { opacity: 0; transform: translateX(0); }
  100%   { opacity: 0; transform: translateX(-8px); }
}

/* --- Scene 6: Donut Chart Drawing --- */
.lp-donut {
  animation: lp-donut-1 28s ease-out infinite;
  animation-delay: 17.5s;
}
.lp-do2 { animation-name: lp-donut-2; }
.lp-do3 { animation-name: lp-donut-3; }

@keyframes lp-donut-1 {
  0%     { stroke-dashoffset: 346; }
  2%     { stroke-dashoffset: 346; }
  7%     { stroke-dashoffset: 0; }
  12%    { stroke-dashoffset: 0; }
  12.5%  { stroke-dashoffset: 346; }
  100%   { stroke-dashoffset: 346; }
}
@keyframes lp-donut-2 {
  0%     { stroke-dashoffset: 346; }
  2.5%   { stroke-dashoffset: 346; }
  8%     { stroke-dashoffset: -138; }
  12%    { stroke-dashoffset: -138; }
  12.5%  { stroke-dashoffset: 346; }
  100%   { stroke-dashoffset: 346; }
}
@keyframes lp-donut-3 {
  0%     { stroke-dashoffset: 346; }
  3%     { stroke-dashoffset: 346; }
  8.5%   { stroke-dashoffset: -207; }
  12%    { stroke-dashoffset: -207; }
  12.5%  { stroke-dashoffset: 346; }
  100%   { stroke-dashoffset: 346; }
}

/* --- Floating Accent Elements --- */
.lp-fl { will-change: transform; }
.lp-fl1 { animation: lp-float-a 7s ease-in-out infinite; }
.lp-fl2 { animation: lp-float-b 8s ease-in-out infinite 1s; }
.lp-fl3 { animation: lp-float-a 9s ease-in-out infinite 2s; }
.lp-fl4 { animation: lp-float-b 6s ease-in-out infinite 0.5s; }
.lp-fl5 { animation: lp-float-a 8s ease-in-out infinite 3s; }
.lp-fl6 { animation: lp-float-b 7s ease-in-out infinite 1.5s; }

@keyframes lp-float-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-4px, -7px); }
}
@keyframes lp-float-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5px, -5px); }
}

/* --- Notification Badges --- */
.lp-notif { will-change: transform, opacity; }
.lp-notif1 { animation: lp-notif-r 5s ease-in-out infinite; }
.lp-notif2 { animation: lp-notif-l 6s ease-in-out infinite 2s; }

@keyframes lp-notif-r {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(4px); opacity: 0.6; }
}
@keyframes lp-notif-l {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(-4px); opacity: 0.6; }
}

/* Responsive: hide on smaller screens */
@media screen and (max-width: 991px) {
  #hero-seo-illust {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #hero-seo-illust svg,
  #hero-seo-illust svg * {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
  }
  #hero-seo-illust {
    opacity: 0.6;
    animation: none;
  }
  .lp-scene { opacity: 1; }
  .lp-s2, .lp-s3, .lp-s4, .lp-s5, .lp-s6, .lp-s7, .lp-s8 { opacity: 0; }
  .lp-draw { stroke-dashoffset: 0; }
  .lp-row-anim { opacity: 1; }
}

/* ============================================
   Hero Logo Draw Animation
   ============================================ */

#hero-logo-anim {
  margin-bottom: 16px;
}

#hero-logo-anim svg {
  width: 300px;
  height: auto;
  display: block;
  position: absolute;
  top: -100px;
}

/* Icon: Capsule stroke draw-in + continuous loop */
.hl-capsule {
  stroke-dasharray: 76;
  stroke-dashoffset: 76;
  animation: hl-stroke-in 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards,
             hl-capsule-redraw 5s ease-in-out 2.5s infinite;
}

/* Icon: Orbiting shine (loops after initial draw) */
.hl-orbit {
  stroke-dasharray: 14 62;
  opacity: 0;
  animation: hl-orbit-show 0.6s ease 2.8s forwards,
             hl-orbit-spin 3.5s linear 3s infinite;
}

/* Icon: Dots pop in */
.hl-dot {
  opacity: 0;
  transform: scale(0);
}
.hl-dot1 {
  transform-origin: 10px 18px;
  animation: hl-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
}
.hl-dot2 {
  transform-origin: 17px 18px;
  animation: hl-pop-dim 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s forwards;
}

/* Text: Stroke draw layer */
.hl-text-stroke {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: hl-stroke-in 1.8s ease 0.8s forwards,
             hl-stroke-fade 0.6s ease 2.4s forwards;
}

/* Text: Fill layer */
.hl-text-fill {
  opacity: 0;
  animation: hl-appear 0.8s ease 2.2s forwards;
}

@keyframes hl-stroke-in {
  to { stroke-dashoffset: 0; }
}

@keyframes hl-capsule-redraw {
  0%, 100% { stroke-dashoffset: 0; }
  50% { stroke-dashoffset: 76; }
}

@keyframes hl-stroke-fade {
  to { opacity: 0; }
}

@keyframes hl-appear {
  to { opacity: 1; }
}

@keyframes hl-pop {
  to { opacity: 1; transform: scale(1); }
}

@keyframes hl-pop-dim {
  to { opacity: 0.6; transform: scale(1); }
}

@keyframes hl-orbit-show {
  to { opacity: 0.3; }
}

@keyframes hl-orbit-spin {
  to { stroke-dashoffset: -76; }
}

@media screen and (max-width: 767px) {
  #hero-logo-anim {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #hero-logo-anim svg * {
    animation: none !important;
  }
  .hl-capsule { stroke-dashoffset: 0; }
  .hl-dot { opacity: 1; transform: none; }
  .hl-dot2 { opacity: 0.6; }
  .hl-text-stroke { opacity: 0; }
  .hl-text-fill { opacity: 1; }
  .hl-orbit { opacity: 0; }
}

/* Footer logo draw animation */
#footer-logo-anim {
  margin-bottom: 12px;
}
#footer-logo-anim svg {
  width: 275px;
  height: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  #footer-logo-anim svg {
    width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #footer-logo-anim svg * {
    animation: none !important;
  }
}

/* Scroll-in animation */
[data-w-id] {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animated {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0) !important;
}

/* Testimonials section background & effects */
#testimonials {
  position: relative;
  background: linear-gradient(160deg, #0a0d14 0%, #0d1018 30%, #10141e 60%, #0a0e16 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
}

#testimonials .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

/* Subtle grid pattern */
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255, 166, 107, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 166, 107, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Ambient orbs */
#testimonials::after {
  content: '';
  position: absolute;
  top: -100px;
  right: 20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 166, 107, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: tm-orb-float 20s ease-in-out infinite;
}

@keyframes tm-orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
}

/* Mouse glow follower */
.tm-mouse-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 166, 107, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
  will-change: left, top;
}

#testimonials:hover .tm-mouse-glow {
  opacity: 1;
}

/* Card hover: glow lift effect */
.testimonial-card {
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 166, 107, 0.35);
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px -8px rgba(255, 166, 107, 0.15),
    0 0 0 1px rgba(255, 166, 107, 0.1);
}

/* Section heading colors for dark bg */
#testimonials .heading {
  color: rgba(255, 255, 255, 0.95);
}

#testimonials .gradient-bg {
  color: #ffa66b;
}

#testimonials ._8px-circle {
  background-color: #ffa66b;
}

@media (prefers-reduced-motion: reduce) {
  #testimonials::after {
    animation: none;
  }
  .testimonial-card:hover {
    transform: none;
  }
}

/* Swiper overrides for testimonials — dark cards */
.testimonial-slider.swiper {
  background-color: transparent;
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0 70px !important;
  position: static;
  overflow: hidden !important;
}

.testimonial-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.testimonial-slider .swiper-slide {
  height: auto;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.4;
  transform: scale(0.92);
}

.testimonial-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.testimonial-slider .swiper-slide-prev,
.testimonial-slider .swiper-slide-next {
  opacity: 0.7;
  transform: scale(0.96);
}

/* Card: vertical dark portrait */
.testimonial-card {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  min-height: auto;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #12121a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 166, 107, 0.35);
}

/* Image: portrait top section */
.testimonial-image-wrapper {
  border-radius: 0;
  width: 100%;
  aspect-ratio: 2 / 2;
  position: relative;
  overflow: hidden;
}

.testimonial-image-wrapper .square-image {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay on image */
.testimonial-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(18, 18, 26, 0.95) 0%,
    rgba(18, 18, 26, 0.6) 40%,
    rgba(18, 18, 26, 0.2) 70%,
    rgba(18, 18, 26, 0.1) 100%);
  pointer-events: none;
}

/* Content overlay on image */
.testimonial-contents {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem 1.25rem 1.25rem;
  gap: 14px;
  text-align: center;
  align-items: center;
}

/* Stars */
.testimonial-star-wrapper {
  justify-content: center;
}

._16px-star-icon {
  color: #eab308;
}

/* Quote text */
.testimonial-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.7;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Client info at bottom */
.testimonial-contents .vertical-left-stretch {
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.client-name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.testimonial-card:hover .client-name {
  color: #ffa66b;
}

._14px-text-500-secondary {
  color: rgba(255, 255, 255, 0.45);
}

/* Testimonial section stroked quote */
.testimonial-quote-stroke {
  position: absolute;
  top: 2rem;
  right: 5%;
  width: 200px;
  height: 170px;
  color: rgba(255, 166, 107, 0.12);
  z-index: 1;
  pointer-events: none;
}

/* Accent line at top of card on hover */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, #ffa66b 50%, transparent 95%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 5;
}

.testimonial-card:hover::before,
.swiper-slide-active .testimonial-card::before {
  opacity: 1;
}

/* Nav arrows */
.testimonial-slider .swiper-button-prev,
.testimonial-slider .swiper-button-next {
  background: none;
  width: auto;
  height: auto;
  margin: 0;
  position: static;
}

.testimonial-slider .swiper-button-prev::after,
.testimonial-slider .swiper-button-next::after {
  display: none;
}

.testimonials-nav-wrapper {
  display: none;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1a1a24;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: rgba(255, 166, 107, 0.8);
  border-color: rgba(255, 166, 107, 0.8);
}

/* Pagination dots */
.testimonial-slider .swiper-pagination {
  bottom: 0;
}

.testimonial-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}

.testimonial-slider .swiper-pagination-bullet-active {
  background: #ffa66b;
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* FAQ Section */
#faq {
  position: relative;
  overflow: hidden;
}

#faq .contents {
  margin-bottom: 48px;
}

/* Decorative double-stroke "?" mark */
.faq-question-mark {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translate(-50%, -50%);
  font-family: 'Archivo Black', sans-serif;
  font-size: 520px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.faq-question-mark::after {
  content: '?';
  position: absolute;
  top: 6px;
  left: 6px;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.025);
  color: transparent;
}

/* FAQ Accordion */
.faq-accordion .accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: max-height;
}

.faq-accordion .accordion-body .description {
  padding-bottom: 24px;
}

.faq-accordion .dropdown-cross-animation {
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.faq-accordion.w--current .dropdown-cross-animation {
  transform: rotate(45deg);
}


/* Service cards: scroll reveal one by one */
.testimonial-card-wrapper .tab-link-no-css {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card-wrapper .tab-link-no-css.sv-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card-wrapper .tab-link-no-css {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   ABOUT SECTION — Premium Redesign v2
   ============================================================ */

/* Deep layered mesh-gradient background */
#about {
  position: relative;
  /* background:
    radial-gradient(ellipse 80% 55% at 5% 12%, rgba(99,102,241,0.09) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 94% 78%, rgba(251,146,60,0.065) 0%, transparent 44%),
    radial-gradient(ellipse 38% 32% at 48% 2%, rgba(45,212,191,0.035) 0%, transparent 38%),
    radial-gradient(ellipse 42% 38% at 74% 22%, rgba(168,85,247,0.04) 0%, transparent 42%),
    radial-gradient(ellipse 30% 25% at 22% 88%, rgba(251,146,60,0.03) 0%, transparent 34%),
    linear-gradient(168deg, #04050c 0%, #080a16 18%, #0b0e21 42%, #0d1028 58%, #0a0d1c 78%, #060811 100%); */
  padding: 0;
  overflow: hidden;
}

/* Dot-grid texture with radial fade */
#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.013) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 82% 72% at 50% 50%, black 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 82% 72% at 50% 50%, black 15%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

/* Top edge accent line */
#about::after {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251,146,60,0.2) 22%, rgba(99,102,241,0.32) 50%, rgba(251,146,60,0.2) 78%, transparent);
  z-index: 3;
}

/* SVG background layer */
.about-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Arc animations — drift + flowing dashed stroke */
@keyframes about-arcDrift {
  0%   { transform: translateY(0) translateX(0); opacity: 0.4; }
  25%  { transform: translateY(-10px) translateX(6px); opacity: 0.7; }
  50%  { transform: translateY(-16px) translateX(0); opacity: 1; }
  75%  { transform: translateY(-5px) translateX(-6px); opacity: 0.6; }
  100% { transform: translateY(0) translateX(0); opacity: 0.4; }
}
@keyframes about-arcFlow {
  from { stroke-dashoffset: 60; }
  to   { stroke-dashoffset: 0; }
}
.about-arc {
  animation: about-arcDrift 14s ease-in-out infinite, about-arcFlow 4s linear infinite;
  stroke-dasharray: 18 12;
  will-change: transform, opacity;
}
.about-arc--2 { animation-delay: -4.5s, -1.5s; animation-duration: 17s, 5s; }
.about-arc--3 { animation-delay: -9s, -3s;     animation-duration: 20s, 6s; }

/* Orb animations — asymmetric float */
@keyframes about-orbFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.18; }
  30%      { transform: translateY(-22px) scale(1.8); opacity: 0.6; }
  65%      { transform: translateY(-8px) scale(1.2); opacity: 0.35; }
}
.about-orb {
  animation: about-orbFloat 6s ease-in-out infinite;
  will-change: transform, opacity;
}
.about-orb--2 { animation-delay: -1.2s; animation-duration: 7.5s; }
.about-orb--3 { animation-delay: -2.5s; animation-duration: 5s; }
.about-orb--4 { animation-delay: -3.8s; animation-duration: 6.5s; }
.about-orb--5 { animation-delay: -5s;   animation-duration: 8.5s; }

/* Content stacking above backgrounds */
#about .container {
  position: relative;
  z-index: 1;
}

/* --- Text colors for dark bg --- */
#about .heading {
  color: #fff;
  text-shadow: 0 2px 40px rgba(99,102,241,0.1);
}

#about .sub-title .gradient-bg {
  color: #fb923c;
  text-shadow: 0 0 22px rgba(251,146,60,0.12);
  letter-spacing: 0.4px;
}

/* Sub-title dot pulse */
@keyframes about-dotPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(251,146,60,0.3), 0 0 16px rgba(251,146,60,0.08); transform: scale(1); }
  50%      { box-shadow: 0 0 14px rgba(251,146,60,0.5), 0 0 28px rgba(251,146,60,0.18); transform: scale(1.15); }
}
#about .sub-title ._8px-circle {
  box-shadow: 0 0 10px rgba(251,146,60,0.35), 0 0 20px rgba(251,146,60,0.12);
  animation: about-dotPulse 3s ease-in-out infinite;
}

#about .about-us-contents p,
#about .vertical-left-top > p {
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
}

/* --- List — custom glowing markers --- */
#about .list {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

#about .list-item-14px {
  padding: 9px 0 9px 24px;
  position: relative;
  color: rgba(255,255,255,0.62);
  transition: color 0.35s ease, transform 0.35s ease;
}

#about .list-item-14px::marker {
  content: '';
  color: transparent;
  font-size: 0;
}

#about .list-item-14px::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fb923c;
  box-shadow: 0 0 8px rgba(251,146,60,0.45);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

#about .list-item-14px:hover {
  color: rgba(255,255,255,0.9);
  transform: translateX(4px);
}

#about .list-item-14px:hover::before {
  box-shadow: 0 0 12px rgba(251,146,60,0.65), 0 0 22px rgba(251,146,60,0.25);
  transform: translateY(-50%) scale(1.3);
}

/* --- About Interactive Cards --- */
#about .list.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

#about .list-item-14px.about-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
}

/* Neutralize old bullet dot */
#about .list-item-14px.about-card::before {
  display: none;
}

#about .list-item-14px.about-card:hover {
  transform: translateY(-3px);
  border-color: rgba(251,146,60,0.35);
  box-shadow: 0 8px 32px rgba(251,146,60,0.08), 0 0 0 1px rgba(251,146,60,0.12);
  background: rgba(255,255,255,0.04);
}

/* Icon container */
.about-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.22);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              border-color 0.4s ease,
              background 0.4s ease;
}

.about-card__icon svg {
  width: 26px;
  height: 26px;
}

.about-card__icon svg rect[stroke],
.about-card__icon svg circle[stroke],
.about-card__icon svg path[stroke],
.about-card__icon svg line[stroke] {
  stroke-dasharray: var(--dash-length);
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.4,0,0.2,1),
              stroke 0.4s ease;
}

#about .list-item-14px.about-card:hover .about-card__icon {
  transform: scale(1.1);
  border-color: rgba(251,146,60,0.4);
  background: rgba(251,146,60,0.1);
}

#about .list-item-14px.about-card:hover .about-card__icon svg rect[stroke],
#about .list-item-14px.about-card:hover .about-card__icon svg circle[stroke],
#about .list-item-14px.about-card:hover .about-card__icon svg path[stroke],
#about .list-item-14px.about-card:hover .about-card__icon svg line[stroke] {
  stroke-dashoffset: var(--dash-length);
  stroke: #fb923c;
}

/* Card text */
.about-card__content {
  flex: 1;
  min-width: 0;
}

.about-card__content div {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.35s ease;
}

#about .list-item-14px.about-card:hover .about-card__content div {
  color: rgba(255,255,255,0.92);
}

/* --- About SEO Visual (Animated SVG) --- */
.about-seo-visual {
  position: relative;
}

.about-seo-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* SEO SVG Animation Keyframes */
@keyframes about-seoRingDraw {
  from { stroke-dashoffset: var(--ring-len); }
  to   { stroke-dashoffset: 0; }
}

@keyframes about-seoBarGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

@keyframes about-seoLineDraw {
  from { stroke-dashoffset: var(--line-len); }
  to   { stroke-dashoffset: 0; }
}

@keyframes about-seoNodeAppear {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes about-seoNodeGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(251,146,60,0.3)); }
  50%      { filter: drop-shadow(0 0 12px rgba(251,146,60,0.7)); }
}

@keyframes about-seoTagFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes about-seoParticleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50%      { transform: translateY(-10px) scale(1.3); opacity: 0.9; }
}

@keyframes about-seoArrowBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* Paused state (before scroll trigger) */
.about-seo-visual.seo-paused .about-seo-svg {
  opacity: 0;
  transition: opacity 0.01s;
}

.about-seo-visual.seo-paused .about-seo-svg * {
  animation-play-state: paused !important;
}

/* Animate state (after scroll trigger) */
.about-seo-visual.seo-animate .about-seo-svg {
  opacity: 1;
  transition: opacity 0.6s ease;
}

/* Ring draw */
.about-seo-svg .seo-ring {
  stroke-dasharray: var(--ring-len);
  stroke-dashoffset: var(--ring-len);
}
.about-seo-visual.seo-animate .seo-ring {
  animation: about-seoRingDraw 2.5s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* Bar grow */
.about-seo-svg .seo-bar {
  transform-origin: bottom center;
  transform: scaleY(0);
}
.about-seo-visual.seo-animate .seo-bar:nth-child(1) { animation: about-seoBarGrow 0.8s 0.4s cubic-bezier(0.4,0,0.2,1) forwards; }
.about-seo-visual.seo-animate .seo-bar:nth-child(2) { animation: about-seoBarGrow 0.8s 0.55s cubic-bezier(0.4,0,0.2,1) forwards; }
.about-seo-visual.seo-animate .seo-bar:nth-child(3) { animation: about-seoBarGrow 0.8s 0.7s cubic-bezier(0.4,0,0.2,1) forwards; }
.about-seo-visual.seo-animate .seo-bar:nth-child(4) { animation: about-seoBarGrow 0.8s 0.85s cubic-bezier(0.4,0,0.2,1) forwards; }

/* Trend line draw */
.about-seo-svg .seo-trend-line {
  stroke-dasharray: var(--line-len);
  stroke-dashoffset: var(--line-len);
}
.about-seo-visual.seo-animate .seo-trend-line {
  animation: about-seoLineDraw 2s 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* Trend glow */
.about-seo-svg .seo-trend-glow {
  stroke-dasharray: var(--line-len);
  stroke-dashoffset: var(--line-len);
}
.about-seo-visual.seo-animate .seo-trend-glow {
  animation: about-seoLineDraw 2s 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* Data nodes */
.about-seo-svg .seo-node {
  transform: scale(0);
  opacity: 0;
}
.about-seo-visual.seo-animate .seo-node:nth-child(1) { animation: about-seoNodeAppear 0.5s 1.2s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.about-seo-visual.seo-animate .seo-node:nth-child(2) { animation: about-seoNodeAppear 0.5s 1.4s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.about-seo-visual.seo-animate .seo-node:nth-child(3) { animation: about-seoNodeAppear 0.5s 1.6s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.about-seo-visual.seo-animate .seo-node:nth-child(4) { animation: about-seoNodeAppear 0.5s 1.8s cubic-bezier(0.34,1.56,0.64,1) forwards; transform-origin: center; }

/* Top node glow */
.about-seo-visual.seo-animate .seo-node-glow {
  animation: about-seoNodeGlow 3s 2s infinite ease-in-out;
}

/* Tag pills float */
.about-seo-svg .seo-tag { opacity: 0; }
.about-seo-visual.seo-animate .seo-tag:nth-child(1) { opacity: 1; animation: about-seoTagFloat 4s 1s infinite ease-in-out; }
.about-seo-visual.seo-animate .seo-tag:nth-child(2) { opacity: 1; animation: about-seoTagFloat 4.5s 1.3s infinite ease-in-out; }
.about-seo-visual.seo-animate .seo-tag:nth-child(3) { opacity: 1; animation: about-seoTagFloat 5s 1.6s infinite ease-in-out; }

/* Particles */
.about-seo-svg .seo-particle { opacity: 0; }
.about-seo-visual.seo-animate .seo-particle:nth-child(1) { animation: about-seoParticleFloat 4.5s 0.8s infinite ease-in-out; }
.about-seo-visual.seo-animate .seo-particle:nth-child(2) { animation: about-seoParticleFloat 5s 1.1s infinite ease-in-out; }
.about-seo-visual.seo-animate .seo-particle:nth-child(3) { animation: about-seoParticleFloat 5.5s 1.4s infinite ease-in-out; }
.about-seo-visual.seo-animate .seo-particle:nth-child(4) { animation: about-seoParticleFloat 6s 1.7s infinite ease-in-out; }

/* Arrow bounce */
.about-seo-svg .seo-arrow-group { opacity: 0; }
.about-seo-visual.seo-animate .seo-arrow-group {
  opacity: 1;
  animation: about-seoArrowBounce 3s 1.5s infinite ease-in-out;
}

/* Smooth redraw cycle — fade out before reset */
.about-seo-visual.seo-redraw .about-seo-svg {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Image premium treatment --- */
#about .mask-10px-rounded {
  border-radius: 20px;
  box-shadow:
    0 28px 72px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 0 80px -16px rgba(99,102,241,0.07);
  transition: box-shadow 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

#about .mask-10px-rounded:hover {
  box-shadow:
    0 36px 90px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 100px -12px rgba(99,102,241,0.12);
  transform: translateY(-6px);
}

#about .mask-10px-rounded::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(170deg, rgba(255,255,255,0.04) 0%, transparent 28%, transparent 58%, rgba(5,6,12,0.6) 100%);
  pointer-events: none;
  transition: background 0.6s ease;
}

#about .mask-10px-rounded:hover::after {
  background: linear-gradient(170deg, rgba(255,255,255,0.06) 0%, transparent 32%, transparent 62%, rgba(5,6,12,0.5) 100%);
}

/* Side image — warm accent glow */
#about .mask-10px-rounded.max-width-310px {
  border-radius: 16px;
  box-shadow:
    0 22px 56px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 64px -14px rgba(251,146,60,0.06);
}

#about .mask-10px-rounded.max-width-310px:hover {
  box-shadow:
    0 30px 72px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 80px -12px rgba(251,146,60,0.1);
  transform: translateY(-5px);
}

#about .mask-10px-rounded.max-width-310px::after {
  border-radius: 16px;
}

/* Button area spacing */
#about .about-us-contents .primary-button {
  margin-top: 12px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .about-arc,
  .about-orb {
    animation: none !important;
  }
  #about .sub-title ._8px-circle {
    animation: none !important;
  }
  #about .mask-10px-rounded,
  #about .mask-10px-rounded.max-width-310px {
    transition: none !important;
  }
  #about .list-item-14px {
    transition: none !important;
  }
  /* Cards */
  #about .list-item-14px.about-card {
    transition: none !important;
  }
  .about-card__icon {
    transition: none !important;
  }
  .about-card__icon svg rect[stroke],
  .about-card__icon svg circle[stroke],
  .about-card__icon svg path[stroke],
  .about-card__icon svg line[stroke] {
    transition: none !important;
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
  }
  /* SEO SVG */
  .about-seo-visual.seo-paused .about-seo-svg {
    opacity: 1;
  }
  .about-seo-svg *,
  .about-seo-svg .seo-ring,
  .about-seo-svg .seo-trend-line,
  .about-seo-svg .seo-trend-glow,
  .about-seo-svg .seo-node,
  .about-seo-svg .seo-tag,
  .about-seo-svg .seo-particle,
  .about-seo-svg .seo-arrow-group {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
  .about-seo-visual.seo-redraw .about-seo-svg {
    opacity: 1 !important;
    transition: none !important;
  }
  .about-seo-svg .seo-bar {
    animation: none !important;
    transform: scaleY(1) !important;
  }
}

/* Responsive */
@media screen and (max-width: 991px) {
  #about::after {
    left: 8%;
    right: 8%;
  }
  #about .list.about-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  #about .mask-10px-rounded,
  #about .mask-10px-rounded.max-width-310px {
    border-radius: 14px;
  }
  #about .mask-10px-rounded::after,
  #about .mask-10px-rounded.max-width-310px::after {
    border-radius: 14px;
  }
  #about::after {
    left: 5%;
    right: 5%;
  }
  #about .list-item-14px.about-card {
    padding: 16px 18px;
    border-radius: 12px;
  }
  .about-card__icon {
    width: 42px;
    height: 42px;
  }
  .about-card__icon svg {
    width: 22px;
    height: 22px;
  }
  .about-seo-visual {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  #about .list-item-14px {
    padding-left: 20px;
  }
  #about .list-item-14px.about-card {
    padding: 14px;
    gap: 10px;
  }
  .about-card__icon {
    width: 38px;
    height: 38px;
  }
  .about-card__icon svg {
    width: 20px;
    height: 20px;
  }
  .about-card__content div {
    font-size: 13px;
  }
}

/* Service heading: filled by default, stroked on hover */
.service-heading-wrapper {
  position: relative;
}

.service-heading {
  transition: opacity 0.4s ease;
}

.service-heading.stroked {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Default: filled visible, stroked hidden */
.service-heading:not(.stroked) {
  opacity: 1;
}

.service-heading.stroked {
  opacity: 0;
}

/* Hover: filled hidden, stroked visible */
.tab-link-no-css:hover .service-heading:not(.stroked) {
  opacity: 0;
}

.tab-link-no-css:hover .service-heading.stroked {
  opacity: 1;
}

/* FAQ tab active indicator */
.faq-tab-link .tab-link-hover {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-tab-link.w--current .tab-link-hover {
  opacity: 1;
}

/* Nav dropdown */
.nav-dropdown-contents {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  pointer-events: none;
}

.nav-dropdown-wrapper:hover .nav-dropdown-contents,
.nav-dropdown-wrapper.open .nav-dropdown-contents {
  max-height: 800px;
  opacity: 1;
  pointer-events: auto;
}

/* Drawer elements – hidden on desktop */
.drawer-logo-wrapper { display: none; }
.drawer-social-links { display: none; }

/* Mobile nav */
@media screen and (max-width: 991px) {
  .navbar-main {
    top: 0 !important;
    bottom: auto !important;
    padding: 10px 12px 0 !important;
  }

  .navbar-main.navbar-hidden {
    transform: translateY(calc(-100% - 20px));
  }

  /* Drawer-style mobile nav (slides in from right) */
  .nav-menu-wrapper {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    background: #0a0d14;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px 40px;
    z-index: 100;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
  }

  .nav-menu-wrapper.w--nav-menu-open {
    transform: translateX(0) !important;
    visibility: visible !important;
  }

  /* Drawer overlay */
  .w-nav-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .w-nav-overlay.w--nav-menu-open,
  .w-nav-overlay[data-nav-menu-open] {
    opacity: 1;
    pointer-events: auto;
  }

  /* Animated logo in drawer */
  .drawer-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
  }

  .w--nav-menu-open .drawer-logo-wrapper {
    opacity: 1;
    transform: translateY(0);
  }

  .drawer-logo-link {
    display: inline-block;
  }

  .drawer-logo {
    height: 36px;
    width: auto;
    animation: drawerLogoPulse 3s ease-in-out infinite;
  }

  @keyframes drawerLogoPulse {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 0px transparent); }
    50% { filter: brightness(1.2) drop-shadow(0 0 12px rgba(255, 166, 107, 0.4)); }
  }

  /* Nav links inside drawer */
  .nav-menu-wrapper .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    max-width: 320px;
  }

  .nav-menu-wrapper .nav-link-wrapper {
    width: 100%;
    padding: 14px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-menu-wrapper .nav-link-wrapper:last-of-type {
    border-bottom: none;
  }

  .nav-menu-wrapper .primary-button {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
  }

  /* Remove active/hover background — text color only */
  .nav-menu-wrapper .nav-link-wrapper {
    background: transparent !important;
    border-radius: 0;
    overflow: visible;
  }

  .nav-menu-wrapper .nav-link-wrapper .absolute-hover-bottom {
    display: none;
  }

  .nav-menu-wrapper .nav-link .default-text {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
  }

  .nav-menu-wrapper .nav-link-wrapper:hover .nav-link .default-text,
  .nav-menu-wrapper .nav-link-wrapper.w--current .nav-link .default-text {
    color: #ffa66b;
  }

  /* Close button inside drawer */
  .close-navbar-icon {
    position: absolute !important;
    top: 20px;
    right: 20px;
    z-index: 101;
  }

  /* Drawer social links */
  .drawer-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
    padding-top: 30px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
  }

  .w--nav-menu-open .drawer-social-links {
    opacity: 1;
    transform: translateY(0);
  }

  .drawer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .drawer-social-icon:hover {
    border-color: #ffa66b;
    transform: scale(1.1);
  }

  .drawer-social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }

  .drawer-social-icon:hover img {
    opacity: 1;
  }

  /* Stagger nav links entrance */
  .nav-menu-wrapper .nav-link-wrapper,
  .nav-menu-wrapper .primary-button {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.3s ease;
  }

  .w--nav-menu-open .nav-link-wrapper:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.1s; }
  .w--nav-menu-open .nav-link-wrapper:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
  .w--nav-menu-open .nav-link-wrapper:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }
  .w--nav-menu-open .nav-link-wrapper:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.25s; }
  .w--nav-menu-open .nav-link-wrapper:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.3s; }
  .w--nav-menu-open .nav-link-wrapper:nth-child(6) { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }
  .w--nav-menu-open .nav-link-wrapper:nth-child(7) { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
  .w--nav-menu-open .primary-button { opacity: 1; transform: translateX(0); transition-delay: 0.45s; }

  .testimonial-slider.swiper {
    width: 100%;
  }
}

/* Infinity marquee */
@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.infinity-carousel-container .infinity-slider-carousel,
.infinity-carousel-container-2deg-rotate:not(.primary) .infinity-slider-carousel {
  animation: marquee-right 20s linear infinite;
}

.infinity-carousel-container.primary .infinity-slider-carousel,
.infinity-carousel-container-2deg-rotate.primary .infinity-slider-carousel {
  animation: marquee-left 20s linear infinite;
}

/* Star rotation */
@keyframes star-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

._60px-star-loop {
  animation: star-rotate 8s linear infinite;
}

/* Line animations */
@keyframes line-move {
  0% { transform: translateY(-100vh); }
  100% { transform: translateY(100vh); }
}

.line-infinity._1 { animation: line-move 4s linear infinite; }
.line-infinity._2 { animation: line-move 6s linear infinite; animation-delay: 1s; }
.line-infinity._3 { animation: line-move 5s linear infinite; animation-delay: 2s; }

/* Button Icons */
.default-text .btn-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 5px;
  flex-shrink: 0;
}

/* Button hover effects */
.primary-button .hover-color {
  transition: width 0.5s ease, height 0.5s ease, border-radius 0.3s ease;
}

.primary-button:hover .hover-color {
  width: 300%;
  height: 300%;
  border-radius: 0;
}

/* Nav link hover — keep text visible, no slide */
.nav-link {
  overflow: visible;
  max-height: none;
}

.nav-link .default-text.black-heading {
  display: none;
}

.nav-link-wrapper .absolute-hover-bottom {
  transition: height 0.3s ease;
}

.nav-link-wrapper:hover .absolute-hover-bottom,
.nav-link-wrapper.nav-active .absolute-hover-bottom {
  height: 100%;
}

.nav-link-wrapper:hover .nav-link .default-text,
.nav-link-wrapper.nav-active .nav-link .default-text {
  color: inherit;
}

/* Footer link hover */
.footer-link-wrapper .nav-border {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.footer-link-wrapper:hover .nav-border {
  transform: translateX(0);
}

/* Submenu link hover */
.submenu-link .hover-divider {
  width: 0;
  transition: width 0.3s ease;
}

.submenu-link:hover .hover-divider {
  width: 20px;
}

/* Counter animation */
.counter-number-wrapper-2,
.counter-number-wrapper-reverse-2 {
  transition: transform 1.5s ease-out;
}

/* Hamburger hover effects */
._5px-hover-style {
  transition: transform 0.3s ease;
  transform: translateX(-100%);
}

.hamburger-menu:hover ._5px-hover-style {
  transform: translateX(0);
}

/* ============================================
   Hero Premium Gradient Background
   ============================================ */

#hero-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255, 166, 107, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 75% 20%, rgba(91, 155, 213, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 70% 55% at 50% 80%, rgba(255, 138, 68, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(136, 106, 166, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 10% 75%, rgba(91, 155, 213, 0.06) 0%, transparent 60%),
    linear-gradient(165deg, #0a0a0f 0%, #0d0d14 15%, #0f0e18 30%, #12101d 50%, #0e0d15 70%, #0a0a0f 100%);
  overflow: hidden;
}

#hero-gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle 600px at 25% 35%, rgba(255, 166, 107, 0.07) 0%, transparent 100%),
    radial-gradient(circle 500px at 70% 25%, rgba(91, 155, 213, 0.05) 0%, transparent 100%),
    radial-gradient(circle 400px at 50% 75%, rgba(255, 138, 68, 0.04) 0%, transparent 100%);
  animation: hero-gradient-shift 20s ease-in-out infinite alternate;
}

#hero-gradient-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.008) 2px,
      rgba(255, 255, 255, 0.008) 3px
    );
  pointer-events: none;
}

@keyframes hero-gradient-shift {
  0% {
    opacity: 1;
    transform: scale(1) translate(0, 0);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) translate(-1%, 1%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(1%, -1%);
  }
}

/* ============================================
   Premium Cursor Follower
   ============================================ */

#cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  mix-blend-mode: screen;
}

#cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.3s ease;
  z-index: 3;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 166, 107, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
              height 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
              border-color 0.3s ease,
              background 0.3s ease;
  z-index: 2;
}

#cursor-glow {
  position: fixed;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 166, 107, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0.6;
}

/* Hover state for interactive elements */
#cursor-follower.cursor-hover #cursor-dot {
  width: 10px;
  height: 10px;
  background: #fff;
}

#cursor-follower.cursor-hover #cursor-ring {
  width: 50px;
  height: 50px;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 166, 107, 0.06);
}

#cursor-follower.cursor-hover #cursor-glow {
  width: 160px;
  height: 160px;
  opacity: 0.8;
}

/* Hide on touch devices */
@media (hover: none) and (pointer: coarse) {
  #cursor-follower {
    display: none !important;
  }
}

/* ============================================
   Hero SVG Premium Animation
   ============================================ */

.hero-svg-anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: ha-fade-in 2.5s ease 0.8s forwards;
  will-change: opacity;
}

/* Hero section: gradient replaces video background */
.hero-section.w-background-video {
  background: #0a0a0f;
}

@media screen and (max-width: 767px) {
  .w-background-video {
    height: auto;
  }
  .hero-title-block {
    top: 65px;
  }
}

/* Ensure content layers sit above gradient bg & SVG animation */
.hero-section > .container.hero {
  position: relative;
  z-index: 3;
}

.hero-section > .hero-social-block {
  z-index: 3;
}

@keyframes ha-fade-in {
  to { opacity: 0.6; }
}

/* --- Layer 1: Ambient Glow Orbs --- */
.ha-orb {
  will-change: transform, opacity;
}

.ha-orb-1 {
  animation: ha-orb-float-1 18s ease-in-out infinite;
}
.ha-orb-2 {
  animation: ha-orb-float-2 22s ease-in-out infinite;
  animation-delay: -5s;
}
.ha-orb-3 {
  animation: ha-orb-float-3 20s ease-in-out infinite;
  animation-delay: -10s;
}
.ha-orb-4 {
  animation: ha-orb-float-4 16s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes ha-orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  25% { transform: translate(80px, -60px) scale(1.1); opacity: 0.7; }
  50% { transform: translate(40px, 50px) scale(0.95); opacity: 0.35; }
  75% { transform: translate(-50px, -30px) scale(1.05); opacity: 0.6; }
}

@keyframes ha-orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  25% { transform: translate(-100px, 50px) scale(1.15); opacity: 0.65; }
  50% { transform: translate(-50px, -70px) scale(0.9); opacity: 0.3; }
  75% { transform: translate(60px, 30px) scale(1.08); opacity: 0.55; }
}

@keyframes ha-orb-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  33% { transform: translate(70px, -80px) scale(1.12); opacity: 0.6; }
  66% { transform: translate(-40px, 40px) scale(0.92); opacity: 0.45; }
}

@keyframes ha-orb-float-4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
  30% { transform: translate(-60px, -40px) scale(1.1); opacity: 0.55; }
  60% { transform: translate(50px, 60px) scale(0.95); opacity: 0.4; }
}

/* --- Layer 2: Flowing Wave Lines --- */
.ha-wave {
  will-change: stroke-dashoffset, opacity;
  stroke-dasharray: 15 85;
  stroke-linecap: round;
}

.ha-wave-1 {
  stroke-dasharray: 20 60 10 80;
  animation: ha-wave-flow-1 12s linear infinite, ha-wave-pulse 8s ease-in-out infinite;
}
.ha-wave-2 {
  stroke-dasharray: 30 50 15 70;
  animation: ha-wave-flow-2 16s linear infinite, ha-wave-pulse 10s ease-in-out infinite;
  animation-delay: -3s;
}
.ha-wave-3 {
  stroke-dasharray: 10 70 25 60;
  animation: ha-wave-flow-3 20s linear infinite, ha-wave-pulse 12s ease-in-out infinite;
  animation-delay: -7s;
}
.ha-wave-4 {
  stroke-dasharray: 25 55 8 90;
  animation: ha-wave-flow-4 14s linear infinite, ha-wave-pulse 9s ease-in-out infinite;
  animation-delay: -2s;
}
.ha-wave-5 {
  stroke-dasharray: 18 65 12 75;
  animation: ha-wave-flow-5 18s linear infinite, ha-wave-pulse 11s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes ha-wave-flow-1 {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -800; }
}
@keyframes ha-wave-flow-2 {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1000; }
}
@keyframes ha-wave-flow-3 {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -700; }
}
@keyframes ha-wave-flow-4 {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -900; }
}
@keyframes ha-wave-flow-5 {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -850; }
}

@keyframes ha-wave-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.65; }
}

/* --- Layer 3: Network Constellation --- */
.ha-conn {
  will-change: opacity;
  opacity: 0;
}
.ha-conn-1  { animation: ha-conn-pulse 6s ease-in-out infinite; animation-delay: 0s; }
.ha-conn-2  { animation: ha-conn-pulse 7s ease-in-out infinite; animation-delay: -1s; }
.ha-conn-3  { animation: ha-conn-pulse 5s ease-in-out infinite; animation-delay: -2s; }
.ha-conn-4  { animation: ha-conn-pulse 8s ease-in-out infinite; animation-delay: -0.5s; }
.ha-conn-5  { animation: ha-conn-pulse 6s ease-in-out infinite; animation-delay: -3s; }
.ha-conn-6  { animation: ha-conn-pulse 7s ease-in-out infinite; animation-delay: -1.5s; }
.ha-conn-7  { animation: ha-conn-pulse 5s ease-in-out infinite; animation-delay: -4s; }
.ha-conn-8  { animation: ha-conn-pulse 8s ease-in-out infinite; animation-delay: -2.5s; }
.ha-conn-9  { animation: ha-conn-pulse 6s ease-in-out infinite; animation-delay: -1s; }
.ha-conn-10 { animation: ha-conn-pulse 7s ease-in-out infinite; animation-delay: -3.5s; }
.ha-conn-11 { animation: ha-conn-pulse 5s ease-in-out infinite; animation-delay: -0.5s; }
.ha-conn-12 { animation: ha-conn-pulse 8s ease-in-out infinite; animation-delay: -2s; }
.ha-conn-13 { animation: ha-conn-pulse 6s ease-in-out infinite; animation-delay: -4s; }
.ha-conn-14 { animation: ha-conn-pulse 7s ease-in-out infinite; animation-delay: -1s; }
.ha-conn-15 { animation: ha-conn-pulse 5s ease-in-out infinite; animation-delay: -3s; }
.ha-conn-16 { animation: ha-conn-pulse 8s ease-in-out infinite; animation-delay: -0.5s; }
.ha-conn-17 { animation: ha-conn-pulse 6s ease-in-out infinite; animation-delay: -2.5s; }
.ha-conn-18 { animation: ha-conn-pulse 7s ease-in-out infinite; animation-delay: -4s; }
.ha-conn-19 { animation: ha-conn-pulse 5s ease-in-out infinite; animation-delay: -1.5s; }
.ha-conn-20 { animation: ha-conn-pulse 8s ease-in-out infinite; animation-delay: -3s; }

@keyframes ha-conn-pulse {
  0%, 100% { opacity: 0; }
  15% { opacity: 0.15; }
  50% { opacity: 0.06; }
  85% { opacity: 0.15; }
}

.ha-node {
  will-change: transform, opacity;
  opacity: 0;
}
.ha-node-1  { animation: ha-node-breathe 5s ease-in-out infinite; animation-delay: 0s; }
.ha-node-2  { animation: ha-node-breathe 6s ease-in-out infinite; animation-delay: -1.5s; }
.ha-node-3  { animation: ha-node-breathe 7s ease-in-out infinite; animation-delay: -0.5s; }
.ha-node-4  { animation: ha-node-breathe 5s ease-in-out infinite; animation-delay: -3s; }
.ha-node-5  { animation: ha-node-breathe 6s ease-in-out infinite; animation-delay: -2s; }
.ha-node-6  { animation: ha-node-breathe 7s ease-in-out infinite; animation-delay: -4s; }
.ha-node-7  { animation: ha-node-breathe 5s ease-in-out infinite; animation-delay: -1s; }
.ha-node-8  { animation: ha-node-breathe 6s ease-in-out infinite; animation-delay: -3.5s; }
.ha-node-9  { animation: ha-node-breathe 7s ease-in-out infinite; animation-delay: -0.5s; }
.ha-node-10 { animation: ha-node-breathe 5s ease-in-out infinite; animation-delay: -2.5s; }
.ha-node-11 { animation: ha-node-breathe 6s ease-in-out infinite; animation-delay: -1s; }
.ha-node-12 { animation: ha-node-breathe 7s ease-in-out infinite; animation-delay: -4s; }
.ha-node-13 { animation: ha-node-breathe 5s ease-in-out infinite; animation-delay: -2s; }
.ha-node-14 { animation: ha-node-breathe 6s ease-in-out infinite; animation-delay: -0.5s; }
.ha-node-15 { animation: ha-node-breathe 7s ease-in-out infinite; animation-delay: -3s; }
.ha-node-16 { animation: ha-node-breathe 5s ease-in-out infinite; animation-delay: -1.5s; }

@keyframes ha-node-breathe {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.8); }
}

/* --- Layer 4: Floating Particles --- */
.ha-particle {
  will-change: transform, opacity;
}
.ha-pt-1  { animation: ha-rise-1 10s ease-in-out infinite; animation-delay: 0s; }
.ha-pt-2  { animation: ha-rise-2 12s ease-in-out infinite; animation-delay: -2s; }
.ha-pt-3  { animation: ha-rise-1 14s ease-in-out infinite; animation-delay: -4s; }
.ha-pt-4  { animation: ha-rise-3 11s ease-in-out infinite; animation-delay: -1s; }
.ha-pt-5  { animation: ha-rise-2 13s ease-in-out infinite; animation-delay: -6s; }
.ha-pt-6  { animation: ha-rise-1 10s ease-in-out infinite; animation-delay: -3s; }
.ha-pt-7  { animation: ha-rise-3 15s ease-in-out infinite; animation-delay: -5s; }
.ha-pt-8  { animation: ha-rise-2 11s ease-in-out infinite; animation-delay: -7s; }
.ha-pt-9  { animation: ha-rise-3 12s ease-in-out infinite; animation-delay: -1.5s; }
.ha-pt-10 { animation: ha-rise-1 14s ease-in-out infinite; animation-delay: -8s; }
.ha-pt-11 { animation: ha-rise-2 10s ease-in-out infinite; animation-delay: -4.5s; }
.ha-pt-12 { animation: ha-rise-3 13s ease-in-out infinite; animation-delay: -9s; }

@keyframes ha-rise-1 {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.35; }
  50% { opacity: 0.2; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-950px) translateX(60px); opacity: 0; }
}

@keyframes ha-rise-2 {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.3; }
  50% { opacity: 0.15; }
  90% { opacity: 0.25; }
  100% { transform: translateY(-1000px) translateX(-80px); opacity: 0; }
}

@keyframes ha-rise-3 {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  50% { opacity: 0.2; }
  90% { opacity: 0.35; }
  100% { transform: translateY(-900px) translateX(40px); opacity: 0; }
}

/* --- Layer 5: Data Streams --- */
.ha-stream {
  will-change: stroke-dashoffset, opacity;
  stroke-dasharray: 8 120;
  stroke-linecap: round;
}
.ha-stream-1 { animation: ha-stream-flow 8s linear infinite; }
.ha-stream-2 { animation: ha-stream-flow 10s linear infinite; animation-delay: -2s; }
.ha-stream-3 { animation: ha-stream-flow 9s linear infinite; animation-delay: -4s; }
.ha-stream-4 { animation: ha-stream-flow 11s linear infinite; animation-delay: -6s; }
.ha-stream-5 { animation: ha-stream-flow 8s linear infinite; animation-delay: -3s; }

@keyframes ha-stream-flow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -400; }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-svg-anim {
    animation: none;
    opacity: 0.35;
  }
  .hero-svg-anim * {
    animation: none !important;
  }
  .ha-wave { opacity: 0.3; }
  .ha-node { opacity: 0.2; }
  .ha-conn { opacity: 0.08; }
}

/* ============================================
   Hero — Small Desktop / MacBook Responsive
   ============================================ */

/* --- Width layer: small laptops 992px–1279px --- */
@media screen and (min-width: 992px) and (max-width: 1279px) {
  #hero-seo-illust {
    top: -60px;
    width: 40%;
    max-width: 420px;
  }

  .hero-sub-heading {
    max-width: 440px;
  }

  .hero-supporting-text {
    max-width: 460px;
    font-size: 15px;
  }
}

/* --- Width layer: medium laptops 1280px–1439px --- */
@media screen and (min-width: 1280px) and (max-width: 1439px) {
  #hero-seo-illust {
    top: -80px;
    width: 44%;
    max-width: 500px;
  }

  .hero-supporting-text {
    max-width: 540px;
  }
}

/* --- Height layer: short viewports ≤900px (desktop only) --- */
@media screen and (min-width: 992px) and (max-height: 900px) {
  .hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .hero-sub-heading {
    margin-bottom: 24px;
  }

  .hero-top-content .primary-button {
    margin-top: 24px;
  }

  .hero-stats {
    margin-top: 28px;
  }

  .hero-title-block {
    top: -60px;
  }

  .hero-social-block {
    bottom: 50px;
  }

  #hero-seo-illust {
    top: -50px;
  }
}

/* --- Height layer: very short viewports ≤768px (desktop only) --- */
@media screen and (min-width: 992px) and (max-height: 768px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-sub-heading {
    margin-bottom: 16px;
  }

  .hero-supporting-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-top-content .primary-button {
    margin-top: 16px;
  }

  .hero-stats {
    margin-top: 20px;
    gap: 20px;
  }

  .hero-stat__number {
    font-size: 1.5rem;
  }

  .hero-stats__divider {
    height: 36px;
  }

  .hero-title-block {
    top: -36px;
  }

  .hero-social-block {
    bottom: 28px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  #hero-seo-illust {
    top: -30px;
  }

  #hero-logo-anim svg {
    top: -20%;
  }
}

/* --- Combined: small width + short height (e.g. 1024×768) --- */
@media screen and (min-width: 992px) and (max-width: 1279px) and (max-height: 768px) {
  .hero-section {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .hero-stats {
    gap: 16px;
    margin-top: 16px;
  }

  .hero-stat__number {
    font-size: 1.35rem;
  }

  .hero-stat__label {
    font-size: 0.75rem;
  }

  .hero-stats__divider {
    height: 32px;
  }

  .hero-title-block {
    top: -24px;
  }

  .hero-social-block {
    bottom: 20px;
  }

  #hero-seo-illust {
    top: -20px;
    width: 36%;
    max-width: 360px;
  }
}

/* Hero container fade-in */
.container.hero {
  transition: opacity 0.8s ease 0.3s;
}

/* Hero social block animations */
.hero-social-block ._20px-title {
  transition: opacity 0.5s ease;
}

.hero-social-block .hero-title-divider {
  transition: width 0.5s ease;
}

.hero-social-block .footer-social-icon {
  transition: transform 0.5s ease;
}

/* Circle-percentage button (projects section) */
.circle-percentage {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 260px;
  padding: 10px;
  display: flex;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 5;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.circle-percentage:hover {
  transform: scale(1.05);
}

.circle-inside-wrapper {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  padding: 0px;
  position: relative;
  overflow: hidden;
  border: 0px solid #131317;
  transition: border-width 0.1s linear;
  box-sizing: border-box;
}

.circle-percentage-color {
  background-color: #131317;
  position: absolute;
  inset: 0%;
  border-radius: 50%;
  display: none;
}

.circle-percentage-white {
  z-index: 1;
  background-color: #fff;
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

._30px-text-black {
  color: #0e0e14;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  line-height: 1.3em;
}

@media screen and (max-width: 991px) {
  .circle-percentage {
    display: none;
  }
}

@media screen and (min-width: 992px) and (max-width: 1279px) {
  .circle-percentage {
    width: 200px;
    height: 200px;
  }

  ._30px-text-black {
    font-size: 26px;
  }

  .circle-inside-wrapper {
    padding: 5px;
  }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
  ._30px-text-black {
    font-size: 26px;
  }
}

/* Portfolio card overrides */
.black-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.portfolio-info-card {
  background-color: transparent;
  border-radius: 0;
  inset: auto 0 0;
  padding: 24px 20px;
}

.portfolio-info-card .heading-24px-uppercase {
  color: #fff;
  font-size: 20px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Horizontal scroll - projects */
@media screen and (min-width: 992px) {
  .horizontal-slider-section {
    z-index: 1;
    height: 200vw;
    position: relative;
  }

  .camera {
    position: sticky;
    top: 60px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .frame {
    display: flex;
    gap: 10px;
    width: 100%;
  }

  .item {
    display: flex;
    gap: 20px;
    flex: none;
    width: 100vw;
    height: 43vh;
  }

  .frame-reverse {
    display: flex;
    gap: 10px;
    width: 100%;
  }
}

/* Projects mobile swiper - hidden on desktop */
.projects-mobile-swiper {
  display: none;
}

@media screen and (max-width: 767px) {
  /* Hide desktop projects layout on mobile */
  .camera {
    display: none !important;
  }

  /* Show mobile swiper */
  .projects-mobile-swiper {
    display: block;
    padding: 0 20px;
  }

  .projects-mobile-title {
    margin-bottom: 32px;
    text-align: center;
  }

  .projects-mobile-swiper .portfolio-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid var(--border);
  }

  .projects-mobile-swiper .portfolio-thumbnail {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: top;
    min-height: auto;
    height: auto;
  }

  .projects-swiper-pagination {
    margin-top: 20px;
    position: relative;
    text-align: center;
  }

  .projects-swiper-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .projects-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.25);
  }
}

/* Responsive */
@media screen and (max-width: 767px) {
  .testimonial-slider.swiper {
    width: 100%;
  }

  .testimonials-nav-wrapper {
    display: none;
  }
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */

/* --- Section wrapper --- */
/* --- Section wrapper --- */
.wcu-section {
  position: relative;
  padding: 130px 0 120px;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(99,102,241,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(168,85,247,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(45,212,191,0.04) 0%, transparent 50%),
    linear-gradient(160deg, #07080f 0%, #0a0b18 25%, #0d0f22 50%, #0a0e1c 75%, #070a14 100%);
  overflow: hidden;
}

/* Dot-matrix overlay */
.wcu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* Soft edge vignette */
.wcu-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 40%, rgba(7,8,15,0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

/* --- SVG Background --- */
.wcu-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.wcu-bg-svg * {
  will-change: transform, opacity;
}

/* Aurora ribbon drift */
@keyframes wcu-hexSpin {
  0%   { transform: translateX(0) translateY(0); opacity: 0.5; }
  25%  { transform: translateX(40px) translateY(-15px); opacity: 0.8; }
  50%  { transform: translateX(-20px) translateY(10px); opacity: 0.6; }
  75%  { transform: translateX(30px) translateY(5px); opacity: 0.9; }
  100% { transform: translateX(0) translateY(0); opacity: 0.5; }
}
.wcu-hex {
  animation: wcu-hexSpin 20s ease-in-out infinite;
}
.wcu-hex--2 { animation-duration: 25s; animation-delay: -5s; }
.wcu-hex--3 { animation-duration: 18s; animation-delay: -10s; }

/* Pulsing connection lines */
@keyframes wcu-linePulse {
  0%, 100% { opacity: 0; }
  50%      { opacity: 1; }
}
.wcu-line {
  animation: wcu-linePulse 5s ease-in-out infinite;
}
.wcu-line--2 { animation-delay: 0.8s; }
.wcu-line--3 { animation-delay: 1.6s; }
.wcu-line--4 { animation-delay: 2.4s; }
.wcu-line--5 { animation-delay: 3.2s; }
.wcu-line--6 { animation-delay: 4s; }

/* Breathing particle dots */
@keyframes wcu-nodeBreathe {
  0%, 100% { transform: translateY(0) scale(1);   opacity: 0.3; }
  50%      { transform: translateY(-12px) scale(1.8); opacity: 0.9; }
}
@keyframes wcu-nodeBreatheSm {
  0%, 100% { transform: translateY(0) scale(1);   opacity: 0.2; }
  50%      { transform: translateY(-8px) scale(1.5); opacity: 0.7; }
}
.wcu-node {
  animation: wcu-nodeBreathe 4s ease-in-out infinite;
}
.wcu-node--2 { animation-delay: 0.6s; animation-duration: 4.5s; }
.wcu-node--3 { animation-delay: 1.2s; animation-duration: 3.8s; }
.wcu-node--4 { animation-delay: 1.8s; }
.wcu-node--5,
.wcu-node--6,
.wcu-node--7,
.wcu-node--8 {
  animation-name: wcu-nodeBreatheSm;
  animation-duration: 5s;
}
.wcu-node--6 { animation-delay: 1.5s; }
.wcu-node--7 { animation-delay: 3s; }
.wcu-node--8 { animation-delay: 4.5s; }

/* --- Section description --- */
.wcu-section-desc {
  color: rgba(255,255,255,0.5);
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  max-width: 580px;
  margin-top: 20px;
}

/* --- Card grid: 2-column staggered --- */
.wcu-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
  counter-reset: wcu-counter;
}

/* --- Card: horizontal layout with left accent bar --- */
.wcu-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: none;
  border-radius: 0 16px 16px 0;
  padding: 28px 28px 28px 32px;
  transition: transform 0.4s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease,
              background 0.4s ease;
  overflow: hidden;
  counter-increment: wcu-counter;
}

/* Card step number watermark */
.wcu-card::before {
  content: '0' counter(wcu-counter);
  position: absolute;
  top: 10px;
  right: 16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  pointer-events: none;
  z-index: 0;
  transition: -webkit-text-stroke-color 0.4s ease;
}

/* Left accent bar — vertical gradient strip */
.wcu-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, rgba(99,102,241,0.3), rgba(99,102,241,0.08));
  opacity: 1;
  transition: width 0.4s cubic-bezier(.25,.46,.45,.94),
              background 0.4s ease;
  z-index: 2;
  border-radius: 0;
}

/* Icon: circle container */
.wcu-card__icon {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(99,102,241,0.2);
  background: rgba(99,102,241,0.05);
  padding: 10px;
  transition: transform 0.4s cubic-bezier(.25,.46,.45,.94),
              border-color 0.4s ease,
              background 0.4s ease,
              box-shadow 0.4s ease;
  z-index: 1;
}

.wcu-card__icon::before {
  display: none;
}

.wcu-card__icon svg {
  width: 100%;
  height: 100%;
}

/* Card title */
.wcu-card__title {
  position: relative;
  font-family: 'League Spartan', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin: 0;
  transition: color 0.4s ease;
  z-index: 1;
}

/* Card description */
.wcu-card__desc {
  position: relative;
  font-family: 'Barlow', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  margin: 0;
  transition: color 0.4s ease;
  z-index: 1;
}

/* --- Card hover & auto-active --- */
.wcu-card:hover,
.wcu-card.wcu-card--active {
  transform: translateX(6px);
  background: rgba(255,255,255,0.04);
  border-color: rgba(251,146,60,0.12);
  box-shadow:
    -4px 0 20px rgba(251,146,60,0.06),
    0 8px 30px rgba(0,0,0,0.2);
}

/* Number watermark glows */
.wcu-card:hover::before,
.wcu-card.wcu-card--active::before {
  -webkit-text-stroke-color: rgba(251,146,60,0.06);
}

/* Left bar expands + turns orange */
.wcu-card:hover .wcu-card__accent,
.wcu-card.wcu-card--active .wcu-card__accent {
  width: 4px;
  background: linear-gradient(180deg, #fb923c, #f97316 50%, #ec4899);
  opacity: 1;
}

/* Icon circle glows */
.wcu-card:hover .wcu-card__icon,
.wcu-card.wcu-card--active .wcu-card__icon {
  transform: scale(1.1);
  border-color: rgba(251,146,60,0.35);
  background: rgba(251,146,60,0.08);
  box-shadow: 0 0 20px rgba(251,146,60,0.10);
}

.wcu-card:hover .wcu-card__title,
.wcu-card.wcu-card--active .wcu-card__title {
  color: #fb923c;
}

.wcu-card:hover .wcu-card__desc,
.wcu-card.wcu-card--active .wcu-card__desc {
  color: rgba(255,255,255,0.58);
}

/* Icon stroke-draw effect */
.wcu-card__icon svg rect[stroke],
.wcu-card__icon svg circle[stroke],
.wcu-card__icon svg path[stroke] {
  stroke-dashoffset: var(--dash-length);
  stroke-dasharray: var(--dash-length);
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcu-card:hover .wcu-card__icon svg rect[stroke],
.wcu-card:hover .wcu-card__icon svg circle[stroke],
.wcu-card:hover .wcu-card__icon svg path[stroke],
.wcu-card.wcu-card--active .wcu-card__icon svg rect[stroke],
.wcu-card.wcu-card--active .wcu-card__icon svg circle[stroke],
.wcu-card.wcu-card--active .wcu-card__icon svg path[stroke] {
  stroke-dashoffset: 0;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */

/* --- Section wrapper --- */
.hiw-section {
  position: relative;
  padding: 130px 0 120px;
  background:
    radial-gradient(ellipse 70% 50% at 15% 30%, rgba(251,146,60,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(99,102,241,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(45,212,191,0.03) 0%, transparent 50%),
    linear-gradient(165deg, #08091a 0%, #0b0c1e 25%, #0e1028 50%, #0b0e20 75%, #080a16 100%);
  overflow: hidden;
}

/* Subtle dot-matrix overlay */
.hiw-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* Soft vignette */
.hiw-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 40%, rgba(8,9,26,0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

/* --- SVG Background --- */
.hiw-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hiw-bg-svg * {
  will-change: transform, opacity;
}

/* Orbit ring drift */
@keyframes hiw-orbitDrift {
  0%   { transform: rotate(0deg); opacity: 0.5; }
  50%  { opacity: 0.8; }
  100% { transform: rotate(360deg); opacity: 0.5; }
}
.hiw-orbit {
  animation: hiw-orbitDrift 40s linear infinite;
  transform-origin: center center;
}
.hiw-orbit--2 { animation-duration: 55s; animation-direction: reverse; }

/* Floating dots */
@keyframes hiw-dotFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50%      { transform: translateY(-8px) scale(1.2); opacity: 0.7; }
}
.hiw-dot {
  animation: hiw-dotFloat 5s ease-in-out infinite;
}
.hiw-dot--2 { animation-duration: 6s; animation-delay: -1.5s; }
.hiw-dot--3 { animation-duration: 4.5s; animation-delay: -3s; }
.hiw-dot--4 { animation-duration: 5.5s; animation-delay: -2s; }

/* Connection line pulse */
@keyframes hiw-linePulse {
  0%, 100% { opacity: 0.15; }
  50%      { opacity: 0.35; }
}
.hiw-conn-line {
  animation: hiw-linePulse 4s ease-in-out infinite;
}

/* --- Section description --- */
.hiw-section-desc {
  color: rgba(255,255,255,0.5);
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  max-width: 580px;
  margin-top: 20px;
}

/* --- CTA button wrapper --- */
.hiw-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.hiw-cta-wrapper .primary-button {
  width: auto;
}

/* --- Step layout: 3-column timeline --- */
.hiw-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
}

/* --- Connecting path between cards --- */
.hiw-connector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hiw-connector-path {
  stroke-dasharray: 8 6;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hiw-timeline.scroll-animated .hiw-connector-path {
  opacity: 0.25;
}

@keyframes hiw-dashFlow {
  to { stroke-dashoffset: -28; }
}
.hiw-timeline.scroll-animated .hiw-connector-path {
  animation: hiw-dashFlow 2s linear infinite;
}

/* --- Step card --- */
.hiw-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px 36px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.5s ease,
              border-color 0.5s ease,
              background 0.5s ease;
  overflow: hidden;
  min-height: 320px;
  z-index: 1;
}

/* Staggered vertical offset — cascading look */
.hiw-step:nth-of-type(2) {
  margin-top: 50px;
}
.hiw-step:nth-of-type(3) {
  margin-top: 100px;
}

/* Step number watermark */
.hiw-step::before {
  content: attr(data-step);
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.025);
  pointer-events: none;
  z-index: 0;
  transition: -webkit-text-stroke-color 0.5s ease;
}

/* Top accent shimmer */
.hiw-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(99,102,241,0.3) 30%, rgba(251,146,60,0.4) 70%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Icon container */
.hiw-step__icon {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(99,102,241,0.06);
  border: 1.5px solid rgba(99,102,241,0.18);
  margin-bottom: 24px;
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94),
              border-color 0.5s ease,
              background 0.5s ease,
              box-shadow 0.5s ease;
  z-index: 1;
}

.hiw-step__icon svg {
  width: 34px;
  height: 34px;
}

/* Icon outer ring animation */
@keyframes hiw-iconRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%      { transform: scale(1.15); opacity: 0; }
}
.hiw-step__icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.15);
  opacity: 0;
  pointer-events: none;
}
.hiw-step:hover .hiw-step__icon-ring {
  animation: hiw-iconRingPulse 2s ease-in-out infinite;
}

/* Step label */
.hiw-step__label {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(251,146,60,0.6);
  margin-bottom: 10px;
  z-index: 1;
}

/* Step title */
.hiw-step__title {
  font-family: 'League Spartan', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin: 0 0 12px;
  transition: color 0.5s ease;
  z-index: 1;
}

/* Step description */
.hiw-step__desc {
  font-family: 'Barlow', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin: 0;
  transition: color 0.5s ease;
  z-index: 1;
}

/* --- Hover effects --- */
.hiw-step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.04);
  border-color: rgba(251,146,60,0.15);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.3),
    0 0 40px rgba(251,146,60,0.04);
}

.hiw-step:hover::before {
  -webkit-text-stroke-color: rgba(251,146,60,0.06);
}

.hiw-step:hover::after {
  opacity: 1;
}

.hiw-step:hover .hiw-step__icon {
  transform: scale(1.08);
  border-color: rgba(251,146,60,0.35);
  background: rgba(251,146,60,0.08);
  box-shadow: 0 0 24px rgba(251,146,60,0.1);
}

.hiw-step:hover .hiw-step__title {
  color: #fb923c;
}

.hiw-step:hover .hiw-step__desc {
  color: rgba(255,255,255,0.58);
}

/* --- Arrow path draw animation on scroll --- */
@keyframes hiw-arrowDraw {
  from { stroke-dashoffset: var(--arrow-len); }
  to   { stroke-dashoffset: 0; }
}

.hiw-step__arrow {
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.hiw-step__arrow svg {
  width: 100%;
  height: 100%;
}

.hiw-step__arrow path {
  stroke-dasharray: var(--arrow-len);
  stroke-dashoffset: var(--arrow-len);
}

.hiw-timeline.scroll-animated .hiw-step__arrow {
  opacity: 1;
}
.hiw-timeline.scroll-animated .hiw-step:nth-of-type(1) .hiw-step__arrow path {
  animation: hiw-arrowDraw 0.6s 0.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hiw-timeline.scroll-animated .hiw-step:nth-of-type(2) .hiw-step__arrow path {
  animation: hiw-arrowDraw 0.6s 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* --- Staggered entrance for steps --- */
.hiw-step {
  opacity: 0;
  transform: translateY(30px);
}
.hiw-timeline.scroll-animated .hiw-step:nth-of-type(1) {
  animation: hiw-stepEnter 0.7s 0.1s cubic-bezier(.25,.46,.45,.94) forwards;
}
.hiw-timeline.scroll-animated .hiw-step:nth-of-type(2) {
  animation: hiw-stepEnter 0.7s 0.3s cubic-bezier(.25,.46,.45,.94) forwards;
}
.hiw-timeline.scroll-animated .hiw-step:nth-of-type(3) {
  animation: hiw-stepEnter 0.7s 0.5s cubic-bezier(.25,.46,.45,.94) forwards;
}

@keyframes hiw-stepEnter {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media screen and (max-width: 991px) {
  .hiw-section {
    padding: 100px 0 90px;
  }
  .hiw-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .hiw-step:nth-of-type(2),
  .hiw-step:nth-of-type(3) {
    margin-top: 0;
  }
  .hiw-step {
    min-height: auto;
  }
  .hiw-step__arrow {
    display: none;
  }
  .hiw-connector {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hiw-section {
    padding: 80px 0 70px;
  }
  .hiw-timeline {
    margin-top: 48px;
    gap: 20px;
  }
  .hiw-step {
    padding: 32px 22px 28px;
    border-radius: 16px;
  }
  .hiw-step__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }
  .hiw-step__icon svg {
    width: 28px;
    height: 28px;
  }
  .hiw-step__title {
    font-size: 19px;
  }
  .hiw-section-desc {
    font-size: 15px;
  }
}

@media screen and (max-width: 479px) {
  .hiw-section {
    padding: 64px 0 56px;
  }
  .hiw-timeline {
    gap: 16px;
    margin-top: 36px;
  }
  .hiw-step {
    padding: 26px 18px 24px;
    border-radius: 14px;
  }
  .hiw-step__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }
  .hiw-step__icon svg {
    width: 24px;
    height: 24px;
  }
  .hiw-step::before {
    font-size: 48px;
  }
  .hiw-step__title {
    font-size: 17px;
  }
  .hiw-step__desc {
    font-size: 13.5px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hiw-orbit,
  .hiw-dot,
  .hiw-conn-line {
    animation: none !important;
  }
  .hiw-step {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
  .hiw-step__icon {
    transition: none !important;
  }
  .hiw-step__icon-ring {
    display: none;
  }
  .hiw-step__arrow path {
    stroke-dashoffset: 0 !important;
    animation: none !important;
  }
  .hiw-step__arrow {
    opacity: 1;
    transition: none !important;
  }
  .hiw-connector-path {
    opacity: 0.25;
    animation: none !important;
  }
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */

/* --- Section wrapper --- */
.cta-banner-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(170deg, #12101d 0%, #1a1222 50%, #18101c 100%);
  overflow: hidden;
}

/* Scan-line overlay */
.cta-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(168,85,247,0.015) 3px,
    rgba(168,85,247,0.015) 4px
  );
  pointer-events: none;
}

/* --- SVG Background --- */
.cta-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.cta-bg-svg * {
  will-change: transform, opacity;
}

/* Concentric pulse rings */
@keyframes cta-ringPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.cta-ring {
  transform-origin: center;
  animation: cta-ringPulse 5s ease-out infinite;
}
.cta-ring--2 { animation-delay: 1.7s; }
.cta-ring--3 { animation-delay: 3.4s; }

/* Floating sparkle dots */
@keyframes cta-sparkleFloat {
  0%, 100% { transform: translateY(0) scale(1);   opacity: 0.3; }
  50%      { transform: translateY(-20px) scale(1.5); opacity: 0.8; }
}
.cta-sparkle {
  animation: cta-sparkleFloat 4s ease-in-out infinite;
}
.cta-sparkle--2 { animation-delay: 0.7s; animation-duration: 5s; }
.cta-sparkle--3 { animation-delay: 1.4s; animation-duration: 3.5s; }
.cta-sparkle--4 { animation-delay: 2.1s; animation-duration: 4.5s; }
.cta-sparkle--5 { animation-delay: 2.8s; animation-duration: 5.5s; }
.cta-sparkle--6 { animation-delay: 3.5s; animation-duration: 3.8s; }

/* --- Inner content --- */
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Badge */
.cta-banner__badge {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(251,146,60,0.9);
  background: rgba(251,146,60,0.08);
  border: 1px solid rgba(251,146,60,0.15);
  border-radius: 40px;
  padding: 8px 24px;
  margin-bottom: 28px;
}

/* Heading */
.cta-banner__heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: 44px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.cta-banner__heading-accent {
  background: linear-gradient(135deg, #fb923c, #f97316, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Supporting text */
.cta-banner__text {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA button overrides */
.cta-banner__btn {
  margin: 0 auto;
}

/* Decorative envelope icon */
.cta-envelope-icon {
  position: absolute;
  top: 32px;
  left: 40px;
  width: 120px;
  height: auto;
  color: rgba(168,85,247,0.10);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   RESPONSIVE — Why Choose Us & CTA Banner
   ============================================================ */
@media screen and (max-width: 991px) {
  .wcu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wcu-card {
    padding: 24px 24px 24px 28px;
  }
  .wcu-card::before {
    font-size: 48px;
  }
  .cta-banner__heading {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .wcu-section {
    padding: 88px 0 80px;
  }
  .wcu-grid {
    margin-top: 40px;
    gap: 14px;
  }
  .wcu-card {
    padding: 22px 20px 22px 26px;
    gap: 16px;
  }
  .wcu-card__icon {
    width: 48px;
    height: 48px;
    padding: 8px;
  }
  .wcu-card::before {
    font-size: 40px;
    top: 8px;
    right: 12px;
  }
  .cta-banner-section {
    padding: 72px 0;
  }
  .cta-banner__heading {
    font-size: 30px;
  }
  .cta-banner__text {
    font-size: 15px;
  }
}

@media screen and (max-width: 479px) {
  .wcu-section {
    padding: 64px 0;
  }
  .wcu-card {
    padding: 20px 16px 20px 22px;
    gap: 14px;
    border-radius: 0 12px 12px 0;
  }
  .wcu-card__icon {
    width: 44px;
    height: 44px;
    padding: 7px;
  }
  .wcu-card__title {
    font-size: 17px;
  }
  .wcu-card__desc {
    font-size: 13.5px;
  }
  .wcu-card::before {
    font-size: 34px;
  }
  .wcu-section-desc {
    font-size: 15px;
  }
  .cta-banner-section {
    padding: 56px 0;
  }
  .cta-banner__heading {
    font-size: 26px;
  }
  .cta-banner__badge {
    font-size: 11px;
    padding: 6px 18px;
  }
}

/* ============================================================
   GLOBAL RESPONSIVE FIXES
   ============================================================ */

/* --- Tablet (991px) ---------------------------------------- */
@media screen and (max-width: 991px) {
  /* Global – prevent horizontal overflow from decorative elements */
  .site-wrapper { overflow-x: hidden; }

  /* Hero */
  .hero-sub-heading { max-width: 100%; }

  /* Services – tighten card spacing for tablet */
  .testimonial-card-wrapper.w-tab-menu .service-card-hover-in {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  /* Testimonials */
  #testimonials { padding: 80px 0 60px; }
  .testimonial-quote-stroke { width: 140px; height: 120px; }

  /* FAQ */
  .faq-question-mark { font-size: 350px; }
}

/* --- Mobile (767px) ---------------------------------------- */
@media screen and (max-width: 767px) {
  .infinity-hero-slides {
    padding-top: 182px;
  }

  .wcu-card__desc {
    font-size: 14px;
  }

  .hiw-step__desc {
    font-size: 14px;
  }

  /* Services – disable all animations and fix visibility on mobile */
  #services.section.flex-center {
    overflow: visible !important;
  }
  #services .w-tabs {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .testimonial-card-wrapper .tab-link-no-css {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .testimonial-card-wrapper.w-tab-menu .service-heading-wrapper {
    margin-bottom: 0 !important;
  }

  /* Services – compact service cards for mobile */
  .testimonial-card-wrapper.w-tab-menu {
    gap: 10px;
  }
  .testimonial-card-wrapper.w-tab-menu .tab-link-no-css {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .testimonial-card-wrapper.w-tab-menu .tab-link-no-css:last-child {
    border-bottom: none;
  }
  .testimonial-card-wrapper.w-tab-menu .service-card-hover-in {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .testimonial-card-wrapper.w-tab-menu .service-heading {
    font-size: clamp(22px, 5.5vw, 34px);
  }
  .testimonial-card-wrapper.w-tab-menu ._14px-text-600 {
    font-size: 11px;
  }
  .testimonial-card-wrapper.w-tab-menu .service-heading-wrapper::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffa66b'%3E%3Crect x='1' y='1' width='6' height='6' rx='1'/%3E%3Crect x='9' y='1' width='6' height='6' rx='1'/%3E%3Crect x='1' y='9' width='6' height='6' rx='1'/%3E%3Crect x='9' y='9' width='6' height='6' rx='1'/%3E%3C/svg%3E") no-repeat center / contain;
  }
  .testimonial-card-wrapper.w-tab-menu .service-heading-wrapper {
    display: flex;
    align-items: center;
  }
  /* Testimonials */
  #testimonials { padding: 60px 0 50px; }
  .testimonial-quote-stroke { width: 100px; height: 85px; opacity: 0.08; }
  .testimonial-slider.swiper { padding: 30px 0 50px !important; }
  .testimonial-contents { padding: 1.5rem 1rem 1rem; }

  /* FAQ */
  .faq-question-mark { font-size: 220px; }

  /* CTA */
  .cta-envelope-icon { width: 80px; top: 20px; left: 20px; }

  /* Contact — override inline grid-area span 2 for single-column layout */
  [style*="grid-area:span 1/span 2"],
  [style*="grid-area: span 1 / span 2"] { grid-area: span 1 / span 1 !important; }
}

/* --- Small Mobile (479px) ---------------------------------- */
@media screen and (max-width: 479px) {
  /* Navbar */
  .navbar-main .navbar { padding: 10px 14px !important; }

  /* Hero */
  .hero-sub-heading { max-width: 100%; }

  /* Services – further compact for small phones */
  .testimonial-card-wrapper.w-tab-menu .service-card-hover-in {
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 6px;
  }
  .testimonial-card-wrapper.w-tab-menu .service-heading {
    font-size: clamp(18px, 6vw, 28px);
  }
  .testimonial-card-wrapper.w-tab-menu .service-heading-wrapper::before {
    width: 12px;
    height: 12px;
    margin-right: 6px;
  }
  /* Testimonials */
  #testimonials { padding: 48px 0 40px; }
  .testimonial-quote-stroke { display: none; }
  .testimonial-text { font-size: 0.8rem; -webkit-line-clamp: 4; }
  .testimonial-image-wrapper { aspect-ratio: 3 / 4; }
  .testimonial-contents { padding: 1.25rem 0.875rem 1rem; gap: 10px; }

  /* FAQ */
  .faq-question-mark { font-size: 150px; right: -10%; }

  /* CTA */
  .cta-envelope-icon { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .wcu-hex,
  .wcu-line,
  .wcu-node,
  .cta-ring,
  .cta-sparkle {
    animation: none !important;
  }
}
