/* ============================================================
   ZYNKWAVE TECHNOLOGIES — MASTER STYLESHEET
   Primary: #750244 | Secondary: #F7D5F4 | Dark: #1A0A14
   Fonts: Oswald (headings) + Poppins (body/UI)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #750244;
  --primary-dark: #4e0130;
  --primary-light: #9a0358;
  --secondary: #f7d5f4;
  --secondary-dark: #e8b5e4;
  --accent: #ff6b9d;
  --white: #ffffff;
  --off-white: #fdf8ff;
  --light-bg: #f9f4fa;
  --gray: #8a8a99;
  --text: #1a0a14;
  --text-light: #6b5570;
  --dark: #1a0a14;
  --dark2: #2d1122;
  --grad-primary: linear-gradient(135deg, #750244, #9a0358 50%, #c0054f);
  --grad-dark: linear-gradient(160deg, #1a0a14 0%, #2d1122 100%);
  --shadow-sm: 0 2px 8px rgba(117, 2, 68, .10);
  --shadow-md: 0 8px 32px rgba(117, 2, 68, .15);
  --shadow-lg: 0 20px 60px rgba(117, 2, 68, .20);
  --shadow-xl: 0 30px 80px rgba(117, 2, 68, .30);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-ui: 'Poppins', sans-serif;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7
}

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

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

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: #f1f1f1
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px
}

/* ── Typography ── */
h1,
h2,
h3 {
  font-family: var(--font-head);
  line-height: 1.18;
  letter-spacing: .01em
}

h4,
h5,
h6 {
  font-family: var(--font-ui);
  line-height: 1.4
}

p {
  color: var(--text-light);
  line-height: 1.8
}

/* ── Utilities ── */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px
}

.sec-pad {
  padding: 100px 0
}

.sec-pad-sm {
  padding: 60px 0
}

.text-center {
  text-align: center
}

.bg-light {
  background: var(--light-bg)
}

.bg-dark {
  background: var(--dark2)
}

.d-flex {
  display: flex
}

.align-center {
  align-items: center
}

.gap-16 {
  gap: 16px
}

.gap-24 {
  gap: 24px
}

/* ── Section Labels ── */
.sec-tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid var(--secondary-dark)
}

.sec-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px
}

.sec-title span {
  color: var(--primary)
}

.sec-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.8
}

.sec-block {
  margin-bottom: 56px
}

.sec-block.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.sec-block.center .sec-subtitle {
  text-align: center
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .02em;
  transition: var(--transition)
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(117, 2, 68, .35)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(117, 2, 68, .5)
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary)
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px)
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

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

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .5)
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px)
}

.btn-lg {
  padding: 16px 40px;
  font-size: .96rem
}

.btn-sm {
  padding: 9px 20px;
  font-size: .8rem
}

/* ── Preloader — Premium Logo ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark2);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity .6s ease, visibility .6s ease
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.pre-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.pre-logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  animation: preLogoIn .7s cubic-bezier(.34, 1.56, .64, 1) both;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0);
  padding: 10px
}

.pre-ring {
  position: absolute;
  width: 256px;
  height: 256px;
  border: 2.5px solid transparent;
  border-top-color: var(--primary);
  border-right-color: rgba(247, 213, 244, .4);
  border-radius: 50%;
  animation: preSpin 1.4s linear infinite
}

.pre-ring2 {
  position: absolute;
  width: 282px;
  height: 282px;
  border: 1.5px solid transparent;
  border-bottom-color: rgba(247, 213, 244, .2);
  border-left-color: var(--primary);
  border-radius: 50%;
  animation: preSpin 2.2s linear infinite reverse;
  opacity: .5
}

.pre-name-img {
  height: 72px;
  max-width: 360px;
  object-fit: contain;
  animation: preFadeUp .6s .4s ease both;
  opacity: 0
}

.pre-bar {
  width: 260px;
  height: 4px;
  background: rgba(255, 255, 255, .08);
  border-radius: 4px;
  overflow: hidden;
  animation: preFadeUp .4s .6s ease both;
  opacity: 0
}

.pre-fill {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 4px;
  width: 0
}

.pre-pct {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .18em;
  animation: preFadeUp .4s .65s ease both;
  opacity: 0
}

@keyframes preSpin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes preLogoIn {
  from {
    opacity: 0;
    transform: scale(.7)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes preFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition)
}

#navbar.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(117, 2, 68, .09);
  padding: 12px 0
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
  flex-shrink: 0
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition)
}

.nav-logo-text span {
  color: var(--secondary)
}

#navbar.scrolled .nav-logo-text {
  color: var(--dark)
}

#navbar.scrolled .nav-logo-text span {
  color: var(--primary)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: .86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
  padding: 7px 13px;
  border-radius: 8px;
  transition: var(--transition)
}

#navbar.scrolled .nav-links a {
  color: var(--text)
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--secondary)
}

#navbar:not(.scrolled) .nav-links a:hover {
  color: var(--dark);
  background: rgba(247, 213, 244, .9)
}

.nav-cta {
  margin-left: 12px
}

/* Hide mobile-injected elements on desktop */
.nav-drawer-header,
.nav-mobile-cta {
  display: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9991;
  position: relative
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: transform .32s cubic-bezier(.4, 0, .2, 1), opacity .25s ease, background .25s ease
}

#navbar.scrolled .nav-burger span {
  background: var(--dark)
}

body.nav-open .nav-burger span {
  background: #fff !important;
}

/* ── Ticker ── */
.ticker {
  background: var(--primary);
  padding: 12px 0;
  overflow: hidden
}

.ticker-track {
  display: flex;
  animation: tick 32s linear infinite;
  white-space: nowrap
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--secondary);
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 28px
}

.ticker-item::after {
  content: '✦';
  color: rgba(247, 213, 244, .35)
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

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

/* ── Hero ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-dark)
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(247, 213, 244, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(247, 213, 244, .03) 1px, transparent 1px);
  background-size: 60px 60px
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(117, 2, 68, .4) 0%, transparent 50%), radial-gradient(circle at 80% 60%, rgba(154, 3, 88, .25) 0%, transparent 50%)
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatup linear infinite;
  opacity: 0
}

@keyframes floatup {
  0% {
    transform: translateY(100vh) rotate(0);
    opacity: 0
  }

  10% {
    opacity: 1
  }

  90% {
    opacity: .8
  }

  100% {
    transform: translateY(-120px) rotate(720deg);
    opacity: 0
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 130px 0 90px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 213, 244, .1);
  border: 1px solid rgba(247, 213, 244, .22);
  color: var(--secondary);
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #ff6b9d;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite
}

@keyframes pulse-dot {

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

  50% {
    opacity: .5;
    transform: scale(1.5)
  }
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px
}

.hero-title em {
  color: var(--secondary);
  font-style: normal;
  position: relative;
  display: inline-block
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 2px
}

.hero-slogan {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  color: rgba(247, 213, 244, .75);
  margin-bottom: 18px;
  font-weight: 300;
  font-style: italic
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 36px;
  line-height: 1.8
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  line-height: 1
}

.stat-lbl {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  font-family: var(--font-ui);
  letter-spacing: .04em;
  margin-top: 4px;
  display: block
}

/* Hero right visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-card {
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  padding: 36px;
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2
}

.hero-card-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px
}

.hero-card-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px
}

.hero-svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.hero-svc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
  font-family: var(--font-ui);
  font-size: .88rem
}

.hero-svc-item::before {
  content: '→';
  color: var(--secondary);
  font-weight: 700
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  animation: float-y 3s ease-in-out infinite;
  z-index: 3
}

.float-card:nth-child(1) {
  top: -16px;
  right: -28px;
  animation-delay: 0s
}

.float-card:nth-child(2) {
  bottom: 16px;
  left: -28px;
  animation-delay: 1.5s
}

.float-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 3px
}

.float-val {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  display: block
}

@keyframes float-y {

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

  50% {
    transform: translateY(-10px)
  }
}

/* ── Services Grid ── */
.svcs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.svc-card {
  background: #fff;
  border: 1px solid rgba(117, 2, 68, .08);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: var(--transition)
}

.svc-card:hover::before {
  transform: scaleX(1)
}

.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary)
}

.svc-icon {
  width: 58px;
  height: 58px;
  background: var(--secondary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 18px;
  transition: var(--transition)
}

.svc-card:hover .svc-icon {
  background: var(--primary)
}

.svc-title {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 9px
}

.svc-desc {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 18px
}

.svc-link {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition)
}

.svc-link:hover {
  gap: 10px
}

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.why-visual {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .1) 0%, transparent 50%)
}

.why-big {
  font-family: var(--font-head);
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .06);
  position: absolute;
  top: 14px;
  right: 14px;
  line-height: 1
}

.why-visual-inner {
  position: relative
}

.why-visual-title {
  font-family: var(--font-head);
  font-size: 1.85rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700
}

.why-visual-text {
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  margin-bottom: 22px
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.why-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 18px;
  transition: var(--transition)
}

.why-feat:hover {
  background: rgba(255, 255, 255, .16)
}

.why-feat-icon {
  font-size: 1.4rem;
  width: 38px;
  height: 38px;
  background: rgba(247, 213, 244, .15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px
}

.why-feat-title {
  font-family: var(--font-ui);
  font-weight: 700;
  margin-bottom: 3px;
  color: #fff
}

.why-feat-text {
  font-size: .83rem;
  opacity: .72;
  color: #fff
}

/* ── Counter Strip ── */
.counter-strip {
  background: var(--grad-primary);
  padding: 68px 0;
  position: relative;
  overflow: hidden
}

.counter-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 36px 36px
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative
}

.counter-item {
  text-align: center;
  padding: 16px
}

.counter-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 7px
}

.counter-suf {
  color: var(--secondary)
}

.counter-label {
  font-family: var(--font-ui);
  font-size: .82rem;
  color: rgba(247, 213, 244, .78);
  font-weight: 500;
  letter-spacing: .04em
}

/* ── Process ── */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative
}

.process-row::before {
  content: '';
  position: absolute;
  top: 39px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary-dark));
  z-index: 0
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 14px
}

.process-circle {
  width: 78px;
  height: 78px;
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 22px;
  transition: var(--transition)
}

.process-step:hover .process-circle {
  background: var(--primary);
  color: #fff
}

.process-step-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .98rem;
  margin-bottom: 7px;
  color: var(--dark)
}

.process-step-text {
  font-size: .84rem;
  color: var(--text-light)
}

/* ── Testimonials ── */
.testi-slider {
  overflow: hidden;
  position: relative
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.testi-card {
  min-width: calc(33.333% - 16px);
  background: #fff;
  border: 1px solid rgba(117, 2, 68, .08);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: var(--transition)
}

.testi-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-dark)
}

.testi-quote {
  font-size: 2.8rem;
  color: var(--secondary-dark);
  font-family: var(--font-head);
  line-height: 1;
  margin-bottom: 12px
}

.testi-stars {
  color: #f59e0b;
  font-size: .82rem;
  margin-bottom: 10px
}

.testi-text {
  font-size: .92rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.8
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 11px
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  flex-shrink: 0
}

.testi-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .88rem
}

.testi-role {
  font-size: .77rem;
  color: var(--text-light)
}

.slider-nav {
  display: flex;
  gap: 11px;
  margin-top: 30px;
  justify-content: center
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1.05rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center
}

.slider-btn:hover {
  background: var(--primary);
  color: #fff
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 76px 56px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .07) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255, 255, 255, .04) 0%, transparent 50%)
}

.cta-banner-inner {
  position: relative
}

.cta-banner-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 14px
}

.cta-banner-text {
  color: rgba(255, 255, 255, .72);
  font-size: 1.02rem;
  margin-bottom: 34px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto
}

.cta-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* ── Poster Cards ── */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.poster-card {
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  position: relative;
  overflow: hidden
}

.poster-card .poster-emoji {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: block
}

.poster-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 10px
}

.poster-card p {
  font-size: .88rem;
  margin-bottom: 20px
}

.poster-card-bg {
  position: absolute;
  bottom: -16px;
  right: -16px;
  font-size: 5.5rem;
  opacity: .08
}

/* ── Page Header ── */
.page-header {
  background: var(--grad-dark);
  padding: 150px 0 78px;
  position: relative;
  overflow: hidden
}

.page-header .hero-grid-bg,
.page-header .hero-glow,
.page-header .hero-orb,
.page-header .hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-header .hero-grid-bg {
  background-image: linear-gradient(rgba(247, 213, 244, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 213, 244, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header .hero-glow {
  background: radial-gradient(circle at 20% 40%, rgba(117, 2, 68, .4) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(154, 3, 88, .25) 0%, transparent 50%);
}

.page-header .hero-orb {
  border-radius: 50%;
  filter: blur(80px);
  inset: unset;
}

.page-header .hero-orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(117, 2, 68, .32);
  top: -160px;
  right: -60px;
  animation: floatY 7s ease-in-out infinite;
}

.page-header .hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(154, 3, 88, .18);
  bottom: -100px;
  left: -40px;
  animation: floatX 9s ease-in-out infinite;
}

.page-header-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-family: var(--font-ui);
  font-size: .78rem;
  color: rgba(247, 213, 244, .55)
}

.breadcrumb a {
  color: var(--secondary);
  transition: var(--transition)
}

.breadcrumb a:hover {
  opacity: .8
}

.page-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px
}

.page-title span {
  color: var(--secondary)
}

.page-subtitle {
  color: rgba(255, 255, 255, .62);
  font-size: 1.05rem;
  max-width: 580px
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center
}

.about-img-box {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.about-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, .09) 0%, transparent 50%)
}

.about-bg-letters {
  font-family: var(--font-head);
  font-size: 9rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .05);
  position: absolute;
  top: -10px;
  left: -10px;
  line-height: 1;
  pointer-events: none
}

.about-img-content {
  position: relative;
  text-align: center;
  color: #fff
}

.about-img-icon {
  font-size: 3.8rem;
  margin-bottom: 14px
}

.about-img-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 6px
}

.about-img-sub {
  opacity: .7;
  font-size: .9rem
}

.about-float {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-ui);
  z-index: 2
}

.about-float.br {
  bottom: -18px;
  right: -18px
}

.about-float.tr {
  top: -18px;
  right: -18px
}

.about-float-val {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  display: block
}

.about-float-lbl {
  font-size: .73rem;
  color: var(--text-light)
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 22px 0 30px
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .92rem;
  color: var(--text)
}

.about-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  min-width: 22px
}

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

.val-card {
  padding: 34px 26px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(117, 2, 68, .08);
  transition: var(--transition);
  text-align: center
}

.val-card:hover {
  background: var(--primary);
  transform: translateY(-5px)
}

.val-icon {
  font-size: 2.3rem;
  margin-bottom: 13px
}

.val-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 9px;
  color: var(--dark);
  transition: var(--transition)
}

.val-card:hover .val-title {
  color: #fff
}

.val-text {
  font-size: .84rem;
  color: var(--text-light);
  transition: var(--transition)
}

.val-card:hover .val-text {
  color: rgba(255, 255, 255, .75)
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.team-card {
  text-align: center;
  padding: 30px 18px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(117, 2, 68, .08);
  transition: var(--transition)
}

.team-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg)
}

.team-avatar {
  width: 88px;
  height: 88px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 14px;
  border: 4px solid var(--secondary)
}

.team-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .97rem;
  margin-bottom: 4px
}

.team-role {
  font-size: .78rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 11px
}

.team-bio {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 13px
}

.team-socials {
  display: flex;
  gap: 7px;
  justify-content: center
}

.team-social {
  width: 29px;
  height: 29px;
  background: var(--light-bg);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .72rem;
  transition: var(--transition);
  text-decoration: none
}

.team-social:hover {
  background: var(--primary);
  color: #fff
}

/* ── Services Page ── */
.svc-tabs {
  display: flex;
  gap: 14px;
  margin-bottom: 46px;
  flex-wrap: wrap;
  justify-content: center
}

.svc-tab {
  padding: 13px 30px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .88rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  transition: var(--transition)
}

.svc-tab.active,
.svc-tab:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(117, 2, 68, .3)
}

.svc-panel {
  display: none
}

.svc-panel.active {
  display: block
}

.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.sdc {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  border: 1px solid rgba(117, 2, 68, .08);
  transition: var(--transition)
}

.sdc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary)
}

.sdc-icon {
  width: 62px;
  height: 62px;
  background: var(--secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
  transition: var(--transition)
}

.sdc:hover .sdc-icon {
  background: var(--primary)
}

.sdc-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 9px;
  color: var(--dark)
}

.sdc-desc {
  font-size: .86rem;
  color: var(--text-light);
  margin-bottom: 17px
}

.sdc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px
}

.sdc-feats li {
  font-size: .8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 7px
}

.sdc-feats li::before {
  content: '•';
  color: var(--primary);
  font-size: 1rem
}

.sdc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad-primary);
  color: #fff;
  padding: 9px 20px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition)
}

.sdc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(117, 2, 68, .4)
}

/* ── Service Modal ── */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 10, 20, .87);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition)
}

.svc-modal-overlay.open {
  opacity: 1;
  visibility: visible
}

.svc-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(.92);
  transition: var(--transition)
}

.svc-modal-overlay.open .svc-modal {
  transform: scale(1)
}

.modal-head {
  background: var(--grad-primary);
  padding: 34px 38px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition)
}

.modal-close:hover {
  background: rgba(255, 255, 255, .28)
}

.modal-head-icon {
  font-size: 2.3rem;
  margin-bottom: 10px
}

.modal-head-title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 6px
}

.modal-head-sub {
  color: rgba(255, 255, 255, .72);
  font-size: .92rem
}

.modal-body {
  padding: 38px
}

.modal-sec-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .96rem;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px
}

.modal-sec-title::before {
  content: '';
  width: 4px;
  height: 17px;
  background: var(--primary);
  border-radius: 2px
}

.modal-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px
}

.modal-benefit {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px;
  background: var(--light-bg);
  border-radius: var(--radius);
  font-size: .84rem
}

.modal-benefit-check {
  color: var(--primary);
  font-size: .92rem;
  min-width: 16px
}

.modal-steps {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.modal-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(117, 2, 68, .1);
  border-radius: var(--radius)
}

.modal-step-num {
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .78rem;
  min-width: 30px
}

.modal-step-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 3px
}

.modal-step-text {
  font-size: .8rem;
  color: var(--text-light)
}

/* ── Portfolio ── */
.port-filters {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 38px
}

.port-filter {
  padding: 9px 22px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .82rem;
  border: 2px solid rgba(117, 2, 68, .2);
  background: transparent;
  color: var(--text);
  transition: var(--transition)
}

.port-filter.active,
.port-filter:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary)
}

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

.port-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: var(--light-bg)
}

.port-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg)
}

.port-thumb {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.port-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition)
}

.port-item:hover .port-overlay {
  opacity: .93
}

.port-overlay-icon {
  font-size: 2.3rem;
  color: #fff
}

.port-overlay-text {
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .86rem
}

.port-info {
  padding: 18px
}

.port-cat {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 5px
}

.port-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .93rem;
  color: var(--dark)
}

/* Portfolio Popup */
.port-popup {
  position: fixed;
  inset: 0;
  background: rgba(26, 10, 20, .9);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition)
}

.port-popup.open {
  opacity: 1;
  visibility: visible
}

.popup-box {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(.92);
  transition: var(--transition)
}

.port-popup.open .popup-box {
  transform: scale(1)
}

.popup-head {
  height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 11px;
  color: #fff
}

.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .88);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--dark)
}

.popup-close:hover {
  background: var(--primary);
  color: #fff
}

.popup-body {
  padding: 34px
}

.popup-cat {
  font-size: .72rem;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 7px
}

.popup-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 11px
}

.popup-desc {
  color: var(--text-light);
  font-size: .93rem;
  margin-bottom: 22px
}

.popup-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap
}

.popup-tag {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px
}

/* ── Careers ── */
.careers-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
  margin-bottom: 72px
}

.careers-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.career-stat {
  background: #fff;
  border: 1px solid rgba(117, 2, 68, .1);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: var(--transition)
}

.career-stat:hover {
  border-color: var(--primary)
}

.career-stat-val {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary)
}

.career-stat-lbl {
  font-size: .8rem;
  color: var(--text-light)
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px
}

.perk-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  border: 1px solid rgba(117, 2, 68, .08);
  transition: var(--transition)
}

.perk-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.perk-icon {
  font-size: 1.9rem;
  margin-bottom: 11px
}

.perk-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .93rem;
  margin-bottom: 7px
}

.perk-text {
  font-size: .82rem;
  color: var(--text-light)
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.job-card {
  background: #fff;
  border: 1px solid rgba(117, 2, 68, .1);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  transition: var(--transition)
}

.job-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(5px)
}

.job-icon-box {
  width: 52px;
  height: 52px;
  background: var(--secondary);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  min-width: 52px
}

.job-info {
  flex: 1
}

.job-title-text {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--dark);
  margin-bottom: 6px
}

.job-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .76rem;
  color: var(--text-light);
  font-family: var(--font-ui)
}

.job-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%
}

.job-type-badge {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
  white-space: nowrap
}

/* Job Apply Modal */
.job-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 10, 20, .87);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition)
}

.job-modal-overlay.open {
  opacity: 1;
  visibility: visible
}

.job-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(.92);
  transition: var(--transition)
}

.job-modal-overlay.open .job-modal {
  transform: scale(1)
}

.job-modal-head {
  background: var(--grad-primary);
  padding: 30px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative
}

.job-modal-head .modal-close {
  top: 16px;
  right: 16px
}

.job-modal-body {
  padding: 30px
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  min-width: 50px;
  transition: var(--transition)
}

.contact-info-item:hover .contact-icon-box {
  background: var(--primary)
}

.contact-lbl {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .82rem;
  color: var(--primary);
  margin-bottom: 4px
}

.contact-val {
  font-size: .92rem;
  color: var(--text)
}

.form-box {
  background: #fff;
  border: 1px solid rgba(117, 2, 68, .08);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  box-shadow: var(--shadow-sm)
}

.form-group {
  margin-bottom: 22px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: .02em
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(117, 2, 68, .12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(117, 2, 68, .07)
}

textarea.form-input {
  resize: vertical;
  min-height: 130px
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23750244' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px
}

.form-success.show {
  display: block
}

.map-box {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 30px;
  margin-top: 40px
}

.map-icon {
  font-size: 2.8rem;
  margin-bottom: 11px
}

.map-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 5px
}

.map-addr {
  opacity: .75;
  font-size: .88rem
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(117, 2, 68, .1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition)
}

.faq-item.open {
  border-color: var(--primary)
}

.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .93rem;
  color: var(--dark);
  user-select: none
}

.faq-icon {
  color: var(--primary);
  font-size: 1.15rem;
  transition: var(--transition);
  min-width: 22px;
  text-align: center
}

.faq-item.open .faq-icon {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease
}

.faq-item.open .faq-a {
  max-height: 600px
}

.faq-a-inner {
  padding: 0 22px 18px;
  font-size: .88rem;
  color: var(--text-light)
}

/* ── Footer ── */
#footer {
  background: var(--dark2);
  padding: 76px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 46px;
  margin-bottom: 56px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px
}

.footer-logo-img {
  height: 76px;
  width: auto;
  object-fit: contain;
}

.footer-logo-icon {
  width: 52px;
  height: 52px;
  background: var(--grad-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff
}

.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff
}

.footer-logo-text span {
  color: var(--secondary)
}

.footer-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-bottom: 22px
}

.footer-socials {
  display: flex;
  gap: 9px
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-size: .86rem;
  text-decoration: none;
  transition: var(--transition)
}

.footer-social:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary)
}

.footer-col-title {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-links a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: .86rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.footer-links a::before {
  content: '›';
  color: var(--primary)
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 13px
}

.footer-contact-icon {
  color: var(--primary);
  font-size: .95rem;
  min-width: 18px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4)
}

.footer-bottom-links {
  display: flex;
  gap: 22px
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: var(--transition)
}

.footer-bottom-links a:hover {
  color: var(--secondary)
}

/* ── Animations / Fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0)
}

.fade-in.delay-1 {
  transition-delay: .1s
}

.fade-in.delay-2 {
  transition-delay: .2s
}

.fade-in.delay-3 {
  transition-delay: .3s
}

.fade-in.delay-4 {
  transition-delay: .4s
}



/* ── Responsive ── */
@media(max-width:1024px) {

  .svcs-grid,
  .svc-detail-grid {
    grid-template-columns: 1fr 1fr
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 120px 0 80px
  }

  .hero-visual {
    display: none
  }

  .process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px
  }

  .process-row::before {
    display: none
  }

  .poster-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {

  /* ── Mobile Slide-in Drawer Nav ── */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: linear-gradient(160deg, #1a0a14 0%, #2d1122 60%, #3d1a32 100%);
    padding: 90px 28px 48px;
    gap: 4px;
    z-index: 9990;
    transition: right .38s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -6px 0 40px rgba(0, 0, 0, .45);
    overflow-y: auto;
    border-left: 1px solid rgba(247, 213, 244, .08);
  }

  .nav-links.open {
    right: 0
  }

  .nav-links a {
    font-size: 1rem;
    color: rgba(255, 255, 255, .78) !important;
    padding: 13px 16px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background .2s ease, color .2s ease, padding-left .2s ease;
    display: block;
  }

  .nav-links a:hover {
    background: rgba(247, 213, 244, .1);
    color: #fff !important;
    padding-left: 22px;
  }

  .nav-links a.active {
    background: var(--grad-primary);
    color: #fff !important;
    border-bottom-color: transparent;
    box-shadow: 0 4px 16px rgba(117, 2, 68, .35);
  }

  /* Overlay behind drawer */
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 990;
    backdrop-filter: blur(2px);
    animation: fadeOverlay .3s ease;
  }

  @keyframes fadeOverlay {
    from {
      opacity: 0
    }

    to {
      opacity: 1
    }
  }

  .nav-burger {
    display: flex
  }

  .nav-cta {
    display: none
  }

  /* Drawer header — injected by JS */
  .nav-drawer-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(247, 213, 244, .1);
    margin-bottom: 12px;
  }

  .nav-drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-drawer-icon {
    width: 36px;
    height: 36px;
    background: var(--grad-primary);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
  }

  .nav-drawer-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
  }

  .nav-drawer-name em {
    color: var(--secondary);
    font-style: normal;
  }

  .nav-drawer-close {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
    flex-shrink: 0;
  }

  .nav-drawer-close:hover {
    background: rgba(117, 2, 68, .6);
    color: #fff;
  }

  /* Mobile CTA inside drawer */
  .nav-links .nav-mobile-cta {
    margin-top: 12px;
    display: block;
    background: var(--grad-primary);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(117, 2, 68, .35);
  }

  .svcs-grid,
  .svc-detail-grid,
  .port-grid,
  .why-grid,
  .about-grid,
  .contact-grid,
  .careers-intro,
  .values-grid,
  .perks-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .team-grid {
    grid-template-columns: 1fr 1fr
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .testi-card {
    min-width: calc(85vw)
  }

  .hero-stats {
    gap: 18px;
    flex-wrap: wrap
  }

  .process-row {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .cta-banner {
    padding: 48px 28px
  }

  .sec-pad {
    padding: 68px 0
  }

  .modal-benefits {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .poster-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {

  .team-grid,
  .values-grid,
  .perks-grid {
    grid-template-columns: 1fr
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr
  }

  .careers-stats {
    grid-template-columns: 1fr 1fr
  }
}

/* ============================================================
   ZYNKWAVE v2 — NEW & UPDATED STYLES
   ============================================================ */

/* ── Hero Enhancements ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(117, 2, 68, .35);
  top: -180px;
  right: -80px;
  animation: orbPulse 7s ease-in-out infinite;
}

.hero-orb-2 {
  width: 380px;
  height: 380px;
  background: rgba(154, 3, 88, .2);
  bottom: -120px;
  left: -60px;
  animation: orbPulse 9s ease-in-out infinite 3s;
}

@keyframes orbPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .6
  }

  50% {
    transform: scale(1.15);
    opacity: 1
  }
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #ff6b9d;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
}

.hero-typed-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
  min-height: 24px;
}

.hero-typed-pre {
  color: rgba(255, 255, 255, 0.616);
  font-weight: 700;
  margin-right: 6px;
}

.typed-cursor {
  color: var(--secondary);
  animation: blink .75s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.float-card-top {
  position: absolute;
  top: -20px;
  right: -30px;
  animation: float-y 3.5s ease-in-out infinite;
}

.float-card-bot {
  position: absolute;
  bottom: 10px;
  left: -30px;
  animation: float-y 4s ease-in-out infinite 1.8s;
}

.hero-card-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-card-badge {
  background: rgba(247, 213, 244, .15);
  color: var(--secondary);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(247, 213, 244, .2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .4);
  font-family: var(--font-ui);
  font-size: .72rem;
  animation: fadeInUp 2s ease 2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
  }
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--secondary);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  60% {
    transform: translateY(10px);
    opacity: 0
  }
}

/* ── About Snapshot Section ── */
.about-snap-sec {
  background: #fff;
}

.about-snap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.snap-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.snap-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.snap-pillar-icon {
  font-size: 1.6rem;
  min-width: 32px;
}

.snap-pillar-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  margin-bottom: 3px;
}

.snap-pillar-text {
  font-size: .82rem;
  color: var(--text-light);
}

.about-snap-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.snap-stat-card {
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.snap-stat-card:hover {
  transform: translateY(-4px);
}

.snap-stat-primary {
  background: var(--grad-primary);
  color: #fff;
  grid-column: span 2;
}

.snap-stat-sec {
  background: var(--secondary);
  color: var(--primary);
}

.snap-stat-light {
  background: var(--light-bg);
  color: var(--dark);
  border: 1px solid rgba(117, 2, 68, .08);
}

.snap-stat-dark {
  background: var(--dark2);
  color: #fff;
}

.snap-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
}

.snap-stat-suf {
  font-size: 1.6rem;
}

.snap-stat-lbl {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 600;
  opacity: .78;
}

.snap-stat-ico {
  position: absolute;
  bottom: -8px;
  right: 12px;
  font-size: 3.2rem;
  opacity: .12;
}

.snap-cert-row {
  grid-column: span 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.snap-cert {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--secondary-dark);
}

/* ── Service Cards v2 ── */
.svcs-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card-v2 {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid rgba(117, 2, 68, .08);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.svc-card-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
}

.svc-dm::after {
  background: linear-gradient(135deg, rgba(117, 2, 68, .03), rgba(154, 3, 88, .03));
}

.svc-it::after {
  background: linear-gradient(135deg, rgba(45, 100, 180, .03), rgba(45, 130, 200, .03));
}

.svc-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.svc-card-v2:hover::after {
  opacity: 1;
}

.svc-v2-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.svc-v2-icon {
  width: 52px;
  height: 52px;
  background: var(--secondary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.svc-card-v2:hover .svc-v2-icon {
  background: var(--primary);
}

.svc-v2-cat {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
}

.dm-cat {
  background: rgba(117, 2, 68, .1);
  color: var(--primary);
}

.it-cat {
  background: rgba(45, 100, 180, .1);
  color: #2d64b4;
}

.svc-v2-title {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 9px;
}

.svc-v2-desc {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.svc-v2-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.svc-v2-tags span {
  background: var(--light-bg);
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.svc-v2-link {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.svc-v2-link:hover {
  gap: 12px;
}

/* ── About Dynamic Visual ── */
.about-dynamic-vis {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(117, 2, 68, .12);
}

.adv-ring-outer {
  width: 420px;
  height: 420px;
  animation: ringRotate 30s linear infinite;
}

.adv-ring-mid {
  width: 300px;
  height: 300px;
  animation: ringRotate 20s linear infinite reverse;
  border-style: dashed;
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.adv-center {
  position: relative;
  z-index: 2;
  text-align: center;
  background: var(--grad-primary);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl), 0 0 0 16px rgba(117, 2, 68, .08);
}

.adv-logo-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 6px;
}

.adv-brand {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}

.adv-sub {
  font-size: .65rem;
  color: rgba(255, 255, 255, .65);
}

.adv-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -39px;
  margin-left: -56px;
  z-index: 3;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.adv-orbit-1 {
  animation: orbit-1 30s linear infinite;
}

.adv-orbit-2 {
  animation: orbit-2 30s linear infinite;
}

.adv-orbit-3 {
  animation: orbit-3 20s linear infinite reverse;
}

.adv-orbit-4 {
  animation: orbit-4 20s linear infinite reverse;
}

@keyframes orbit-1 {
  0% {
    transform: rotate(0deg) translateX(210px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(210px) rotate(-360deg);
  }
}

@keyframes orbit-2 {
  0% {
    transform: rotate(180deg) translateX(210px) rotate(-180deg);
  }

  100% {
    transform: rotate(540deg) translateX(210px) rotate(-540deg);
  }
}

@keyframes orbit-3 {
  0% {
    transform: rotate(90deg) translateX(150px) rotate(-90deg);
  }

  100% {
    transform: rotate(450deg) translateX(150px) rotate(-450deg);
  }
}

@keyframes orbit-4 {
  0% {
    transform: rotate(270deg) translateX(150px) rotate(-270deg);
  }

  100% {
    transform: rotate(630deg) translateX(150px) rotate(-630deg);
  }
}

.adv-orb-icon {
  font-size: 1.2rem;
}

.adv-orb-val {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.adv-orb-lbl {
  font-family: var(--font-ui);
  font-size: .65rem;
  color: var(--text-light);
}

.adv-badge {
  position: absolute;
  z-index: 3;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--secondary-dark);
}

.adv-badge-tl {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.adv-badge-br {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ── Expertise Grid (About page) ── */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.expertise-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(117, 2, 68, .1);
  overflow: hidden;
  transition: var(--transition);
}

.expertise-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.expertise-dm {
  border-top: 4px solid var(--primary);
}

.expertise-it {
  border-top: 4px solid #2d64b4;
}

.expertise-card-inner {
  padding: 36px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.expertise-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.expertise-icon {
  width: 52px;
  height: 52px;
  background: var(--secondary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.expertise-label {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(117, 2, 68, .08);
  padding: 5px 13px;
  border-radius: 100px;
}

.expertise-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.expertise-desc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}

.expertise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  flex: 1;
}

.expertise-list li {
  font-size: .84rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
}

.expertise-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  min-width: 20px;
}

.expertise-stat-row {
  display: flex;
  gap: 24px;
  padding: 18px;
  background: var(--light-bg);
  border-radius: var(--radius);
}

.expertise-stat {
  display: flex;
  flex-direction: column;
}

.es-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.es-lbl {
  font-size: .72rem;
  color: var(--text-light);
  margin-top: 3px;
}

/* ── Service Advantage Strip ── */
.svc-advantage-strip {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dm-advantage {
  background: linear-gradient(135deg, #fff5f9, #fff);
  border: 1px solid rgba(117, 2, 68, .1);
}

.it-advantage {
  background: linear-gradient(135deg, #f3f7ff, #fff);
  border: 1px solid rgba(45, 100, 180, .1);
}

.svc-adv-inner {
  padding: 48px 40px;
}

.svc-adv-head {
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.svc-adv-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.svc-adv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 18px;
  border: 1px solid rgba(117, 2, 68, .07);
  text-align: center;
  transition: var(--transition);
}

.svc-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.svc-adv-ico {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.svc-adv-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .88rem;
  color: var(--dark);
  margin-bottom: 7px;
}

.svc-adv-text {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Portfolio Hero ── */
.port-hero-section {
  position: relative;
  min-height: auto;
  padding: 150px 0 0;
  overflow: hidden;
  background: var(--dark2);
}

.port-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(247, 213, 244, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(247, 213, 244, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.port-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(117, 2, 68, .45) 0%, transparent 55%), radial-gradient(circle at 80% 20%, rgba(154, 3, 88, .2) 0%, transparent 45%);
}

.port-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 0;
}

.port-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 213, 244, .1);
  border: 1px solid rgba(247, 213, 244, .2);
  color: var(--secondary);
  font-family: var(--font-ui);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.port-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
}

.port-hero-title span {
  color: var(--secondary);
}

.port-hero-desc {
  color: rgba(255, 255, 255, .62);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.port-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.port-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.port-cat-showcase {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.port-cat-pill {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  padding: 12px 22px;
  font-family: var(--font-ui);
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  transition: var(--transition);
}

.port-cat-pill span {
  font-size: 1.2rem;
}

.port-cat-pill:hover {
  background: rgba(247, 213, 244, .15);
  border-color: rgba(247, 213, 244, .3);
  color: #fff;
  transform: translateX(6px);
}

.pcp-1 {
  animation: float-y 4s ease-in-out infinite 0s;
}

.pcp-2 {
  animation: float-y 4.5s ease-in-out infinite .5s;
}

.pcp-3 {
  animation: float-y 5s ease-in-out infinite 1s;
}

.pcp-4 {
  animation: float-y 4.2s ease-in-out infinite 1.5s;
}

.pcp-5 {
  animation: float-y 4.8s ease-in-out infinite 2s;
}

.pcp-6 {
  animation: float-y 5.2s ease-in-out infinite 2.5s;
}

.port-impact-bar {
  position: relative;
  margin-top: 48px;
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 24px 0;
}

.port-impact-item {
  text-align: center;
  padding: 12px 32px;
}

.pib-val {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.pib-lbl {
  font-family: var(--font-ui);
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .05em;
}

.port-impact-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
}

/* ── Responsive updates ── */
@media(max-width:1024px) {

  .about-snap-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .svc-adv-cards {
    grid-template-columns: 1fr 1fr;
  }

  .port-hero-inner {
    grid-template-columns: 1fr;
  }

  .port-hero-right {
    display: none;
  }

  .svcs-grid-v2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  .about-snap-wall {
    grid-template-columns: 1fr 1fr;
  }

  .snap-stat-primary {
    grid-column: span 2;
  }

  .snap-cert-row {
    grid-column: span 2;
  }

  .svcs-grid-v2 {
    grid-template-columns: 1fr;
  }

  .svc-adv-cards {
    grid-template-columns: 1fr;
  }

  .port-impact-bar {
    gap: 10px;
  }

  .adv-ring-outer {
    width: 320px;
    height: 320px;
  }

  .adv-ring-mid {
    width: 230px;
    height: 230px;
  }

  .adv-orbit-1,
  .adv-orbit-2 {
    display: flex;
  }
  .about-dynamic-vis {
    transform: scale(0.75);
  }
}

/* ============================================================
   ZYNKWAVE v3 — PREMIUM UPGRADE STYLES
   ============================================================ */

/* ── Button Shimmer Animation ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {

  0%,
  100% {
    left: -75%
  }

  50% {
    left: 125%
  }
}

/* ── Enhanced fade-in animations ── */
.fade-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .65s cubic-bezier(.4, 0, .2, 1), transform .65s cubic-bezier(.4, 0, .2, 1);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .65s cubic-bezier(.4, 0, .2, 1), transform .65s cubic-bezier(.4, 0, .2, 1);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Stat Cards Grid (Home Who We Are) ── */
.stat-cards-section {
  background: var(--dark2);
  padding: 70px 0;
}

.stat-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.stat-card-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(247, 213, 244, .1);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-card-item:hover {
  background: rgba(117, 2, 68, .3);
  border-color: rgba(247, 213, 244, .3);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(117, 2, 68, .35);
}

.stat-card-item.wide {
  background: rgba(117, 2, 68, .2);
  border-color: rgba(247, 213, 244, .2);
  flex-direction: row;
  justify-content: center;
  gap: 14px;
  padding: 22px 32px;
}

.stat-card-emoji {
  font-size: 2rem;
  display: block;
}

.stat-card-number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.stat-card-label {
  font-family: var(--font-ui);
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 500;
  letter-spacing: .02em;
}

.stat-card-cert-text {
  font-family: var(--font-ui);
  font-size: .92rem;
  font-weight: 600;
  color: #fff;
}

.stat-card-cert-sub {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
}

.stat-card-check {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .8rem;
  flex-shrink: 0;
  min-width: 28px;
}

/* ── Who We Are Text Section ── */
.who-we-are-section {
  background: #fff;
  padding: 90px 0;
}

.who-we-are-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.who-we-are-inner .sec-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  margin-bottom: 24px;
}

.who-we-are-inner p {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 0;
}

.who-we-are-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ── New Premium Services Section ── */
.new-services-section {
  background: var(--light-bg);
  padding: 100px 0;
}

.new-svc-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 44px;
}

.new-svc-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(117, 2, 68, .1);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.new-svc-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.new-svc-title span {
  color: var(--primary);
}

.new-svc-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.new-svc-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.new-svc-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .84rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  transition: var(--transition);
  cursor: pointer;
}

.new-svc-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(117, 2, 68, .35);
}

.new-svc-tab:hover:not(.active) {
  background: rgba(117, 2, 68, .1);
}

.new-svc-panel {
  display: none;
}

.new-svc-panel.active {
  display: block;
  animation: panelIn .4s ease;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.new-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.new-svc-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(117, 2, 68, .1);
  transition: var(--transition);
  background: #fff;
}

.new-svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.new-svc-card-top {
  padding: 32px 26px 24px;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.new-svc-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(117, 2, 68, .55), transparent 60%);
}

.new-svc-card-icon {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.new-svc-card-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: .02em;
}

.new-svc-card-body {
  padding: 22px 26px 26px;
}

.new-svc-card-desc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.new-svc-card-link {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.new-svc-card-link:hover {
  gap: 12px;
}

.new-svc-view-all {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* ── WhatsApp Button ── */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
}

/* ── Poster Card hover ── */
.poster-card {
  transition: var(--transition);
  cursor: pointer;
}

.poster-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* ── Glassmorphism Navbar ── */
#navbar {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#navbar.scrolled {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* ── Section Card Hover Glow ── */
.sdc:hover,
.svc-card-v2:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(117, 2, 68, .15);
}

/* ── Hero single column (after removing right visual) ── */
.hero-content-single {
  grid-template-columns: 1fr !important;
  max-width: 780px;
}

/* ── Responsive for new sections ── */
@media(max-width:1024px) {
  .stat-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .new-svc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  .stat-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card-item.wide {
    flex-direction: column;
    text-align: center;
  }

  .new-svc-grid {
    grid-template-columns: 1fr;
  }

  .who-we-are-inner {
    text-align: left;
  }

  .who-we-are-btns {
    justify-content: flex-start;
  }
}

@media(max-width:480px) {
  .stat-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ZYNKWAVE v4 — CAREERS, ICONS, RESPONSIVE & ANIMATIONS
   ============================================================ */

/* ── Navbar Logo Image ── */
.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(247, 213, 244, .3));
}

.nav-logo-img-full {
  height: 60px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
  display: none;
}

#navbar.scrolled .nav-logo-img {
  display: none;
}

#navbar.scrolled .nav-logo-img-full {
  display: block;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── SVG / Icon Bubble System — Universal ── */
/* Base bubble */
.icon-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}

.icon-bubble:hover {
  transform: scale(1.08);
}

.icon-bubble svg {
  display: block;
}

/* Standard sizes */
.ib-sm {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.ib-sm svg {
  width: 18px;
  height: 18px;
}

.ib-md {
  width: 48px;
  height: 48px;
  border-radius: 13px;
}

.ib-md svg {
  width: 24px;
  height: 24px;
}

.ib-lg {
  width: 60px;
  height: 60px;
  border-radius: 16px;
}

.ib-lg svg {
  width: 30px;
  height: 30px;
}

.ib-xl {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}

.ib-xl svg {
  width: 36px;
  height: 36px;
}

/* Colour variants */
.ib-primary {
  background: var(--grad-primary);
  box-shadow: 0 6px 20px rgba(117, 2, 68, .28);
}

.ib-primary svg {
  color: #fff;
}

.ib-pink {
  background: linear-gradient(135deg, #fce4ec, #f48fb1);
}

.ib-pink svg {
  color: #880e4f;
}

.ib-violet {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
}

.ib-violet svg {
  color: #6a1b9a;
}

.ib-indigo {
  background: linear-gradient(135deg, #e8eaf6, #9fa8da);
}

.ib-indigo svg {
  color: #1a237e;
}

.ib-blue {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.ib-blue svg {
  color: #1565c0;
}

.ib-teal {
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
}

.ib-teal svg {
  color: #00695c;
}

.ib-green {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.ib-green svg {
  color: #2e7d32;
}

.ib-amber {
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
}

.ib-amber svg {
  color: #f57f17;
}

.ib-orange {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.ib-orange svg {
  color: #e65c00;
}

.ib-brown {
  background: linear-gradient(135deg, #efebe9, #d7ccc8);
}

.ib-brown svg {
  color: #4e342e;
}

.ib-dark {
  background: linear-gradient(135deg, #1a0a14, #2d1122);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.ib-dark svg {
  color: var(--secondary);
}

.ib-secondary {
  background: var(--secondary);
}

.ib-secondary svg {
  color: var(--primary);
}

.ib-glass {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .25);
}

.ib-glass svg {
  color: #fff;
}

/* ── Legacy SVG Service Icons (keep compatibility) ── */
.svc-icon-svg {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.svc-icon-svg svg {
  width: 26px;
  height: 26px;
}

.icon-seo {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.icon-seo svg {
  color: #e65c00;
}

.icon-smm {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}

.icon-smm svg {
  color: #c2185b;
}

.icon-ppc {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.icon-ppc svg {
  color: #2e7d32;
}

.icon-email {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.icon-email svg {
  color: #1565c0;
}

.icon-content {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
}

.icon-content svg {
  color: #6a1b9a;
}

.icon-brand {
  background: linear-gradient(135deg, #fce4ec, #f48fb1);
}

.icon-brand svg {
  color: #880e4f;
}

.icon-web {
  background: linear-gradient(135deg, #e8eaf6, #c5cae9);
}

.icon-web svg {
  color: #283593;
}

.icon-app {
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
}

.icon-app svg {
  color: #00695c;
}

.icon-ecomm {
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
}

.icon-ecomm svg {
  color: #f57f17;
}

.icon-maintain {
  background: linear-gradient(135deg, #efebe9, #d7ccc8);
}

.icon-maintain svg {
  color: #4e342e;
}

.icon-uiux {
  background: linear-gradient(135deg, #fce4ec, #f48fb1);
}

.icon-uiux svg {
  color: #ad1457;
}

.icon-software {
  background: linear-gradient(135deg, #e8eaf6, #9fa8da);
}

.icon-software svg {
  color: #1a237e;
}

/* ── Perk card icon upgrade ── */
.perk-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 16px;
  background: var(--secondary);
  box-shadow: 0 4px 16px rgba(117, 2, 68, .15);
  transition: transform .25s ease;
}

.perk-card:hover .perk-icon {
  transform: scale(1.1) rotate(-4deg);
}

/* ── Job card icon upgrade ── */
.job-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--grad-primary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 14px rgba(117, 2, 68, .3);
  flex-shrink: 0;
}

/* ── Contact info icon upgrade ── */
.contact-icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--secondary);
  box-shadow: 0 4px 14px rgba(117, 2, 68, .15);
  flex-shrink: 0;
}

/* ── Service advantage icon upgrade ── */
.svc-adv-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 12px;
  background: var(--secondary);
  box-shadow: 0 4px 14px rgba(117, 2, 68, .12);
}

/* ── Val card icon upgrade ── */
.val-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 14px;
  background: var(--secondary);
  box-shadow: 0 4px 14px rgba(117, 2, 68, .12);
  transition: transform .25s ease;
}

.val-card:hover .val-icon {
  transform: scale(1.12) rotate(-5deg);
}

/* ── Footer contact icon upgrade ── */
.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  margin-right: 6px;
  font-size: .9rem;
  flex-shrink: 0;
}

/* ── Expertise card icon ── */
.expertise-icon {
  width: 54px;
  height: 54px;
  background: var(--secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 14px rgba(117, 2, 68, .12);
  transition: transform .25s ease;
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.1);
}

/* ── Service Detail Card (SDC) icon ── */
.sdc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: var(--secondary);
  box-shadow: 0 4px 14px rgba(117, 2, 68, .12);
  transition: transform .25s ease;
}

.sdc:hover .sdc-icon {
  transform: scale(1.1) rotate(-4deg);
  background: var(--grad-primary);
}

/* ── New-Svc card icon ── */
.new-svc-card-icon {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
}

/* ── Stat card emoji upgrade ── */
.stat-card-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 1.6rem;
  background: rgba(247, 213, 244, .12);
  border: 1px solid rgba(247, 213, 244, .15);
}

/* ── Snap stat icon ── */
.snap-stat-ico {
  position: absolute;
  bottom: -8px;
  right: 12px;
  font-size: 3rem;
  opacity: .1;
}


/* ── Service Detail Cards with SVG Icons ── */
.sdc {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid rgba(117, 2, 68, .09);
  transition: var(--transition);
}

.sdc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.sdc .sdc-icon-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.sdc .sdc-icon {
  font-size: 2.2rem;
  line-height: 1;
}

/* ── Careers Page v3 — Premium Card Grid Layout ── */
.careers-role-section {
  margin-bottom: 64px;
}

.careers-role-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.careers-role-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(255, 255, 255, .08) 0%, transparent 60%);
}

.careers-role-header::after {
  content: '';
  position: absolute;
  right: -24px;
  top: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: .15;
}

.careers-role-header.dm-header {
  background: linear-gradient(135deg, #750244, #9a0358 60%, #c0054f);
  border: none;
}

.careers-role-header.dm-header::after {
  background: #fff;
}

.careers-role-header.it-header {
  background: linear-gradient(135deg, #1a0a14, #2d1122 60%, #3d1a32);
  border: none;
}

.careers-role-header.it-header::after {
  background: #fff;
}

.careers-role-header.creative-header {
  background: linear-gradient(135deg, #9a0358, #c0054f 60%, #e0356f);
  border: none;
}

.careers-role-header.creative-header::after {
  background: #fff;
}

.role-header-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.role-header-text {
  flex: 1;
}

.role-header-text h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.role-header-text p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .72);
  margin: 0;
}

.role-count-badge {
  margin-left: auto;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .76rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .25);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Jobs list — 2-col card grid ── */
.jobs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media(max-width:768px) {
  .jobs-list {
    grid-template-columns: 1fr;
  }
}

/* Job card redesign — no badge */
.job-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(117, 2, 68, .08);
  border-radius: var(--radius);
  padding: 18px 22px;
  cursor: pointer;
  transition: var(--transition);
}

.job-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(117, 2, 68, .12);
  transform: translateX(4px);
}

.job-icon-box {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.job-title-text {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.job-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.job-tag {
  font-family: var(--font-ui);
  font-size: .74rem;
  color: var(--text-light);
  background: var(--light-bg);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 500;
}

.job-apply-btn {
  margin-left: auto;
  flex-shrink: 0;
}

/* ── Footer Social Icons SVG ── */
.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
}

.footer-social:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* ── Dynamic Number Counter ── */
.count-up {
  display: inline-block;
}

/* ── Stagger delay helpers ── */
.delay-1 {
  transition-delay: .1s !important;
}

.delay-2 {
  transition-delay: .2s !important;
}

.delay-3 {
  transition-delay: .3s !important;
}

.delay-4 {
  transition-delay: .4s !important;
}

/* ── Floating animation for hero orbs ── */
@keyframes floatY {

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

  50% {
    transform: translateY(-18px)
  }
}

@keyframes floatX {

  0%,
  100% {
    transform: translateX(0)
  }

  50% {
    transform: translateX(12px)
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(117, 2, 68, .4)
  }

  50% {
    box-shadow: 0 0 0 16px rgba(117, 2, 68, 0)
  }
}

.hero-orb-1 {
  animation: floatY 7s ease-in-out infinite;
}

.hero-orb-2 {
  animation: floatX 9s ease-in-out infinite;
}

.scroll-mouse {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.stat-card-item {
  animation: none;
}

.stat-card-item:nth-child(1) {
  transition-delay: .05s;
}

.stat-card-item:nth-child(2) {
  transition-delay: .12s;
}

.stat-card-item:nth-child(3) {
  transition-delay: .19s;
}

.stat-card-item:nth-child(4) {
  transition-delay: .26s;
}

/* ── Tilt hover on cards ── */
.new-svc-card,
.sdc,
.poster-card {
  transform-style: preserve-3d;
}

/* ── Page header animated underline ── */
.page-title span {
  position: relative;
}

.page-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 2px;
  animation: lineGrow 1s .6s ease forwards;
}

@keyframes lineGrow {
  to {
    width: 100%
  }
}

/* ── Section entrance line ── */
.sec-title span::after {
  display: none;
}

/* ── Magnetic button effect class ── */
.btn-magnetic {
  will-change: transform;
}

/* =============================================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   ============================================================= */

/* ── Base mobile ── */
@media(max-width:1100px) {
  .hero-content {
    gap: 40px;
  }

  .about-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media(max-width:900px) {
  .sec-pad {
    padding: 70px 0;
  }

  .hero-section {
    padding-top: 90px;
  }

  .hero-left .sec-title,
  .hero-left h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-badge {
    font-size: .72rem;
  }

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

  .about-dynamic-vis {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .adv-ring-outer {
    width: 320px;
    height: 320px;
  }

  .adv-ring-mid {
    width: 230px;
    height: 230px;
  }

  @keyframes orbit-1 {
    0% {
      transform: rotate(0deg) translateX(160px) rotate(0deg);
    }

    100% {
      transform: rotate(360deg) translateX(160px) rotate(-360deg);
    }
  }

  @keyframes orbit-2 {
    0% {
      transform: rotate(180deg) translateX(160px) rotate(-180deg);
    }

    100% {
      transform: rotate(540deg) translateX(160px) rotate(-540deg);
    }
  }

  @keyframes orbit-3 {
    0% {
      transform: rotate(90deg) translateX(115px) rotate(-90deg);
    }

    100% {
      transform: rotate(450deg) translateX(115px) rotate(-450deg);
    }
  }

  @keyframes orbit-4 {
    0% {
      transform: rotate(270deg) translateX(115px) rotate(-270deg);
    }

    100% {
      transform: rotate(630deg) translateX(115px) rotate(-630deg);
    }
  }
}

@media(max-width:768px) {
  .container {
    padding: 0 18px;
  }

  .sec-pad {
    padding: 56px 0;
  }

  .sec-pad-sm {
    padding: 40px 0;
  }

  .sec-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .sec-subtitle {
    font-size: .94rem;
  }

  /* Navbar */
  .nav-logo-img {
    height: 56px;
  }

  .nav-logo-img-full {
    height: 48px;
  }

  #navbar.scrolled .nav-logo-img-full {
    height: 48px;
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr !important;
    text-align: center;
    max-width: 100% !important;
  }

  .hero-left {
    align-items: center;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
    gap: 16px;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-scroll-hint {
    display: none;
  }

  /* Stat cards */
  .stat-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card-number {
    font-size: 2rem;
  }

  .stat-card-item.wide {
    flex-direction: column;
    text-align: center;
    padding: 18px 16px;
  }

  /* Who we are */
  .who-we-are-inner {
    text-align: left;
    padding: 0 4px;
  }

  .who-we-are-btns {
    justify-content: flex-start;
  }

  /* Services */
  .new-svc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .new-svc-tabs {
    gap: 8px;
  }

  .new-svc-tab {
    font-size: .76rem;
    padding: 8px 16px;
  }

  .svc-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .svc-tab {
    text-align: center;
  }

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

  .svc-adv-cards {
    grid-template-columns: 1fr;
  }

  .svc-adv-inner {
    grid-template-columns: 1fr;
  }

  /* Portfolio */
  .port-grid {
    grid-template-columns: 1fr 1fr;
  }

  .port-filter-bar {
    gap: 6px;
  }

  .port-filter {
    font-size: .74rem;
    padding: 7px 14px;
  }

  /* Testimonials */
  .testi-card {
    min-width: 280px;
  }

  /* CTA Banner */
  .cta-banner-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-banner-title {
    font-size: 1.5rem;
  }

  /* Poster */
  .poster-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* About */
  .about-snap-grid {
    grid-template-columns: 1fr;
  }

  .adv-orbit-1,
  .adv-orbit-2 {
    display: flex;
  }

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

  /* Careers */
  .careers-intro {
    grid-template-columns: 1fr;
  }

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

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

  .job-card {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 18px;
  }

  .job-apply-btn {
    width: 100%;
  }

  .job-apply-btn .btn {
    width: 100%;
    justify-content: center;
  }

  .careers-role-header {
    padding: 20px 22px;
    gap: 14px;
  }

  .role-header-icon {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
  }

  .role-header-text h3 {
    font-size: 1.1rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* Counter strip */
  .counter-strip {
    gap: 20px;
    flex-wrap: wrap;
  }

  /* Team grid */
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:480px) {
  .stat-cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 1.85rem;
  }

  .hero-title {
    font-size: 1.85rem !important;
  }

  .btn-lg {
    padding: 13px 26px;
    font-size: .88rem;
  }

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

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

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

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

  .careers-stats {
    grid-template-columns: 1fr 1fr;
  }

  .snap-stat-card {
    padding: 18px;
  }

  .new-svc-tab {
    width: 100%;
    justify-content: center;
  }

  .who-we-are-btns {
    flex-direction: column;
  }

  .who-we-are-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .careers-role-header {
    flex-wrap: wrap;
    padding: 18px 16px;
    gap: 12px;
  }

  .role-count-badge {
    margin-left: 0;
  }

  .pre-logo-img {
    width: 160px;
    height: 160px;
  }

  .pre-ring {
    width: 196px;
    height: 196px;
  }

  .pre-ring2 {
    width: 222px;
    height: 222px;
  }

  .pre-name-img {
    height: 40px;
  }

  .nav-logo-img {
    height: 50px;
  }

  .footer-logo-img {
    height: 60px;
  }
}

/* ── Extra small phones (375px — iPhone SE, Galaxy A series) ── */
@media(max-width:375px) {
  .container {
    padding: 0 14px;
  }

  .hero-title {
    font-size: 1.6rem !important;
  }

  .sec-title {
    font-size: 1.5rem !important;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-banner {
    padding: 32px 20px;
  }

  .cta-banner-title {
    font-size: 1.35rem;
  }

  .cta-banner-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner-btns .btn {
    justify-content: center;
  }

  .footer-grid {
    gap: 22px;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .counter-num {
    font-size: 2.2rem;
  }

  .page-title {
    font-size: 1.7rem;
  }

  .pre-logo-img {
    width: 140px;
    height: 140px;
  }

  .pre-ring {
    width: 176px;
    height: 176px;
  }

  .pre-ring2 {
    width: 198px;
    height: 198px;
  }

  .pre-name-img {
    height: 36px;
  }

  .nav-logo-img {
    height: 44px;
  }

  .process-row {
    grid-template-columns: 1fr;
  }
}

/* ── Landscape phone ── */
@media(max-width:768px) and (orientation:landscape) {
  #hero {
    min-height: auto;
    padding-top: 80px;
  }

  .hero-content {
    padding: 80px 0 60px;
  }

  .pre-logo-img {
    width: 120px;
    height: 120px;
  }

  .pre-ring {
    width: 150px;
    height: 150px;
  }

  .pre-ring2 {
    width: 172px;
    height: 172px;
  }
}

/* ── Job card alignment fix for careers page grid ── */
.careers-role-section .job-card {
  cursor: default;
}

.careers-role-section .job-card:hover {
  transform: translateY(-4px);
}

@media(max-width:640px) {
  .careers-role-section .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-apply-btn {
    width: 100%;
  }

  .job-apply-btn .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ════ BUG FIXES & MISSING KEYFRAMES ════ */

/* Fix: float-y animation was referenced but not defined */
@keyframes float-y {

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

  50% {
    transform: translateY(-10px);
  }
}

/* Nav burger animation — applied at all breakpoints, visible only on mobile */
.nav-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Fix: sdc-icon conflict — ensure correct specificity */
.svc-detail-grid .sdc-icon,
.sdc .sdc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: var(--secondary);
  box-shadow: 0 4px 14px rgba(117, 2, 68, .12);
  transition: transform .25s ease;
}

.sdc:hover .sdc-icon {
  transform: scale(1.1) rotate(-4deg);
  background: var(--grad-primary);
}

/* Fix: about vision/mission section grid on mobile */
@media(max-width:768px) {

  .vision-grid,
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* Fix: expertise grid mobile */
@media(max-width:640px) {
  .expertise-grid {
    grid-template-columns: 1fr !important;
  }

  .expertise-card-inner {
    padding: 24px 20px;
  }
}

/* Fix: portfolio hero section padding on mobile */
@media(max-width:768px) {
  .port-hero-section {
    padding: 100px 0 0;
  }

  .port-hero-title {
    font-size: 2rem !important;
  }

  .port-hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .port-hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .port-impact-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .port-impact-div {
    display: none;
  }

  .port-impact-item {
    padding: 10px 20px;
  }
}

/* Fix: services tabs vertical on small screens */
@media(max-width:480px) {
  .svc-tabs {
    flex-direction: column;
  }

  .svc-tab {
    text-align: center;
  }
}

/* Fix: footer grid on extra-small */
@media(max-width:480px) {
  .footer-logo-img {
    height: 54px;
    max-width: 220px;
  }
}

/* Fix: testimonials card mobile */
@media(max-width:480px) {
  .testi-card {
    min-width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }
}

/* Fix: new-svc-card-icon position in card top */
.new-svc-card-top .new-svc-card-icon {
  margin-bottom: 12px;
}

/* Fix: remove double margin on sdc-icon when using .sdc-icon-wrap */
.sdc .sdc-icon-wrap .sdc-icon {
  margin-bottom: 0;
}

/* Ensure footer-logo-img is visible and not broken by old icon styles */
.footer-logo .footer-logo-img {
  display: block;
  height: 76px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════════
   ZYNKWAVE — SCROLL ANIMATION SYSTEM v2.0
   Covers: fade-in, fade-up, fade-down, fade-left, fade-right,
           zoom-in, zoom-out, flip-x, flip-y, slide-up, rotate-in,
           blur-in, bounce-in, stagger delays, reduced-motion guard
   ═══════════════════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes zw-fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes zw-fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes zw-fadeDown {
  from {
    opacity: 0;
    transform: translateY(-50px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes zw-fadeLeft {
  from {
    opacity: 0;
    transform: translateX(60px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes zw-fadeRight {
  from {
    opacity: 0;
    transform: translateX(-60px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes zw-zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes zw-zoomOut {
  from {
    opacity: 0;
    transform: scale(1.25)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes zw-flipX {
  from {
    opacity: 0;
    transform: perspective(600px) rotateX(60deg)
  }

  to {
    opacity: 1;
    transform: perspective(600px) rotateX(0)
  }
}

@keyframes zw-flipY {
  from {
    opacity: 0;
    transform: perspective(600px) rotateY(60deg)
  }

  to {
    opacity: 1;
    transform: perspective(600px) rotateY(0)
  }
}

@keyframes zw-slideUp {
  from {
    transform: translateY(100%);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

@keyframes zw-rotateIn {
  from {
    opacity: 0;
    transform: rotate(-15deg) scale(0.85)
  }

  to {
    opacity: 1;
    transform: rotate(0) scale(1)
  }
}

@keyframes zw-blurIn {
  from {
    opacity: 0;
    filter: blur(18px)
  }

  to {
    opacity: 1;
    filter: blur(0)
  }
}

@keyframes zw-bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.5)
  }

  60% {
    opacity: 1;
    transform: scale(1.08)
  }

  80% {
    transform: scale(0.96)
  }

  100% {
    transform: scale(1)
  }
}

/* ── Base hidden state for all scroll-anim elements ──
   Elements start invisible, become visible when .zw-visible is added by JS */

/* Generic scroll triggers — manually added in HTML */
.fade-in,
.fade-left,
.fade-right,
[data-anim] {
  opacity: 0;
  will-change: opacity, transform;
  transition: none;
  /* JS drives timing via animation */
}

/* Visible state fires the animation */
.fade-in.visible,
[data-anim].zw-visible {
  animation: zw-fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  opacity: 1;
}

.fade-left.visible {
  animation: zw-fadeRight 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  opacity: 1;
}

.fade-right.visible {
  animation: zw-fadeLeft 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  opacity: 1;
}

/* ── Named animation triggers via data-anim ── */
[data-anim="fade"].zw-visible {
  animation: zw-fadeIn 0.7s ease both
}

[data-anim="fade-up"].zw-visible {
  animation: zw-fadeUp 0.75s cubic-bezier(0.22, 1, .36, 1) both
}

[data-anim="fade-down"].zw-visible {
  animation: zw-fadeDown 0.75s cubic-bezier(0.22, 1, .36, 1) both
}

[data-anim="fade-left"].zw-visible {
  animation: zw-fadeLeft 0.75s cubic-bezier(0.22, 1, .36, 1) both
}

[data-anim="fade-right"].zw-visible {
  animation: zw-fadeRight 0.75s cubic-bezier(0.22, 1, .36, 1) both
}

[data-anim="zoom-in"].zw-visible {
  animation: zw-zoomIn 0.7s cubic-bezier(0.34, 1.56, .64, 1) both
}

[data-anim="zoom-out"].zw-visible {
  animation: zw-zoomOut 0.7s ease both
}

[data-anim="flip-x"].zw-visible {
  animation: zw-flipX 0.8s cubic-bezier(0.22, 1, .36, 1) both
}

[data-anim="flip-y"].zw-visible {
  animation: zw-flipY 0.8s cubic-bezier(0.22, 1, .36, 1) both
}

[data-anim="slide-up"].zw-visible {
  animation: zw-slideUp 0.65s cubic-bezier(0.22, 1, .36, 1) both
}

[data-anim="rotate-in"].zw-visible {
  animation: zw-rotateIn 0.8s cubic-bezier(0.22, 1, .36, 1) both
}

[data-anim="blur-in"].zw-visible {
  animation: zw-blurIn 0.8s ease both
}

[data-anim="bounce-in"].zw-visible {
  animation: zw-bounceIn 0.85s cubic-bezier(0.34, 1.56, .64, 1) both
}

/* ── Auto-animate: JS adds these classes to elements it discovers ── */
.zw-anim {
  opacity: 0;
  will-change: opacity, transform;
}

.zw-anim.zw-visible {
  opacity: 1;
}

.zw-anim[data-anim-type="fade-up"].zw-visible {
  animation: zw-fadeUp 0.75s cubic-bezier(0.22, 1, .36, 1) both
}

.zw-anim[data-anim-type="fade-down"].zw-visible {
  animation: zw-fadeDown 0.75s cubic-bezier(0.22, 1, .36, 1) both
}

.zw-anim[data-anim-type="fade-left"].zw-visible {
  animation: zw-fadeLeft 0.72s cubic-bezier(0.22, 1, .36, 1) both
}

.zw-anim[data-anim-type="fade-right"].zw-visible {
  animation: zw-fadeRight 0.72s cubic-bezier(0.22, 1, .36, 1) both
}

.zw-anim[data-anim-type="zoom-in"].zw-visible {
  animation: zw-zoomIn 0.7s cubic-bezier(0.34, 1.56, .64, 1) both
}

.zw-anim[data-anim-type="flip-x"].zw-visible {
  animation: zw-flipX 0.8s cubic-bezier(0.22, 1, .36, 1) both
}

.zw-anim[data-anim-type="flip-y"].zw-visible {
  animation: zw-flipY 0.8s cubic-bezier(0.22, 1, .36, 1) both
}

.zw-anim[data-anim-type="rotate-in"].zw-visible {
  animation: zw-rotateIn 0.8s cubic-bezier(0.22, 1, .36, 1) both
}

.zw-anim[data-anim-type="blur-in"].zw-visible {
  animation: zw-blurIn 0.8s ease both
}

.zw-anim[data-anim-type="bounce-in"].zw-visible {
  animation: zw-bounceIn 0.85s cubic-bezier(0.34, 1.56, .64, 1) both
}

.zw-anim[data-anim-type="slide-up"].zw-visible {
  animation: zw-slideUp 0.65s cubic-bezier(0.22, 1, .36, 1) both
}

.zw-anim[data-anim-type="fade"].zw-visible {
  animation: zw-fadeIn 0.7s ease both
}

/* ── Stagger delay utilities ── */
.delay-0 {
  animation-delay: 0s !important
}

.delay-1 {
  animation-delay: 0.10s !important
}

.delay-2 {
  animation-delay: 0.20s !important
}

.delay-3 {
  animation-delay: 0.30s !important
}

.delay-4 {
  animation-delay: 0.40s !important
}

.delay-5 {
  animation-delay: 0.50s !important
}

.delay-6 {
  animation-delay: 0.65s !important
}

.delay-7 {
  animation-delay: 0.80s !important
}

.delay-8 {
  animation-delay: 0.95s !important
}

/* data-delay still works for fine-grained JS timing */

/* ── Section headings / sec-tag get a special slide-up reveal ── */
.sec-tag.zw-anim.zw-visible {
  animation: zw-blurIn 0.6s ease both
}

.sec-title.zw-anim.zw-visible {
  animation: zw-fadeUp 0.8s cubic-bezier(0.22, 1, .36, 1) both
}

.sec-subtitle.zw-anim.zw-visible {
  animation: zw-fadeUp 0.75s cubic-bezier(0.22, 1, .36, 1) both
}

.page-title.zw-anim.zw-visible {
  animation: zw-fadeDown 0.85s cubic-bezier(0.22, 1, .36, 1) both
}

.page-subtitle.zw-anim.zw-visible {
  animation: zw-blurIn 0.8s ease both
}

/* ── Images get zoom-out reveal (feels like pulling into view) ── */
img.zw-anim.zw-visible {
  animation: zw-zoomOut 0.9s cubic-bezier(0.22, 1, .36, 1) both
}

/* ── Buttons get bounce-in ── */
.btn.zw-anim.zw-visible {
  animation: zw-bounceIn 0.7s cubic-bezier(0.34, 1.56, .64, 1) both
}

/* ── Cards alternate left/right ── */
.svc-card.zw-anim.zw-visible,
.new-svc-card.zw-anim.zw-visible,
.sdc.zw-anim.zw-visible,
.testi-card.zw-anim.zw-visible,
.val-card.zw-anim.zw-visible,
.team-card.zw-anim.zw-visible,
.job-card.zw-anim.zw-visible,
.port-item.zw-anim.zw-visible,
.perk-card.zw-anim.zw-visible,
.process-step.zw-anim.zw-visible,
.snap-stat-card.zw-anim.zw-visible {
  animation: zw-fadeUp 0.72s cubic-bezier(0.22, 1, .36, 1) both
}

/* ── Counter items ── */
.counter-item.zw-anim.zw-visible {
  animation: zw-bounceIn 0.7s cubic-bezier(0.34, 1.56, .64, 1) both
}

.stat-card-item.zw-anim.zw-visible {
  animation: zw-zoomIn 0.7s cubic-bezier(0.34, 1.56, .64, 1) both
}

/* ── Poster cards ── */
.poster-card.zw-anim.zw-visible {
  animation: zw-flipY 0.8s cubic-bezier(0.22, 1, .36, 1) both
}

/* ── Footer elements ── */
.footer-grid>div.zw-anim.zw-visible {
  animation: zw-fadeUp 0.7s cubic-bezier(0.22, 1, .36, 1) both
}

/* ── Hero elements entry (page load only, no observer needed) ── */
.hero-badge {
  animation: zw-fadeDown 0.7s 0.3s cubic-bezier(0.22, 1, .36, 1) both
}

.hero-title {
  animation: zw-fadeUp 0.8s 0.45s cubic-bezier(0.22, 1, .36, 1) both
}

.hero-slogan {
  animation: zw-blurIn 0.7s 0.6s ease both
}

.hero-typed-wrap {
  animation: zw-fadeUp 0.7s 0.7s ease both
}

.hero-desc {
  animation: zw-fadeUp 0.7s 0.8s ease both
}

.hero-btns {
  animation: zw-fadeUp 0.7s 0.95s ease both
}

.hero-stats {
  animation: zw-fadeUp 0.7s 1.1s ease both
}

.hero-scroll-hint {
  animation: zw-fadeIn 0.6s 1.4s ease both
}

/* ── Page-header hero ── */
.page-header {
  overflow: hidden
}

.page-header .breadcrumb {
  animation: zw-fadeDown 0.6s 0.2s ease both
}

.page-header .page-title {
  animation: zw-fadeUp 0.8s 0.35s cubic-bezier(0.22, 1, .36, 1) both
}

.page-header .page-subtitle {
  animation: zw-blurIn 0.7s 0.55s ease both
}

/* ── Ticker strip ── */
.ticker {
  animation: zw-slideUp 0.5s 0.1s ease both
}

/* ── CTA Banner ── */
.cta-banner.zw-anim.zw-visible {
  animation: zw-zoomIn 0.8s cubic-bezier(0.34, 1.2, .64, 1) both
}

/* ── About dynamic visual ── */
.about-dynamic-vis.zw-anim.zw-visible {
  animation: zw-rotateIn 1s cubic-bezier(0.22, 1, .36, 1) both
}

/* ── FAQ items ── */
.faq-item.zw-anim.zw-visible {
  animation: zw-fadeRight 0.6s cubic-bezier(0.22, 1, .36, 1) both
}

/* ── Contact form ── */
.contact-form.zw-anim.zw-visible,
.contact-info.zw-anim.zw-visible {
  animation: zw-fadeUp 0.75s cubic-bezier(0.22, 1, .36, 1) both
}

/* ── List items in text ── */
.about-list li.zw-anim.zw-visible,
.expertise-list li.zw-anim.zw-visible {
  animation: zw-fadeRight 0.55s cubic-bezier(0.22, 1, .36, 1) both
}

/* ── Expertise cards ── */
.expertise-card.zw-anim.zw-visible {
  animation: zw-flipY 0.85s cubic-bezier(0.22, 1, .36, 1) both
}

/* ── Why feat items ── */
.why-feat.zw-anim.zw-visible {
  animation: zw-fadeRight 0.65s cubic-bezier(0.22, 1, .36, 1) both
}

/* ── Navbar entry ── */
#navbar {
  animation: zw-fadeDown 0.5s 0.1s ease both
}

/* ── Mobile nav burger style ── */
@media (max-width: 768px) {
  #navbar .nav-wrap {
    padding: 0 4px;
  }

  .nav-logo-img {
    height: 38px;
    width: auto;
  }

  .nav-logo-img-full {
    height: 34px;
    width: auto;
  }

  .nav-burger {
    padding: 10px;
    margin-right: -4px;
    display: flex;
    z-index: 10001;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    align-items: stretch;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(117, 2, 68, 0.1);
    border-radius: 0 0 20px 20px;
    gap: 8px;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1rem !important;
    padding: 12px 20px !important;
    width: 100%;
    text-align: center;
    background: transparent !important;
    color: var(--text) !important;
    border-radius: 8px;
    transition: var(--transition);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary) !important;
    background: var(--secondary) !important;
  }

  .nav-drawer-header {
    display: none !important;
  }

  .nav-mobile-cta {
    display: none !important;
  }

  /* Force navbar to solid state when mobile menu is open for seamless look */
  body.nav-open #navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 30px rgba(117, 2, 68, 0.09) !important;
  }
  
  body.nav-open .nav-logo-img {
    display: none !important;
  }
  
  body.nav-open .nav-logo-img-full {
    display: block !important;
  }
  
  body.nav-open .nav-burger span {
    background: var(--dark) !important;
  }
}

/* ── Reduced Motion — disable everything ── */
@media (prefers-reduced-motion: reduce) {

  .fade-in,
  .fade-left,
  .fade-right,
  [data-anim],
  .zw-anim,
  .hero-badge,
  .hero-title,
  .hero-slogan,
  .hero-typed-wrap,
  .hero-desc,
  .hero-btns,
  .hero-stats,
  .hero-scroll-hint,
  .page-header .breadcrumb,
  .page-header .page-title,
  .page-header .page-subtitle,
  .ticker,
  #navbar {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* whatsapp floating icon */
#whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: .3s;
  z-index: 999;
}

#whatsapp-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .6);
}