
/* === ChatBotAi.razor.css === */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 380px;
  max-height: 600px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transition: all 0.3s ease;
}
.chatbot-container:not(.open) {
  max-height: 60px;
}
.chatbot-container .chatbot-header {
  background: linear-gradient(135deg, #ea580c 0%, #ea580c 50%, #0ea5e9 100%);
  color: white;
  padding: 16px 20px;
  border-radius: 16px 16px 0 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.chatbot-container .chatbot-header .header-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
}
.chatbot-container .chatbot-header .header-content .bot-icon {
  font-size: 24px;
  animation: bounce 2s infinite;
}
.chatbot-container .chatbot-header .toggle-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.chatbot-container .chatbot-header .toggle-btn:hover {
  transform: scale(1.2);
}
.chatbot-container .chatbot-body {
  display: flex;
  flex-direction: column;
  height: 500px;
  background: #fffbeb;
}
.chatbot-container .chatbot-body .messages-container {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}
.chatbot-container .chatbot-body .messages-container::-webkit-scrollbar {
  width: 6px;
}
.chatbot-container .chatbot-body .messages-container::-webkit-scrollbar-track {
  background: transparent;
}
.chatbot-container .chatbot-body .messages-container::-webkit-scrollbar-thumb {
  background: #d97706;
  border-radius: 3px;
}
.chatbot-container .chatbot-body .messages-container::-webkit-scrollbar-thumb:hover {
  background: #ea580c;
}
.chatbot-container .chatbot-body .messages-container .message {
  display: flex;
  gap: 10px;
  animation: fadeIn 0.3s ease;
}
.chatbot-container .chatbot-body .messages-container .message .message-avatar {
  font-size: 24px;
  flex-shrink: 0;
}
.chatbot-container .chatbot-body .messages-container .message .message-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 70%;
}
.chatbot-container .chatbot-body .messages-container .message .message-content .message-text {
  padding: 12px 16px;
  border-radius: 12px;
  line-height: 1.5;
  white-space: pre-line;
}
.chatbot-container .chatbot-body .messages-container .message .message-content .message-time {
  font-size: 11px;
  color: #78716c;
  padding: 0 4px;
}
.chatbot-container .chatbot-body .messages-container .message.user-message {
  flex-direction: row-reverse;
}
.chatbot-container .chatbot-body .messages-container .message.user-message .message-content {
  align-items: flex-end;
}
.chatbot-container .chatbot-body .messages-container .message.user-message .message-content .message-text {
  background: linear-gradient(135deg, #d97706 0%, #eab308 50%, #ea580c 100%);
  color: white;
}
.chatbot-container .chatbot-body .messages-container .message.bot-message .message-content .message-text {
  background: white;
  color: #292524;
  box-shadow: 0 2px 8px rgba(0, 217, 255, 0.1);
  border: 1px solid #d6f8ff;
}
.chatbot-container .chatbot-body .messages-container .typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 217, 255, 0.1);
  border: 1px solid #d6f8ff;
}
.chatbot-container .chatbot-body .messages-container .typing-indicator span {
  width: 8px;
  height: 8px;
  background: #d97706;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}
.chatbot-container .chatbot-body .messages-container .typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
  background: #eab308;
}
.chatbot-container .chatbot-body .messages-container .typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
  background: #ea580c;
}
.chatbot-container .chatbot-body .quick-actions {
  padding: 12px 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: white;
  border-top: 1px solid #d6f8ff;
}
.chatbot-container .chatbot-body .quick-actions .quick-action-btn {
  padding: 6px 12px;
  background: linear-gradient(135deg, #fed7aa 0%, #fef3c7 50%, #b3f4ff 100%);
  border: 1px solid #d97706;
  border-radius: 16px;
  font-size: 12px;
  color: #78350f;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-weight: 500;
}
.chatbot-container .chatbot-body .quick-actions .quick-action-btn:hover {
  background: linear-gradient(135deg, #f97316 0%, #eab308 50%, #ea580c 100%);
  border-color: #ea580c;
  transform: translateY(-1px);
  color: white;
}
.chatbot-container .chatbot-body .quick-actions .quick-action-btn:active {
  transform: translateY(0);
}
.chatbot-container .chatbot-body .chatbot-input {
  padding: 16px 20px;
  background: white;
  border-radius: 0 0 16px 16px;
  display: flex;
  gap: 10px;
  border-top: 1px solid #d6f8ff;
}
.chatbot-container .chatbot-body .chatbot-input .input-field {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #fef3c7;
  border-radius: 24px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s ease;
  background: #fffbeb;
}
.chatbot-container .chatbot-body .chatbot-input .input-field:focus {
  border-color: #ea580c;
  background: white;
}
.chatbot-container .chatbot-body .chatbot-input .input-field:disabled {
  background: #fef3c7;
  cursor: not-allowed;
}
.chatbot-container .chatbot-body .chatbot-input .input-field::placeholder {
  color: #a8a29e;
}
.chatbot-container .chatbot-body .chatbot-input .send-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #d97706 0%, #eab308 50%, #ea580c 100%);
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-container .chatbot-body .chatbot-input .send-btn:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4);
}
.chatbot-container .chatbot-body .chatbot-input .send-btn:active:not(:disabled) {
  transform: scale(0.95);
}
.chatbot-container .chatbot-body .chatbot-input .send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .chatbot-container {
    width: calc(100vw - 40px);
    left: 20px;
    right: 20px;
  }
}


/* === DanhSachDoiTac.razor.css === */
.partners-section {
  position: relative;
  padding: 100px 5%;
  background: linear-gradient(180deg, #1a0a0a 0%, #0d1f0d 50%, #0a1a0a 100%);
  overflow: hidden;
}

.particles-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.particles-bg .particle-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: var(--x);
  top: var(--y);
  animation: particleDrift 15s infinite ease-in-out;
  animation-delay: var(--delay);
}
.particles-bg .particle-dot:nth-child(odd) {
  background: #ea580c;
  box-shadow: 0 0 20px #ea580c;
}
.particles-bg .particle-dot:nth-child(even) {
  background: #ea580c;
  box-shadow: 0 0 20px #ea580c;
}

@keyframes particleDrift {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -50px);
    opacity: 1;
  }
  50% {
    transform: translate(-20px, -100px);
    opacity: 0.5;
  }
  75% {
    transform: translate(40px, -150px);
    opacity: 0.8;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(0, 217, 255, 0.1));
  border: 1px solid rgba(234, 88, 12, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  animation: tagFloat 3s ease-in-out infinite;
}
.section-tag .dot {
  width: 8px;
  height: 8px;
  background: #ea580c;
  border-radius: 50%;
  animation: dotGlow 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px #ea580c;
}

@keyframes tagFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes dotGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px #ea580c;
  }
  50% {
    transform: scale(1.3);
    box-shadow: 0 0 20px #eab308;
  }
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}
.section-title .word {
  display: inline-block;
  margin: 0 8px;
  opacity: 0;
  animation: wordReveal 0.8s ease forwards;
}
.section-title .word:nth-child(1) {
  animation-delay: 0.15s;
}
.section-title .word:nth-child(2) {
  animation-delay: 0.3s;
}
.section-title .word:nth-child(3) {
  animation-delay: 0.45s;
}
.section-title .word.highlight {
  background: linear-gradient(135deg, #ea580c, #eab308, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wordReveal 0.8s ease forwards, colorShift 4s ease-in-out infinite;
  animation-delay: 0.45s, 1.2s;
}

@keyframes wordReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) rotateX(-45deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}
@keyframes colorShift {
  0%, 100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(30deg);
  }
}
.section-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.partners-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 50px;
  overflow: hidden;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 20px 10px;
}

.partner-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 320px;
  position: relative;
  background: linear-gradient(180deg, rgba(40, 20, 10, 0.8), rgba(10, 25, 10, 0.95));
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 24px;
  padding: 35px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.05), transparent 50%, rgba(0, 217, 255, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.partner-card .card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: glowRotate 10s linear infinite paused;
}
.partner-card:hover, .partner-card.active {
  transform: translateY(-10px);
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 217, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.partner-card:hover::before, .partner-card.active::before {
  opacity: 1;
}
.partner-card:hover .card-glow, .partner-card.active .card-glow {
  opacity: 1;
  animation-play-state: running;
}
.partner-card:hover .partner-logo .logo-ring, .partner-card.active .partner-logo .logo-ring {
  animation: ringPulse 2s ease-in-out infinite;
}
.partner-card:hover .partner-btn, .partner-card.active .partner-btn {
  background: linear-gradient(135deg, #ea580c, #ea580c);
}
.partner-card:hover .partner-btn svg, .partner-card.active .partner-btn svg {
  transform: translateX(5px);
}

@keyframes glowRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.card-content {
  position: relative;
  z-index: 2;
}

.partner-logo {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}
.partner-logo .logo-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ea580c, #ea580c);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(234, 88, 12, 0.4);
  position: relative;
  z-index: 2;
}
.partner-logo .logo-bg svg {
  width: 40px;
  height: 40px;
  color: white;
}
.partner-logo .logo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 26px;
  background: conic-gradient(from 0deg, #ea580c, #eab308, #ea580c, #ea580c);
  z-index: 1;
  opacity: 0.7;
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.partner-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #ffffff, #f97316, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-field {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: #f97316;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.partner-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
  min-height: 50px;
}

.partner-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  padding: 15px 0;
  border-top: 1px solid rgba(234, 88, 12, 0.2);
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}
.partner-stats .stat {
  text-align: center;
}
.partner-stats .stat .stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ea580c, #eab308, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.partner-stats .stat .stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  background: rgba(234, 88, 12, 0.2);
  border: 1px solid rgba(234, 88, 12, 0.4);
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
}
.partner-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.partner-btn:hover {
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.card-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.card-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}
.card-shapes .shape-1 {
  width: 150px;
  height: 150px;
  top: -50px;
  right: -50px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.3), transparent 70%);
  animation: shapeFloat1 8s ease-in-out infinite;
}
.card-shapes .shape-2 {
  width: 100px;
  height: 100px;
  bottom: -30px;
  left: -30px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.3), transparent 70%);
  animation: shapeFloat2 10s ease-in-out infinite;
}

@keyframes shapeFloat1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 20px) scale(1.2);
  }
}
@keyframes shapeFloat2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(234, 88, 12, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
  z-index: 10;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.nav-arrow.prev {
  left: 10px;
}
.nav-arrow.next {
  right: 10px;
}
.nav-arrow svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.nav-arrow .arrow-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ea580c, #eab308, #ea580c);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-arrow:hover:not(:disabled) {
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}
.nav-arrow:hover:not(:disabled) .arrow-bg {
  transform: scale(1);
}
.nav-arrow:hover:not(:disabled).prev svg {
  transform: translateX(-3px);
}
.nav-arrow:hover:not(:disabled).next svg {
  transform: translateX(3px);
}
.nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}
.slider-dots .dot {
  width: 40px;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.slider-dots .dot .dot-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ea580c, #eab308, #ea580c);
  border-radius: 3px;
}
.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scaleY(1.5);
}
.slider-dots .dot.active {
  width: 60px;
}
.slider-dots .dot.active .dot-progress {
  animation: dotFill 5s linear forwards;
}

@keyframes dotFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.partners-marquee {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.03), transparent);
}
.partners-marquee::before, .partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
}
.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, #0a1a0a, transparent);
}
.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, #0a1a0a, transparent);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  padding: 12px 25px;
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.marquee-item:hover {
  background: rgba(234, 88, 12, 0.1);
  border-color: rgba(234, 88, 12, 0.3);
  transform: scale(1.05);
}
.marquee-item:hover .marquee-logo {
  color: #ea580c;
}
.marquee-item .marquee-logo {
  width: 32px;
  height: 32px;
  color: #ea580c;
  transition: color 0.3s ease;
}
.marquee-item .marquee-logo svg {
  width: 100%;
  height: 100%;
}
.marquee-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .partner-card {
    flex: 0 0 calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .partners-section {
    padding: 60px 4%;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-tag {
    padding: 10px 20px;
    font-size: 0.75rem;
  }
  .section-title .word {
    margin: 0 5px;
  }
  .partner-card {
    flex: 0 0 calc(100% - 20px);
    min-width: 280px;
    padding: 25px;
  }
  .nav-arrow {
    width: 45px;
    height: 45px;
  }
  .nav-arrow.prev {
    left: 5px;
  }
  .nav-arrow.next {
    right: 5px;
  }
  .nav-arrow svg {
    width: 18px;
    height: 18px;
  }
  .slider-dots {
    margin-bottom: 40px;
  }
  .slider-dots .dot {
    width: 30px;
  }
  .slider-dots .dot.active {
    width: 45px;
  }
  .marquee-item {
    padding: 10px 18px;
  }
  .marquee-item .marquee-logo {
    width: 24px;
    height: 24px;
  }
  .marquee-item span {
    font-size: 0.8rem;
  }
}


/* === Dashboard.razor.css === */
/* === KEYFRAMES (tối giản) === */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes barGrow {
  from { width: 0; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === WRAPPER === */
.dashboard-wrapper {
  min-height: 100vh;
  background: #0d1117;
  padding: 2rem 2.5rem;
  position: relative;
  font-size: 13px;
}
.particles-bg { display: none; }

/* === HEADER === */
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.dash-header .header-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dash-header .header-title .icon-pulse {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #1e2533;
  border: 1px solid #2d3748;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #94a3b8;
}
.dash-header .header-title h1 {
  font-size: 1.15rem; color: #e2e8f0; margin: 0; font-weight: 600;
}
.dash-header .header-title h1 span { color: #94a3b8; font-weight: 400; }
.dash-header .header-title p { color: #475569; font-size: 0.75rem; margin: 0; }
.dash-header .header-actions { display: flex; align-items: center; gap: 0.75rem; }
.dash-header .header-actions .period-tabs {
  display: flex; background: #161b27;
  border-radius: 8px; padding: 3px; border: 1px solid #2d3748;
}
.dash-header .header-actions .period-tabs button {
  padding: 0.35rem 0.75rem; border: none; background: transparent;
  color: #475569; border-radius: 6px; cursor: pointer;
  font-size: 0.75rem; font-weight: 500; transition: all 0.2s;
}
.dash-header .header-actions .period-tabs button:hover { color: #cbd5e1; }
.dash-header .header-actions .period-tabs button.active { background: #2d3748; color: #e2e8f0; }
.dash-header .header-actions .btn-refresh {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid #2d3748; background: #161b27; color: #64748b;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.dash-header .header-actions .btn-refresh:hover { background: #2d3748; color: #e2e8f0; }
.dash-header .header-actions .btn-refresh.spin i { animation: spin 1s linear infinite; }

/* === STATS GRID === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1200px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .stats-grid { grid-template-columns: 1fr; } }

.stat-card {
  background: #161b27;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  position: relative; overflow: hidden;
  border: 1px solid #1e2533;
  transition: border-color 0.2s, box-shadow 0.2s;
  animation: fadeSlideUp 0.4s ease both;
}
.stat-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; border-radius: 12px 12px 0 0;
}
.stat-card:hover { border-color: #2d3748; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.stat-card .card-shine { display: none; }

.stat-card.revenue::before   { background: #4b5563; }
.stat-card.expense::before   { background: #374151; }
.stat-card.debt::before      { background: #374151; }
.stat-card.inventory::before { background: #4b5563; }

.stat-card .stat-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; margin-bottom: 0.7rem;
  background: #1e2533; color: #94a3b8;
}
.stat-card .stat-body .stat-label {
  color: #475569; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.stat-card .stat-body h2 {
  font-size: 1.35rem; color: #e2e8f0; margin: 0.2rem 0;
  display: flex; align-items: baseline; gap: 0.25rem; font-weight: 700;
}
.stat-card .stat-body h2 small { font-size: 0.75rem; color: #475569; font-weight: 400; }
.stat-card .stat-body .stat-trend {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.72rem; padding: 0.2rem 0.45rem;
  border-radius: 5px; background: #1e2533; color: #64748b;
}
.stat-card .stat-chart {
  position: absolute; bottom: 0; right: 0;
  width: 80px; height: 40px; opacity: 0.2;
}
.stat-card .stat-chart svg { width: 100%; height: 100%; }
.stat-card .stat-chart .spark-line { fill: none; stroke-width: 1.5; stroke-linecap: round; }
.stat-card .stat-chart .revenue-spark,
.stat-card .stat-chart .expense-spark,
.stat-card .stat-chart .debt-spark,
.stat-card .stat-chart .inventory-spark { stroke: #9ca3af; }

/* === CHARTS GRID === */
.charts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) { .charts-grid { grid-template-columns: 1fr; } }

.chart-box {
  background: #161b27; border-radius: 12px;
  overflow: hidden; border: 1px solid #1e2533;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.chart-box:hover { border-color: #2d3748; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.chart-box.chart-wide { grid-column: span 2; }
@media (max-width: 1024px) { .chart-box.chart-wide { grid-column: span 1; } }

.chart-box .chart-header {
  padding: 0.9rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid #1e2533;
}
.chart-box .chart-header h3 {
  font-size: 0.85rem; color: #cbd5e1; margin: 0;
  display: flex; align-items: center; gap: 0.5rem; font-weight: 600;
}
.chart-box .chart-header h3 i { color: #64748b; }
.chart-box .chart-header .chart-legend { display: flex; gap: 1rem; }
.chart-box .chart-header .chart-legend span {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem; color: #475569;
}
.chart-box .chart-header .chart-legend span i { width: 8px; height: 8px; border-radius: 2px; opacity: 0.7; }

.chart-box .chart-canvas-wrap { padding: 1.25rem; position: relative; min-height: 220px; }
.chart-box .chart-canvas-wrap canvas { width: 100% !important; height: 200px !important; }
.chart-box .chart-canvas-wrap .chart-glow { display: none; }

.chart-box .chart-canvas-wrap.donut-wrap {
  display: flex; justify-content: center; align-items: center; min-height: 180px;
}
.chart-box .chart-canvas-wrap.donut-wrap canvas { max-width: 160px; height: 160px !important; }
.chart-box .chart-canvas-wrap.donut-wrap .donut-center { position: absolute; text-align: center; }
.chart-box .chart-canvas-wrap.donut-wrap .donut-center strong {
  display: block; font-size: 1.2rem; color: #e2e8f0; font-weight: 700;
}
.chart-box .chart-canvas-wrap.donut-wrap .donut-center span { font-size: 0.68rem; color: #475569; }

/* === EXPENSE LIST === */
.expense-list { padding: 0 1.25rem 1.1rem; }
.expense-list .expense-row {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.2s;
}
.expense-list .expense-row:last-child { border: none; }
.expense-list .expense-row:hover { background: rgba(255,255,255,0.02); padding-left: 4px; }
.expense-list .expense-row .dot { width: 8px; height: 8px; border-radius: 2px; opacity: 0.6; }
.expense-list .expense-row .name { flex: 1; color: #94a3b8; font-size: 0.8rem; }
.expense-list .expense-row .pct  { color: #64748b; font-weight: 600; font-size: 0.8rem; }

/* === DEBT SUMMARY === */
.debt-summary { display: flex; gap: 0.75rem; padding: 0 1.25rem 1.1rem; }
.debt-summary .debt-item {
  flex: 1; display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem; border-radius: 9px;
  background: #0d1117; border: 1px solid #1e2533;
}
.debt-summary .debt-item i {
  width: 30px; height: 30px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; background: #1e2533; color: #64748b;
}
.debt-summary .debt-item div small { display: block; color: #475569; font-size: 0.7rem; }
.debt-summary .debt-item div strong { color: #cbd5e1; font-size: 0.85rem; }

/* === INVENTORY STATS === */
.inventory-stats { display: flex; gap: 0.75rem; padding: 0 1.25rem 1.1rem; }
@media (max-width: 768px) { .inventory-stats { flex-direction: column; } }
.inventory-stats .inv-stat {
  flex: 1; display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem; border-radius: 9px;
  background: #0d1117; border: 1px solid #1e2533;
}
.inventory-stats .inv-stat i { font-size: 1rem; color: #64748b !important; }
.inventory-stats .inv-stat div { flex: 1; }
.inventory-stats .inv-stat div small { display: block; color: #475569; font-size: 0.7rem; }
.inventory-stats .inv-stat div strong { display: block; color: #cbd5e1; font-size: 0.8rem; margin-bottom: 0.35rem; }
.inventory-stats .inv-stat .bar { height: 4px; background: #1e2533; border-radius: 2px; overflow: hidden; }
.inventory-stats .inv-stat .bar .fill {
  height: 100%; border-radius: 2px;
  animation: barGrow 1.2s ease-out forwards;
  animation-delay: 0.3s; width: 0;
}
.inventory-stats .inv-stat .bar .fill.green  { background: #4b5563; }
.inventory-stats .inv-stat .bar .fill.orange { background: #374151; }
.inventory-stats .inv-stat .bar .fill.purple { background: #4b5563; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}


/* === Footer.razor.css === */
@charset "UTF-8";
.footer {
  background: linear-gradient(135deg, #061830 0%, #0a2a3d 100%);
  color: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding-top: 60px;
}
.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .footer .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.footer .footer-section .footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-section .footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff8c00 0%, #ff6600 100%);
  border-radius: 2px;
}
.footer .footer-section .footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer .social-links .social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 0, 0.2);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 140, 0, 0.3);
}
.footer .social-links .social-icon i {
  font-size: 1rem;
}
.footer .social-links .social-icon:hover {
  background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
  border-color: #ff8c00;
}
.footer .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .contact-list .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
.footer .contact-list .contact-item i {
  color: #ff8c00;
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 20px;
  filter: drop-shadow(0 0 3px rgba(255, 140, 0, 0.4));
}
.footer .contact-list .contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .contact-list .contact-item a:hover {
  color: #ff8c00;
  text-decoration: underline;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links li {
  margin-bottom: 12px;
}
.footer .footer-links li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.footer .footer-links li a::before {
  content: "›";
  margin-right: 8px;
  color: #ff8c00;
  font-weight: bold;
  transition: margin-right 0.3s ease;
  text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
}
.footer .footer-links li a:hover {
  color: #ff8c00;
  padding-left: 5px;
  text-shadow: 0 0 8px rgba(255, 140, 0, 0.3);
}
.footer .footer-links li a:hover::before {
  margin-right: 12px;
}
.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 140, 0, 0.3);
  background: rgba(0, 0, 0, 0.25);
}
.footer .footer-bottom .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
.footer .footer-bottom .copyright,
.footer .footer-bottom .developer-credit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.footer .footer-bottom .developer-credit i {
  color: #ff6600;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@media (max-width: 480px) {
  .footer {
    padding-top: 40px;
    margin-top: 60px;
  }
  .footer .footer-section .footer-title {
    font-size: 1.1rem;
  }
  .footer .contact-list .contact-item {
    font-size: 0.9rem;
  }
}


/* === HeThong_VanHanh.razor.css === */
.operation-system {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0e1a 0%, #141824 50%, #0a0e1a 100%);
  position: relative;
  overflow-x: hidden;
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .operation-system {
    padding: 3rem 2rem;
  }
}

.tech-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.4;
}
.tech-background .grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(164, 198, 57, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(164, 198, 57, 0.2) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 30s linear infinite;
}
.tech-background .particles-container .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, #a4c639, transparent);
  border-radius: 50%;
  left: var(--x);
  top: var(--y);
  animation: particleFloat 10s ease-in-out infinite;
  animation-delay: var(--delay);
}
.tech-background .pulse-ring {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 50%;
  animation: pulseRing 6s ease-out infinite;
}
.tech-background .pulse-ring.pulse-1 {
  top: -300px;
  left: -300px;
}
.tech-background .pulse-ring.pulse-2 {
  bottom: -300px;
  right: -300px;
  border-color: rgba(164, 198, 57, 0.2);
  animation-delay: 3s;
}

.operation-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .operation-header {
    margin-bottom: 3rem;
  }
}
.operation-header .header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(164, 198, 57, 0.1);
  border: 1px solid rgba(164, 198, 57, 0.2);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  color: #a4c639;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}
@media (min-width: 768px) {
  .operation-header .header-tag {
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
  }
}
.operation-header .header-tag i {
  animation: rotate 4s linear infinite;
}
.operation-header .operation-title {
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 0.75rem 0;
  line-height: 1.1;
}
.operation-header .operation-title .gradient-text {
  background: linear-gradient(135deg, #ff6b35, #a4c639);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.operation-header .operation-subtitle {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.workflow-timeline {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.timeline-progress {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(164, 198, 57, 0.1);
  border-radius: 10px;
  overflow: hidden;
  display: none;
}
@media (min-width: 1024px) {
  .timeline-progress {
    display: block;
  }
}
.timeline-progress .progress-line {
  height: 100%;
  background: linear-gradient(90deg, #ff6b35, #a4c639);
  border-radius: 10px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.timeline-progress .progress-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 2s ease-in-out infinite;
}

.timeline-steps {
  display: grid;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 640px) {
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .timeline-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1280px) {
  .timeline-steps {
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
  }
}

.timeline-step {
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(var(--step-index) * 0.1s);
}
.timeline-step .connection-line {
  display: none;
}
@media (min-width: 1280px) {
  .timeline-step .connection-line {
    display: block;
    position: absolute;
    left: 100%;
    top: 30px;
    width: 100%;
    height: 2px;
    z-index: 0;
  }
  .timeline-step .connection-line svg {
    width: 100%;
    height: 100%;
  }
  .timeline-step .connection-line .line-bg {
    stroke: rgba(164, 198, 57, 0.2);
  }
  .timeline-step .connection-line .line-active {
    stroke: url(#lineGradient);
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.8s ease;
  }
  .timeline-step .connection-line.active .line-active {
    stroke-dashoffset: 0;
  }
}

.step-dot {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.step-dot:hover {
  transform: scale(1.1);
}
.step-dot .dot-ring {
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(164, 198, 57, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.step-dot .dot-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #1a1f2e;
  border: 3px solid #8fb830;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #a4c639;
  transition: all 0.3s ease;
}
.step-dot .dot-inner .dot-number {
  font-size: 1.25rem;
}
.step-dot .dot-inner i {
  font-size: 1.5rem;
}

.timeline-step.active .step-dot .dot-ring {
  border-color: #ff6b35;
  animation: pulse-ring 2s ease-in-out infinite;
}
.timeline-step.active .step-dot .dot-inner {
  background: linear-gradient(135deg, #ff6b35, #a4c639);
  border-color: #ff6b35;
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
}

.timeline-step.completed .step-dot .dot-inner {
  background: linear-gradient(135deg, #a4c639, #8fb830);
  border-color: #a4c639;
  color: #fff;
}

.step-card-mini {
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(164, 198, 57, 0.2);
  border-radius: 16px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .step-card-mini {
    padding: 1.5rem;
  }
}
.step-card-mini:hover {
  transform: translateY(-8px);
  border-color: #ff6b35;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}
.step-card-mini:hover .card-glow {
  opacity: 1;
}
.step-card-mini:hover .btn-detail {
  background: linear-gradient(135deg, #ff6b35, #a4c639);
  transform: translateX(5px);
}

.timeline-step.active .step-card-mini {
  border-color: #ff6b35;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}
.timeline-step.active .step-card-mini .card-glow {
  opacity: 0.8;
}

.card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #ff6b35, #a4c639);
  border-radius: 16px;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: -1;
}

.step-icon-mini {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(164, 198, 57, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ff6b35;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .step-icon-mini {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

.timeline-step.active .step-icon-mini {
  background: linear-gradient(135deg, #ff6b35, #a4c639);
  color: #fff;
  animation: iconPulse 2s ease-in-out infinite;
}

.step-title-mini {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  text-align: center;
  min-height: 2.6rem;
}
@media (min-width: 768px) {
  .step-title-mini {
    font-size: 1rem;
  }
}

.step-meta {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.step-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #94a3b8;
}
.step-meta .meta-item i {
  color: #a4c639;
  font-size: 0.7rem;
}

.btn-detail {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(164, 198, 57, 0.1);
  border: 1px solid rgba(164, 198, 57, 0.2);
  color: #a4c639;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}
@media (min-width: 768px) {
  .btn-detail {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}
.btn-detail i {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}
.btn-detail:hover i {
  transform: translateX(3px);
}

.processing-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(164, 198, 57, 0.2);
  overflow: hidden;
}
.processing-bar .processing-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6b35, #a4c639, #ff6b35);
  background-size: 200% 100%;
  animation: processing 2s linear infinite;
}

.progress-summary {
  max-width: 1200px;
  margin: 3rem auto 0;
  background: rgba(26, 31, 46, 0.6);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(164, 198, 57, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .progress-summary {
    padding: 2rem;
  }
}
.progress-summary .summary-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.progress-summary .summary-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.progress-summary .summary-stat .stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.progress-summary .summary-stat .stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b35, #a4c639);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 768px) {
  .progress-summary .summary-stat .stat-value {
    font-size: 2rem;
  }
}
.progress-summary .btn-reset {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff6b35, #a4c639);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
@media (min-width: 768px) {
  .progress-summary .btn-reset {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}
.progress-summary .btn-reset:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}
.progress-summary .btn-reset:active {
  transform: translateY(-1px);
}
.progress-summary .btn-reset i {
  animation: rotate-reverse 2s linear infinite;
}

.trust-badges {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.trust-badges .badge-item {
  background: rgba(26, 31, 46, 0.5);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(164, 198, 57, 0.2);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .trust-badges .badge-item {
    padding: 1.5rem;
  }
}
.trust-badges .badge-item:hover {
  transform: translateY(-5px);
  border-color: #ff6b35;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}
.trust-badges .badge-item:hover i {
  transform: scale(1.2) rotate(5deg);
}
.trust-badges .badge-item i {
  font-size: 1.75rem;
  background: linear-gradient(135deg, #ff6b35, #a4c639);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .trust-badges .badge-item i {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
  }
}
.trust-badges .badge-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .trust-badges .badge-item span {
    font-size: 0.875rem;
  }
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.popup-overlay.show .popup-modal {
  transform: scale(1);
  opacity: 1;
}

.popup-modal {
  background: #1a1f2e;
  border: 2px solid rgba(164, 198, 57, 0.2);
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}
.popup-modal::-webkit-scrollbar {
  width: 8px;
}
.popup-modal::-webkit-scrollbar-track {
  background: rgba(148, 163, 184, 0.1);
  border-radius: 10px;
}
.popup-modal::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff6b35, #a4c639);
  border-radius: 10px;
}
.popup-modal::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #e85d2e, #8fb830);
}

.popup-header {
  padding: 2rem;
  border-bottom: 2px solid rgba(164, 198, 57, 0.2);
  display: flex;
  gap: 1.5rem;
  align-items: center;
  position: sticky;
  top: 0;
  background: #1a1f2e;
  z-index: 10;
}
@media (max-width: 640px) {
  .popup-header {
    padding: 1.5rem;
    gap: 1rem;
  }
}
.popup-header .popup-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .popup-header .popup-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}
.popup-header .popup-title-section {
  flex: 1;
}
.popup-header .popup-title-section .popup-step-number {
  display: block;
  font-size: 0.75rem;
  color: #a4c639;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.popup-header .popup-title-section .popup-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}
.popup-header .btn-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid rgba(164, 198, 57, 0.2);
  color: #ff6b35;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.popup-header .btn-close:hover {
  background: linear-gradient(135deg, #ff6b35, #a4c639);
  color: #fff;
  border-color: #ff6b35;
  transform: rotate(90deg);
}

.popup-body {
  padding: 2rem;
}
@media (max-width: 640px) {
  .popup-body {
    padding: 1.5rem;
  }
}

.popup-section {
  margin-bottom: 2rem;
}
.popup-section:last-child {
  margin-bottom: 0;
}
.popup-section .section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
}
.popup-section .section-title i {
  color: #ff6b35;
  font-size: 1rem;
}
.popup-section .section-content {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

.tech-list {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .tech-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tech-list .tech-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(164, 198, 57, 0.1);
  border: 1px solid rgba(164, 198, 57, 0.2);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tech-list .tech-item:hover {
  background: rgba(164, 198, 57, 0.15);
  border-color: #a4c639;
  transform: translateX(5px);
}
.tech-list .tech-item i {
  color: #a4c639;
  font-size: 1rem;
}

.detail-list {
  display: grid;
  gap: 1rem;
}

.detail-item {
  display: flex;
  gap: 1rem;
  background: rgba(26, 31, 46, 0.5);
  border: 1px solid rgba(164, 198, 57, 0.2);
  border-radius: 16px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}
.detail-item:hover {
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.05);
  transform: translateX(8px);
}
.detail-item .detail-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(164, 198, 57, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ff6b35;
  flex-shrink: 0;
}
.detail-item .detail-content {
  flex: 1;
}
.detail-item .detail-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}
.detail-item .detail-content p {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.stats-grid .stat-card {
  background: rgba(26, 31, 46, 0.5);
  border: 2px solid rgba(164, 198, 57, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.stats-grid .stat-card:hover {
  border-color: #ff6b35;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}
.stats-grid .stat-card i {
  font-size: 2rem;
  background: linear-gradient(135deg, #ff6b35, #a4c639);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.75rem;
}
.stats-grid .stat-card .stat-label {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stats-grid .stat-card .stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.benefits-list {
  display: grid;
  gap: 0.75rem;
}
.benefits-list .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #ffffff;
  line-height: 1.6;
}
.benefits-list .benefit-item i {
  color: #a4c639;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.popup-footer {
  padding: 1.5rem 2rem;
  border-top: 2px solid rgba(164, 198, 57, 0.2);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  position: sticky;
  bottom: 0;
  background: #1a1f2e;
}
@media (max-width: 640px) {
  .popup-footer {
    padding: 1.25rem 1.5rem;
  }
}
.popup-footer .btn-prev,
.popup-footer .btn-next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(164, 198, 57, 0.1);
  border: 2px solid rgba(164, 198, 57, 0.2);
  color: #a4c639;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popup-footer .btn-prev:hover,
.popup-footer .btn-next:hover {
  background: linear-gradient(135deg, #ff6b35, #a4c639);
  color: #fff;
  border-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}
.popup-footer .btn-prev i,
.popup-footer .btn-next i {
  font-size: 0.875rem;
}
.popup-footer .btn-next {
  margin-left: auto;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}
@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120px) translateX(60px);
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes processing {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}
@keyframes shine {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
svg {
  position: absolute;
  width: 0;
  height: 0;
}
svg defs linearGradient#lineGradient stop:nth-child(1) {
  stop-color: #ff6b35;
}
svg defs linearGradient#lineGradient stop:nth-child(2) {
  stop-color: #a4c639;
}

@media (max-width: 640px) {
  .operation-system {
    padding: 1.5rem 1rem;
  }
  .timeline-steps {
    gap: 1.25rem;
  }
  .step-card-mini {
    padding: 1rem;
  }
  .popup-modal {
    border-radius: 20px;
    max-height: 95vh;
  }
  .popup-header {
    flex-wrap: wrap;
  }
  .popup-header .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .step-card-mini:active,
  .step-dot:active,
  .btn-detail:active,
  .trust-badges .badge-item:active {
    transform: scale(0.95);
  }
}


/* === Menu.razor.css === */
/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 62px;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  font-size: 13px;
}

/* line cam dưới cùng */
.navbar::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ea580c 30%, #ea580c 70%, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.navbar.scrolled {
  background: rgba(10, 15, 26, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.navbar.scrolled::after { opacity: 1; }

/* === BRAND === */
@keyframes ring-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 0.8; transform: translate(-50%,-50%) scale(1.12); }
}
@keyframes shimmer-logo {
  0%   { left: -80%; }
  100% { left: 120%; }
}

.navbar-brand { flex-shrink: 0; }

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

/* vòng bao logo */
.logo-wrap {
  position: relative;
  width: 46px; height: 46px;
  flex-shrink: 0;
}

/* glow cam phía sau */
.logo-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 56px; height: 56px;
  background: radial-gradient(circle, rgba(234,88,12,0.45) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(1);
  animation: glow-pulse 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* ring xoay */
.logo-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px dashed rgba(234,88,12,0.35);
  animation: ring-spin 8s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.navbar-logo {
  position: relative; z-index: 1;
  width: 46px; height: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: #0d1117;
  border: 2px solid rgba(234,88,12,0.5);
  box-shadow: 0 0 0 0 rgba(234,88,12,0);
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

/* shimmer sweep trên logo */
.logo-wrap::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-15deg);
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}

.brand-link:hover .logo-wrap::after {
  opacity: 1;
  animation: shimmer-logo 0.7s ease forwards;
}
.brand-link:hover .navbar-logo {
  border-color: #ea580c;
  box-shadow: 0 0 14px rgba(234,88,12,0.5);
}
.brand-link:hover .logo-ring {
  border-color: rgba(234,88,12,0.65);
  animation-duration: 3s;
}

/* text bên cạnh logo */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-tag {
  font-size: 0.6rem;
  color: #ea580c;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

@media (max-width: 480px) {
  .brand-text { display: none; }
  .logo-wrap { width: 38px; height: 38px; }
  .navbar-logo { width: 38px; height: 38px; }
  .logo-ring { width: 44px; height: 44px; }
  .logo-glow { width: 46px; height: 46px; }
}

/* === MENU === */
.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 0.25rem;
  align-items: center;
}

.navbar-item { position: relative; }

.navbar-link {
  display: block;
  padding: 0.45rem 0.95rem;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 7px;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

/* gạch cam dưới link */
.navbar-link::after {
  content: "";
  position: absolute;
  bottom: 3px; left: 0.95rem; right: 0.95rem;
  height: 2px;
  background: #ea580c;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.navbar-link:hover {
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.05);
}
.navbar-link:hover::after { transform: scaleX(1); }

.navbar-link.active {
  color: #ea580c;
  background: rgba(234, 88, 12, 0.08);
}
.navbar-link.active::after { transform: scaleX(1); }

/* === RIGHT SIDE === */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* nút CTA */
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 1rem;
  background: #ea580c;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 7px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-contact svg { width: 13px; height: 13px; transition: transform 0.2s; }
.btn-contact:hover {
  background: #ea580c;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
  transform: translateY(-1px);
}
.btn-contact:hover svg { transform: translateX(3px); }

/* === HAMBURGER === */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  padding: 0 8px;
  transition: background 0.2s;
}
.navbar-toggle span {
  display: block;
  height: 2px;
  background: #94a3b8;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.navbar-toggle:hover { background: rgba(255,255,255,0.1); }

/* X animation */
.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #ea580c; }
.navbar-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #ea580c; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .navbar { padding: 0 1.25rem; }
  .btn-contact span { display: none; }
  .btn-contact { padding: 0.42rem 0.65rem; }
  .btn-contact svg { width: 15px; height: 15px; }
}

@media (max-width: 768px) {
  .navbar-toggle { display: flex; }
  .btn-contact span { display: inline; }

  .navbar-menu {
    position: absolute;
    top: 62px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 15, 26, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0.5rem 1rem 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    backdrop-filter: blur(18px);
  }
  .navbar-menu.active {
    max-height: 400px;
    opacity: 1;
  }

  .navbar-link {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }
  .navbar-link::after { display: none; }
  .navbar-link:hover { background: rgba(234,88,12,0.08); color: #ea580c; }
}

@media (max-width: 480px) {
  .navbar { padding: 0 1rem; }
  .navbar-logo { height: 34px; }
  .btn-contact { display: none; }
}

/* === Register.razor.css === */
/* === KEYFRAMES === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes shimmer-btn {
  0%   { left: -60%; }
  100% { left: 120%; }
}

/* === SECTION === */
.register-section {
  background: #0d1117;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  font-size: 13px;
}
.register-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* ========================
   LEFT PANEL
   ======================== */
.register-image {
  flex: 1;
  background: #0f2340;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  border-right: 1px solid #1a3456;
}
.register-image::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(234,88,12,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
}
.image-overlay, .image-bg, .floating-elements { display: none; }

.image-content {
  position: relative; z-index: 1;
  max-width: 400px;
  animation: fadeInLeft 0.5s ease both;
}

.brand-icon {
  width: 48px; height: 48px;
  background: rgba(234,88,12,0.12); border: 1px solid rgba(234,88,12,0.3); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: #ea580c;
}
.brand-icon svg { width: 24px; height: 24px; }

.image-title {
  font-size: 1.5rem; font-weight: 700;
  color: #e2e8f0; line-height: 1.3; margin-bottom: 0.85rem;
}
.image-title span { color: #f97316; }

.image-description {
  font-size: 0.82rem; color: #8fb3cc; line-height: 1.7; margin-bottom: 1.75rem;
}

.features-list { padding: 0; margin: 0 0 1.75rem; }
.feature-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0; border-bottom: 1px solid #1a3456;
  animation: fadeInUp 0.4s ease both;
}
.feature-item:last-child { border: none; }
.feature-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(234,88,12,0.15); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; color: #ea580c;
}
.feature-icon svg { width: 13px; height: 13px; }
.feature-item span { font-size: 0.8rem; color: #c8dde8; }

.stats-row { border-top: 1px solid #1a3456; padding-top: 1.4rem; }
.stat-item { text-align: center; }
.stat-number { font-size: 1.4rem; font-weight: 700; color: #ffffff; line-height: 1; margin-bottom: 0.3rem; }
.stat-label  { font-size: 0.68rem; color: #6a9bbf; text-transform: uppercase; letter-spacing: 0.05em; }

/* ========================
   RIGHT PANEL
   ======================== */
.register-form {
  flex: 1;
  background: #0d1117;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 2.5rem;
}
.form-wrapper {
  width: 100%; max-width: 460px;
  animation: fadeInRight 0.5s ease both;
}

.form-header { margin-bottom: 1.6rem; }
.form-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(234,88,12,0.1); border: 1px solid rgba(234,88,12,0.25);
  border-radius: 20px; padding: 0.28rem 0.8rem;
  font-size: 0.7rem; font-weight: 600; color: #ea580c;
  margin-bottom: 0.9rem; letter-spacing: 0.04em;
}
.badge-dot {
  width: 6px; height: 6px; background: #ea580c; border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.form-title   { font-size: 1.25rem; font-weight: 700; color: #e2e8f0; margin: 0 0 0.35rem; }
.form-subtitle{ font-size: 0.78rem; color: #475569; margin: 0; }

/* --- Inputs --- */
.form-floating-custom { position: relative; }

.input-icon {
  position: absolute; left: 0.8rem; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: #475569; z-index: 2; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.input-icon svg { width: 15px; height: 15px; }
.textarea-custom .input-icon,
.textarea-custom .textarea-icon { top: 0.9rem; transform: none; }

.form-floating-custom .form-control,
.form-floating-custom .form-select {
  background: #161b27;
  border: 1px solid #2d3748;
  border-radius: 9px;
  color: #e2e8f0;
  font-size: 0.82rem;
  padding: 0.65rem 0.85rem 0.65rem 2.35rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%; appearance: none; height: auto;
}
.form-floating-custom .form-control::placeholder { color: transparent; }

.form-floating-custom label {
  position: absolute; left: 2.35rem; top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem; color: #475569;
  pointer-events: none; transition: all 0.2s;
  background: transparent; z-index: 1;
}
.textarea-custom label { top: 0.8rem; transform: none; }

.form-floating-custom .form-control:focus ~ label,
.form-floating-custom .form-control:not(:placeholder-shown) ~ label,
.form-floating-custom .form-select:focus ~ label {
  top: -0.55rem; font-size: 0.66rem; color: #ea580c;
  background: #0d1117; padding: 0 4px; left: 2.1rem;
}
.textarea-custom .form-control:focus ~ label,
.textarea-custom .form-control:not(:placeholder-shown) ~ label {
  top: -0.55rem; transform: none;
}

.form-floating-custom .form-control:focus,
.form-floating-custom .form-select:focus {
  outline: none;
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234,88,12,0.12);
  background: #1a2030;
}

.form-floating-custom textarea.form-control {
  resize: vertical; min-height: 85px; padding-top: 0.8rem;
}

.select-custom .select-arrow {
  position: absolute; right: 0.8rem; top: 50%;
  transform: translateY(-50%); width: 15px; height: 15px;
  color: #475569; pointer-events: none;
}
.select-custom .select-arrow svg { width: 13px; height: 13px; }
.input-highlight { display: none; }

.validation-message { font-size: 0.7rem; color: #f87171; margin-top: 3px; display: block; }

/* --- Submit --- */
.btn-submit {
  position: relative; overflow: hidden;
  background: #ea580c; border: none; border-radius: 9px;
  color: #ffffff; font-size: 0.88rem; font-weight: 700;
  padding: 0.75rem 1.5rem; cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-submit:hover:not(:disabled) {
  background: #ea580c;
  box-shadow: 0 6px 18px rgba(234,88,12,0.3);
}
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
}
.btn-arrow { width: 16px; height: 16px; }
.btn-submit::after {
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
}
.btn-submit:hover::after { animation: shimmer-btn 0.55s ease; }
.btn-bg, .btn-glow { display: none; }

/* --- Footer --- */
.form-footer {
  display: flex; align-items: center; justify-content: center;
  gap: 0.7rem; padding: 0.65rem 0.9rem;
  background: #111827; border: 1px solid #1e2533; border-radius: 9px;
}
.footer-item {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.7rem; color: #475569;
}
.footer-item svg { width: 12px; height: 12px; color: #64748b; }
.footer-divider { width: 1px; height: 12px; background: #2d3748; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .register-container { flex-direction: column; }
  .register-image { padding: 2rem 1.5rem; border-right: none; border-bottom: 1px solid #1e2533; }
  .register-form  { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .register-image, .register-form { padding: 1.75rem 1rem; }
  .image-title { font-size: 1.2rem; }
  .form-footer { flex-wrap: wrap; gap: 0.5rem; }
  .footer-divider { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* === Slider.razor.css === */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  overflow: hidden;
  background: #0a1a0a;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.1) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(234, 179, 8, 0.08) 0%, transparent 60%);
  animation: gradientPulse 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes gradientPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.particles .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: var(--x);
  top: var(--y);
  animation: particleFloat 20s infinite ease-in-out;
  animation-delay: var(--delay);
}
.particles .particle:nth-child(odd) {
  background: #ea580c;
  box-shadow: 0 0 20px #ea580c, 0 0 40px rgba(0, 217, 255, 0.5);
}
.particles .particle:nth-child(even) {
  background: #ea580c;
  box-shadow: 0 0 20px #ea580c, 0 0 40px rgba(234, 88, 12, 0.5);
}
.particles .particle:nth-child(3n) {
  background: #eab308;
  box-shadow: 0 0 20px #eab308, 0 0 40px rgba(234, 179, 8, 0.5);
}
.particles .particle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  filter: blur(4px);
  transform: scale(3);
  opacity: 0.3;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    transform: translate(50px, -100px) scale(1.2);
  }
  50% {
    transform: translate(-30px, -180px) scale(0.8);
    opacity: 0.6;
  }
  75% {
    transform: translate(40px, -250px) scale(1.1);
  }
  95% {
    opacity: 1;
  }
}
.hero-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ea580c, #eab308, #ea580c, transparent);
  animation: scanLine 4s linear infinite;
  z-index: 5;
}

@keyframes scanLine {
  0% {
    left: -50%;
    top: 0;
  }
  25% {
    left: 100%;
    top: 0;
  }
  25.1% {
    left: 100%;
    top: 100%;
  }
  50% {
    left: -50%;
    top: 100%;
  }
  50.1% {
    left: -50%;
    top: 50%;
    opacity: 0;
  }
  50.2% {
    left: -50%;
    top: 0;
    opacity: 1;
  }
  100% {
    left: -50%;
    top: 0;
  }
}
.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide.active .slide-bg {
  animation: kenBurns 10s ease forwards;
}
.slide.active .slide-icon {
  animation: iconBounce 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s forwards;
}
.slide.active .slide-number {
  animation: numberGlow 0.8s ease 0.3s forwards, numberPulse 3s ease-in-out 1.1s infinite;
}
.slide.active .slide-tag {
  animation: tagSlide 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
}
.slide.active .slide-title .word {
  animation: wordFlip 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.slide.active .slide-title .word:nth-child(1) {
  animation-delay: 0.52s;
}
.slide.active .slide-title .word:nth-child(2) {
  animation-delay: 0.64s;
}
.slide.active .slide-title .word:nth-child(3) {
  animation-delay: 0.76s;
}
.slide.active .slide-title .word:nth-child(4) {
  animation-delay: 0.88s;
}
.slide.active .slide-title .word:nth-child(5) {
  animation-delay: 1s;
}
.slide.active .slide-description {
  animation: descFade 0.9s ease 0.9s forwards;
}
.slide.active .slide-actions {
  animation: actionsBounce 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.1s forwards;
}
.slide.active .floating-shapes .shape-1 {
  animation: shapeOrbit1 12s linear infinite;
}
.slide.active .floating-shapes .shape-2 {
  animation: shapeOrbit2 15s linear infinite reverse;
}
.slide.active .floating-shapes .shape-3 {
  animation: shapePulse 4s ease-in-out infinite;
}
.slide.active .floating-shapes .shape-4 {
  animation: shapeFloat 6s ease-in-out infinite;
}
.slide.prev .slide-bg {
  animation: slideOut 0.8s ease forwards;
}

.slide-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) saturate(1.4) contrast(1.1);
  transform: scale(1.1);
}

@keyframes kenBurns {
  0% {
    transform: scale(1.2) rotate(1deg);
    filter: brightness(0.5) saturate(1.2);
  }
  100% {
    transform: scale(1) rotate(0deg);
    filter: brightness(0.65) saturate(1.4) contrast(1.1);
  }
}
@keyframes slideOut {
  0% {
    transform: scale(1);
    opacity: 1;
    filter: brightness(0.65);
  }
  100% {
    transform: scale(1.1) rotate(-1deg);
    opacity: 0;
    filter: brightness(0.2);
  }
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 30, 15, 0.75) 0%, rgba(0, 50, 30, 0.45) 40%, rgba(20, 60, 40, 0.25) 100%);
}
.slide-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 90%, rgba(0, 217, 255, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 90% 10%, rgba(234, 88, 12, 0.1) 0%, transparent 40%), radial-gradient(ellipse at 50% 50%, rgba(234, 179, 8, 0.08) 0%, transparent 60%);
  animation: overlayShift 8s ease-in-out infinite alternate;
}
.slide-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 20, 10, 0.7) 0%, rgba(0, 20, 10, 0.3) 40%, transparent 70%);
}

@keyframes overlayShift {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}
.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.content-wrapper {
  max-width: 850px;
}

.slide-icon {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, #ea580c, #ea580c);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  opacity: 0;
  transform: scale(0) rotate(-180deg);
  box-shadow: 0 20px 50px rgba(0, 217, 255, 0.5), 0 0 30px rgba(0, 217, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
}
.slide-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 28px;
  background: linear-gradient(135deg, #eab308, #ea580c, #ea580c);
  z-index: -1;
  animation: iconRing 3s linear infinite;
}
.slide-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, #ea580c, #ea580c);
}
.slide-icon svg {
  width: 42px;
  height: 42px;
  color: white;
  position: relative;
  z-index: 2;
}

@keyframes iconBounce {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  70% {
    transform: scale(0.9) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes iconRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.slide-number {
  display: inline-block;
  font-size: 6rem;
  font-weight: 900;
  position: absolute;
  right: 8%;
  top: 15%;
  opacity: 0;
  transform: translateX(-50px);
  background: linear-gradient(135deg, #ea580c, #eab308);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.5));
}
@media (min-width: 1024px) {
  .slide-number {
    font-size: 14rem;
  }
}

@keyframes numberGlow {
  0% {
    opacity: 0;
    transform: translateX(-50px) scale(0.5);
  }
  100% {
    opacity: 0.3;
    transform: translateX(0) scale(1);
  }
}
@keyframes numberPulse {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 60px rgba(234, 179, 8, 0.8));
  }
}
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.25), rgba(234, 179, 8, 0.15));
  border: 1px solid rgba(0, 217, 255, 0.4);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateX(-80px) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}
.slide-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #eab308, #ea580c);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 15px #eab308;
}

@keyframes tagSlide {
  0% {
    opacity: 0;
    transform: translateX(-80px) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}
@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 15px #eab308;
  }
  50% {
    transform: scale(1.4);
    box-shadow: 0 0 25px #ea580c;
  }
}
.slide-title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
  color: white;
}
.slide-title .word {
  display: inline-block;
  margin-right: 12px;
  opacity: 0;
  transform: translateY(80px) rotateX(-90deg) scale(0.5);
  transform-origin: bottom center;
  background: linear-gradient(180deg, #ffffff 0%, #ea580c 50%, #eab308 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.5));
}

@keyframes wordFlip {
  0% {
    opacity: 0;
    transform: translateY(80px) rotateX(-90deg) scale(0.5);
  }
  60% {
    transform: translateY(-10px) rotateX(10deg) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}
.slide-description {
  font-size: 1.2rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateY(40px);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

@keyframes descFade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
}

@keyframes actionsBounce {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  60% {
    transform: translateY(-8px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 42px;
  background: linear-gradient(135deg, #ea580c, #ea580c);
  border: none;
  border-radius: 60px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ea580c, #eab308);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-primary span, .btn-primary svg {
  position: relative;
  z-index: 1;
}
.btn-primary svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 25px 50px rgba(234, 88, 12, 0.5);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}
.btn-primary:hover svg {
  transform: translateX(6px);
  animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(12px);
  }
}
.btn-secondary {
  padding: 18px 42px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 217, 255, 0.6);
  border-radius: 60px;
  color: #ea580c;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(234, 179, 8, 0.1));
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-secondary:hover {
  border-color: #ea580c;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}
.btn-secondary:hover::before {
  transform: translateX(0);
}

.floating-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
}
.floating-shapes .shape-1 {
  width: 350px;
  height: 350px;
  right: -50px;
  top: -50px;
  background: conic-gradient(from 0deg, rgba(0, 217, 255, 0.15), rgba(234, 179, 8, 0.1), rgba(234, 88, 12, 0.1), rgba(0, 217, 255, 0.15));
  border: 2px solid rgba(0, 217, 255, 0.2);
}
.floating-shapes .shape-2 {
  width: 280px;
  height: 280px;
  right: 15%;
  bottom: 5%;
  background: conic-gradient(from 180deg, rgba(234, 88, 12, 0.1), rgba(234, 179, 8, 0.15), rgba(0, 217, 255, 0.1), rgba(234, 88, 12, 0.1));
  border: 2px solid rgba(234, 88, 12, 0.2);
}
.floating-shapes .shape-3 {
  width: 120px;
  height: 120px;
  left: 25%;
  top: 12%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.3), transparent 70%);
  box-shadow: 0 0 60px rgba(234, 179, 8, 0.4);
}
.floating-shapes .shape-4 {
  width: 80px;
  height: 80px;
  right: 35%;
  top: 60%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.4), transparent 70%);
  box-shadow: 0 0 40px rgba(234, 88, 12, 0.3);
}

@keyframes shapeOrbit1 {
  0% {
    transform: rotate(0deg) translateX(20px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(20px) rotate(-360deg);
  }
}
@keyframes shapeOrbit2 {
  0% {
    transform: rotate(0deg) translateY(15px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateY(15px) rotate(-360deg);
  }
}
@keyframes shapePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}
@keyframes shapeFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(15px, -20px);
  }
  50% {
    transform: translate(-10px, -35px);
  }
  75% {
    transform: translate(20px, -15px);
  }
}
.slider-controls {
  position: absolute;
  bottom: 40px;
  right: 8%;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.nav-btn {
  position: relative;
  width: 58px;
  height: 58px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 217, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea580c;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}
.nav-btn svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.nav-btn .btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ea580c, #eab308);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-btn:hover {
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}
.nav-btn:hover .btn-bg {
  transform: scale(1);
}
.nav-btn:hover.prev svg {
  transform: translateX(-4px);
}
.nav-btn:hover.next svg {
  transform: translateX(4px);
}

.slide-indicators {
  position: absolute;
  left: 8%;
  bottom: 40px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.indicator {
  position: relative;
  width: 50px;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}
.indicator .indicator-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ea580c, #eab308, #ea580c);
  border-radius: 3px;
}
.indicator .indicator-number {
  position: absolute;
  bottom: 18px;
  left: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.indicator:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scaleY(1.5);
}
.indicator:hover .indicator-number {
  opacity: 1;
  transform: translateY(0);
}
.indicator.active {
  width: 90px;
}
.indicator.active .indicator-progress {
  animation: progressFill 6s linear forwards;
}
.indicator.active .indicator-number {
  opacity: 1;
  transform: translateY(0);
  color: #ea580c;
}

@keyframes progressFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.slide-counter {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  font-weight: 800;
}
.slide-counter .current {
  font-size: 2.8rem;
  background: linear-gradient(180deg, #ea580c, #eab308);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}
.slide-counter .separator {
  width: 3px;
  height: 45px;
  background: linear-gradient(to bottom, #ea580c, #ea580c);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}
.slide-counter .total {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
  color: rgba(141, 198, 63, 0.8);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: floatBounce 2.5s ease-in-out infinite;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.scroll-indicator .mouse {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(0, 217, 255, 0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
}
.scroll-indicator .mouse .wheel {
  width: 4px;
  height: 10px;
  background: linear-gradient(to bottom, #ea580c, #eab308);
  border-radius: 2px;
  animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes floatBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-12px);
  }
}
@keyframes wheelScroll {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(8px);
  }
}
@media (max-width: 1024px) {
  .slide-content {
    padding: 0 5%;
  }
  .slide-counter {
    display: none;
  }
  .slider-controls {
    right: 5%;
  }
  .slide-indicators {
    left: 5%;
  }
  .slide-number {
    right: 5%;
  }
}
@media (max-width: 768px) {
  .hero-slider {
    height: calc(100svh - 70px);
  }
  .slide-content {
    padding: 0 5%;
    align-items: flex-start;
    padding-top: 15%;
  }
  .slide-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    margin-bottom: 20px;
  }
  .slide-icon svg {
    width: 32px;
    height: 32px;
  }
  .slide-icon::before {
    inset: -3px;
    border-radius: 21px;
  }
  .slide-tag {
    padding: 10px 20px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
  .slide-title .word {
    margin-right: 8px;
  }
  .slide-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .slide-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    padding: 16px 32px;
    width: 100%;
    justify-content: center;
  }
  .slider-controls {
    bottom: 25px;
  }
  .nav-btn {
    width: 48px;
    height: 48px;
  }
  .nav-btn svg {
    width: 20px;
    height: 20px;
  }
  .slide-indicators {
    left: 50%;
    transform: translateX(-50%);
    bottom: 90px;
  }
  .indicator {
    width: 35px;
  }
  .indicator.active {
    width: 55px;
  }
  .indicator .indicator-number {
    display: none;
  }
  .scroll-indicator {
    display: none;
  }
  .slide-number {
    display: none;
  }
  .floating-shapes .shape-1 {
    width: 180px;
    height: 180px;
    right: -40px;
    top: -40px;
  }
  .floating-shapes .shape-2 {
    width: 140px;
    height: 140px;
  }
  .floating-shapes .shape-3 {
    width: 80px;
    height: 80px;
  }
  .floating-shapes .shape-4 {
    display: none;
  }
  .particles .particle {
    width: 4px;
    height: 4px;
  }
}


/* === sanphamdichvu.css === */
/* === ANIMATIONS === */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes data-stream {
  0% { transform: translateY(-100%) translateX(-50%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(100vh) translateX(50%); opacity: 0; }
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}
@keyframes number-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: 0.3; }
}
@keyframes hex-pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.1); opacity: 0.2; }
}
@keyframes bar-grow {
  from { height: 0; }
  to { height: var(--height); }
}
@keyframes ring-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes particle-orbit {
  0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}
@keyframes card-glow-pulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.5; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(50px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* === MAIN CONTAINER === */
.accounting-services-pro {
  min-height: 100vh;
  background: linear-gradient(180deg, #0a1628 0%, #1a2744 50%, #0f1d32 100%);
  position: relative;
  overflow-x: hidden;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 13px;
  color: #ffffff;
}

/* === BACKGROUND ELEMENTS === */
.bg-elements {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.data-stream {
  position: absolute;
  width: 2px; height: 100px;
  background: linear-gradient(180deg, transparent, #00d9ff, transparent);
  opacity: 0.3;
}
.data-stream.stream-1 { left: 10%; animation: data-stream 8s linear infinite; }
.data-stream.stream-2 { left: 30%; animation: data-stream 12s linear infinite 2s; }
.data-stream.stream-3 { right: 20%; animation: data-stream 10s linear infinite 4s; }
.floating-numbers {
  position: absolute;
  width: 100%; height: 100%;
}
.floating-numbers .number {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ea580c;
  opacity: 0.1;
  animation: number-float 10s ease-in-out infinite;
}
.circuit-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(0,217,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,217,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 5% 80px;
  gap: 60px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .hero-section { flex-direction: column; text-align: center; padding: 120px 20px 60px; }
}
.hero-bg-animation {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden; z-index: 0;
}
.hex-grid { position: absolute; width: 100%; height: 100%; }
.hex-grid .hex {
  position: absolute;
  width: 60px; height: 60px;
  background: transparent;
  border: 1px solid rgba(234,88,12,0.1);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hex-pulse 4s ease-in-out infinite;
  opacity: 0.1;
}
.hero-content {
  flex: 1; max-width: 700px;
  position: relative; z-index: 2;
}
@media (max-width: 1200px) { .hero-content { max-width: 100%; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(234,88,12,0.2), rgba(234,108,16,0.1));
  border: 1px solid rgba(234,88,12,0.3);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; color: #fed7aa;
  margin-bottom: 20px; backdrop-filter: blur(10px);
}
.hero-badge i { color: #ea580c; }

.hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.hero-title .title-line { display: block; color: #ffffff; }
.hero-title .title-line:first-child { font-size: 0.6em; font-weight: 400; color: #cbd5e1; margin-bottom: 10px; }
.hero-title .title-line:last-child {
  background: linear-gradient(90deg, #cbd5e1, #ffffff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title .title-highlight { display: flex; align-items: center; gap: 20px; margin: 10px 0; }
@media (max-width: 1200px) { .hero-title .title-highlight { justify-content: center; } }
.hero-title .title-highlight .highlight-text {
  background: linear-gradient(135deg, #ea580c, #fed7aa, #ea580c);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 3s linear infinite;
}
.hero-title .title-highlight .highlight-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #ea580c, #ea580c);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(234,88,12,0.3);
}
.hero-title .title-highlight .highlight-icon i { font-size: 1.1rem; color: #0a1628; }

.hero-description { font-size: 0.92rem; color: #cbd5e1; line-height: 1.7; margin-bottom: 25px; }
.hero-description .ai-icon { color: #00d9ff; margin-right: 10px; animation: pulse-glow 2s ease-in-out infinite; }
.hero-description strong { color: #00d9ff; }

.hero-stats {
  display: flex; align-items: center; gap: 20px; margin-bottom: 30px;
  padding: 18px 22px; background: rgba(255,255,255,0.03);
  border-radius: 14px; border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(10px);
}
@media (max-width: 768px) { .hero-stats { flex-direction: column; gap: 20px; } }

.stat-item { flex: 1; text-align: center; position: relative; }
.stat-item .stat-number {
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, #ea580c, #fed7aa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 3px;
}
.stat-item .stat-label { font-size: 0.75rem; color: #94a3b8; font-weight: 500; }
.stat-item .stat-icon {
  position: absolute; top: -8px; right: 15%;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #00d9ff, #00b8d9);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.stat-item .stat-icon i { font-size: 0.65rem; color: #0a1628; }

.stat-divider { width: 1px; height: 50px; background: linear-gradient(180deg, transparent, #64748b, transparent); }
@media (max-width: 768px) { .stat-divider { width: 60%; height: 1px; background: linear-gradient(90deg, transparent, #64748b, transparent); } }

.hero-cta { display: flex; gap: 20px; }
@media (max-width: 768px) { .hero-cta { flex-direction: column; } }

.cta-primary {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, #ea580c, #ea580c);
  border: none; border-radius: 9px; color: #0a1628;
  font-size: 0.88rem; font-weight: 700; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 18px rgba(234,88,12,0.35);
}
.cta-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 30px rgba(234,88,12,0.5); }
.cta-primary i { font-size: 0.95rem; }

.cta-secondary {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 9px; color: #ffffff;
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s ease;
}
.cta-secondary:hover { background: rgba(255,255,255,0.1); border-color: #00d9ff; color: #00d9ff; }

/* === HERO VISUAL === */
.hero-visual { flex: 1; max-width: 550px; position: relative; z-index: 2; }
@media (max-width: 1200px) { .hero-visual { max-width: 100%; width: 100%; } }

.dashboard-mockup {
  background: linear-gradient(145deg, rgba(45,63,95,0.8), rgba(10,22,40,0.9));
  border-radius: 24px; border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 60px rgba(0,217,255,0.1);
  backdrop-filter: blur(20px);
}
.mockup-header {
  display: flex; align-items: center; gap: 15px;
  padding: 15px 20px;
  background: rgba(10,22,40,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-header .mockup-dots { display: flex; gap: 8px; }
.mockup-header .mockup-dots span { width: 12px; height: 12px; border-radius: 50%; }
.mockup-header .mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-header .mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-header .mockup-dots span:nth-child(3) { background: #00d9ff; }
.mockup-header .mockup-title { font-size: 0.9rem; color: #94a3b8; font-weight: 500; }
.mockup-content { padding: 30px; }
.chart-area { margin-bottom: 20px; }
.chart-bars {
  display: flex; align-items: flex-end; justify-content: space-between;
  height: 120px; padding: 0 10px;
}
.chart-bars .bar {
  width: 12%; height: var(--height);
  background: linear-gradient(180deg, #00d9ff, #00b8d9);
  border-radius: 6px 6px 0 0;
  animation: bar-grow 1.5s ease-out forwards;
}
.chart-bars .bar:nth-child(odd) { background: linear-gradient(180deg, #ea580c, #ea580c); }
.data-cards { display: flex; gap: 15px; }
.mini-card {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 15px; background: rgba(255,255,255,0.05);
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.05);
}
.mini-card i { font-size: 1.2rem; }
.mini-card span { font-size: 0.9rem; font-weight: 600; }
.mini-card.revenue i, .mini-card.revenue span { color: #00d9ff; }
.mini-card.tax i { color: #ea580c; }
.mini-card.tax span { color: #fed7aa; }

/* ============================================================
   SERVICES NAV — Filter tabs
   ============================================================ */
.services-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,12,26,0.96); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,217,255,0.08);
  padding: 12px 0;
}
.nav-container {
  max-width: 1400px; margin: 0 auto; padding: 0 20px;
  display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none;
}
.nav-container::-webkit-scrollbar { display: none; }

.nav-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px; color: #64748b;
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}
.nav-btn .nb-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
  flex-shrink: 0;
}
.nav-btn .nb-icon i { font-size: 0.7rem; }
.nav-btn:hover { color: #e2e8f0; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); transform: translateY(-1px); }
.nav-btn.active {
  background: linear-gradient(135deg, #ea580c, #ea580c);
  color: #fff; border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(234,88,12,0.45), 0 0 0 1px rgba(234,88,12,0.3);
}
.nav-btn.active .nb-icon { background: rgba(255,255,255,0.2); }

/* Ripple on click */
.nb-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  width: 0; height: 0; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.nav-btn:active .nb-ripple {
  animation: nb-ripple-anim 0.5s ease-out forwards;
}
@keyframes nb-ripple-anim {
  to { width: 200px; height: 200px; opacity: 0; }
}

/* ============================================================
   SERVICES SECTION — background, header, stagger
   ============================================================ */
.services-section {
  position: relative; z-index: 1;
  padding: 60px 20px 50px; max-width: 1600px; margin: 0 auto;
  overflow: hidden;
}

/* Floating background particles */
.sv-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.sv-particle {
  position: absolute; border-radius: 50%;
  background: rgba(0,217,255,0.5);
  animation: sv-float-up linear infinite;
}
/* Generate 18 particles with staggered sizes/positions */
.sv-particle.p-0  { width:3px;height:3px; left:5%;   animation-duration:12s; animation-delay:0s;    }
.sv-particle.p-1  { width:2px;height:2px; left:12%;  animation-duration:15s; animation-delay:1.2s;  background:rgba(234,88,12,0.5); }
.sv-particle.p-2  { width:4px;height:4px; left:20%;  animation-duration:10s; animation-delay:2.5s;  }
.sv-particle.p-3  { width:2px;height:2px; left:28%;  animation-duration:18s; animation-delay:0.7s;  background:rgba(234,88,12,0.4); }
.sv-particle.p-4  { width:3px;height:3px; left:35%;  animation-duration:13s; animation-delay:3s;    }
.sv-particle.p-5  { width:5px;height:5px; left:42%;  animation-duration:16s; animation-delay:1.8s;  background:rgba(234,88,12,0.3); }
.sv-particle.p-6  { width:2px;height:2px; left:50%;  animation-duration:11s; animation-delay:0.4s;  }
.sv-particle.p-7  { width:3px;height:3px; left:58%;  animation-duration:14s; animation-delay:2.2s;  background:rgba(234,88,12,0.5); }
.sv-particle.p-8  { width:4px;height:4px; left:65%;  animation-duration:9s;  animation-delay:1s;    }
.sv-particle.p-9  { width:2px;height:2px; left:72%;  animation-duration:17s; animation-delay:3.5s;  background:rgba(234,88,12,0.4); }
.sv-particle.p-10 { width:3px;height:3px; left:78%;  animation-duration:12s; animation-delay:0.9s;  }
.sv-particle.p-11 { width:2px;height:2px; left:85%;  animation-duration:20s; animation-delay:2s;    background:rgba(234,88,12,0.3); }
.sv-particle.p-12 { width:4px;height:4px; left:90%;  animation-duration:13s; animation-delay:4s;    }
.sv-particle.p-13 { width:2px;height:2px; left:8%;   animation-duration:11s; animation-delay:1.5s;  background:rgba(249,115,22,0.5); }
.sv-particle.p-14 { width:3px;height:3px; left:22%;  animation-duration:16s; animation-delay:2.8s;  background:rgba(249,115,22,0.4); }
.sv-particle.p-15 { width:2px;height:2px; left:48%;  animation-duration:14s; animation-delay:0.6s;  background:rgba(249,115,22,0.5); }
.sv-particle.p-16 { width:4px;height:4px; left:68%;  animation-duration:19s; animation-delay:3.2s;  background:rgba(249,115,22,0.4); }
.sv-particle.p-17 { width:3px;height:3px; left:88%;  animation-duration:10s; animation-delay:1.7s;  background:rgba(249,115,22,0.5); }
@keyframes sv-float-up {
  0%   { bottom: -10px; opacity: 0;   transform: translateX(0) scale(0.5); }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { bottom: 105%; opacity: 0;   transform: translateX(20px) scale(1.2); }
}

/* Background glow orbs */
.sv-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); z-index: 0;
}
.sv-orb-a {
  width: 400px; height: 400px; top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(234,88,12,0.06) 0%, transparent 70%);
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.sv-orb-b {
  width: 500px; height: 500px; bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(0,217,255,0.06) 0%, transparent 70%);
  animation: orb-drift 24s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(60px, 40px); }
}

/* Section header reveal */
.section-header {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 40px;
}
.header-line {
  flex: 1; max-width: 180px; height: 1px;
  background: transparent;
}
.header-line.hl-left {
  background: linear-gradient(90deg, transparent, rgba(234,88,12,0.6));
  animation: hl-grow-left 1s ease-out 0.2s both;
}
.header-line.hl-right {
  background: linear-gradient(90deg, rgba(0,217,255,0.6), transparent);
  animation: hl-grow-right 1s ease-out 0.2s both;
}
@keyframes hl-grow-left  { from { transform: scaleX(0); transform-origin: right; } to { transform: scaleX(1); } }
@keyframes hl-grow-right { from { transform: scaleX(0); transform-origin: left;  } to { transform: scaleX(1); } }

.section-title {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem); font-weight: 800; color: #ffffff; text-align: center;
}
.st-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(234,88,12,0.25), rgba(234,88,12,0.1));
  border: 1px solid rgba(234,88,12,0.3);
  display: flex; align-items: center; justify-content: center;
  animation: st-icon-pop 0.6s cubic-bezier(.34,1.56,.64,1) 0.3s both;
}
.st-icon i { color: #ea580c; font-size: 1rem; }
@keyframes st-icon-pop {
  from { transform: scale(0) rotate(-30deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg);   opacity: 1; }
}
.st-word {
  display: inline-block;
  animation: st-word-rise 0.6s cubic-bezier(.22,.68,0,1.2) both;
}
.st-word:nth-child(2) { animation-delay: 0.4s; }
.st-word:nth-child(3) { animation-delay: 0.55s; }
.st-word:nth-child(4) { animation-delay: 0.7s; }
@keyframes st-word-rise {
  from { opacity: 0; transform: translateY(20px) blur(4px); }
  to   { opacity: 1; transform: translateY(0)    blur(0px); }
}
.st-accent {
  background: linear-gradient(135deg, #ea580c, #00d9ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.st-accent::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #ea580c, #00d9ff);
  animation: underline-grow 0.5s ease-out 1.1s both;
  transform-origin: left;
}
@keyframes underline-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Card stagger enter */
.sc-enter {
  animation: sc-fade-in 0.55s cubic-bezier(.22,.68,0,1.15) var(--delay, 0ms) both;
}
@keyframes sc-fade-in {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* ============================================================
   SERVICE CARDS — Compact Glass + Strong Animations
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; gap: 14px; } }

/* ── Card shell ── */
.service-card {
  position: relative;
  background: linear-gradient(145deg, rgba(10,20,42,0.92), rgba(5,12,28,0.96));
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  display: flex; flex-direction: column; gap: 0;
  padding-bottom: 18px;
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2),
              box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(234,88,12,0.3);
}

/* Card stagger enter */
.sc-enter {
  animation: sc-fade-in 0.6s cubic-bezier(.22,.68,0,1.15) var(--delay, 0ms) both;
}
@keyframes sc-fade-in {
  from { opacity: 0; transform: translateY(40px) scale(0.94) rotateX(8deg); }
  to   { opacity: 1; transform: translateY(0)    scale(1)    rotateX(0deg); }
}

/* ── Accent bar — chạy ngang liên tục ── */
.service-card .card-accent {
  height: 3px; width: 100%;
  background: linear-gradient(90deg, transparent, #ea580c, #f97316, #ea580c, transparent);
  background-size: 300% 100%; background-position: 100% 0%;
  animation: accent-run 2.2s ease-in-out infinite;
}
@keyframes accent-run {
  0%   { background-position: 150% 0%; opacity: 0.7; }
  50%  { background-position: 0%   0%; opacity: 1;   }
  100% { background-position: -150% 0%; opacity: 0.7; }
}

/* ── Big number depth ── */
.service-card .card-num {
  position: absolute; right: 12px; bottom: 10px;
  font-size: 5rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.025); font-family: 'Courier New', monospace;
  pointer-events: none; user-select: none; z-index: 0;
  transition: color 0.4s ease;
}
.service-card:hover .card-num { color: rgba(234,88,12,0.055); }

/* ══════════════════════════════════════
   CARD HEAD — icon + title ngang
   ══════════════════════════════════════ */
.service-card .card-head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 18px 10px; position: relative; z-index: 2;
}

/* Icon wrapper */
.service-card .icon-hero {
  position: relative; flex-shrink: 0;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
}

/* Glow halo thở */
.service-card .icon-bg-glow {
  position: absolute; inset: -10px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,0.35) 0%, rgba(0,217,255,0.2) 50%, transparent 75%);
  filter: blur(10px);
  animation: glow-breathe 2.4s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes glow-breathe {
  from { opacity: 0.4; transform: scale(0.85); }
  to   { opacity: 1;   transform: scale(1.15); }
}

/* Orbit ring xoay */
.service-card .icon-orbit {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px dashed rgba(234,88,12,0.4);
  animation: orbit-spin 7s linear infinite;
  will-change: transform;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

/* Icon box chính */
.service-card .icon-box {
  position: relative; z-index: 2;
  width: 54px; height: 54px; border-radius: 16px;
  background: radial-gradient(circle at 35% 35%, #00d9ff 0%, #ea580c 55%, #9a3412 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(234,88,12,0.5), 0 0 14px rgba(0,217,255,0.3);
  animation: icon-float 2.8s ease-in-out infinite alternate,
             icon-pulse 2.8s ease-in-out infinite;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s ease;
  will-change: transform, box-shadow;
}
.service-card .icon-box i {
  font-size: 1.3rem; color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes icon-float {
  from { transform: translateY(0);   }
  to   { transform: translateY(-6px); }
}
@keyframes icon-pulse {
  0%,100% { box-shadow: 0 6px 22px rgba(234,88,12,0.5), 0 0 14px rgba(0,217,255,0.3), 0 0 0 0 rgba(234,88,12,0.5); }
  55%     { box-shadow: 0 6px 22px rgba(234,88,12,0.5), 0 0 20px rgba(0,217,255,0.4), 0 0 0 12px rgba(234,88,12,0); }
}

.service-card:hover .icon-box {
  transform: scale(1.18) rotate(-8deg) translateY(-3px);
  box-shadow: 0 12px 36px rgba(234,88,12,0.7), 0 0 28px rgba(0,217,255,0.4);
  animation: none;
}
.service-card:hover .icon-box i { transform: scale(1.1) rotate(8deg); }
.service-card:hover .icon-orbit { animation-duration: 2s; border-color: rgba(234,88,12,0.8); }

/* Sparks */
.service-card .icon-spark {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: #ea580c; opacity: 0; z-index: 3;
  animation: spark-pop 2.5s ease-in-out infinite;
}
.service-card .s1 { top: 8px;  left: 8px;  animation-delay: 0s;   --dx: -8px;  --dy: -10px; }
.service-card .s2 { top: 6px;  right: 8px; animation-delay: 0.8s; --dx:  8px;  --dy: -12px; background: #00d9ff; }
.service-card .s3 { bottom: 6px; left: 50%; animation-delay: 1.6s; --dx:  4px;  --dy:  10px; background: #f97316; }
@keyframes spark-pop {
  0%   { opacity: 0; transform: translate(0,0) scale(1); }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0.1); }
}

/* Card meta: category + title */
.service-card .card-meta {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.service-card .category-tag {
  display: inline-flex; align-items: center; gap: 4px; align-self: flex-start;
  padding: 2px 8px; border-radius: 20px;
  font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px;
}
.service-card .category-tag i { font-size: 0.52rem; }
.service-card .category-tag.accounting { background: rgba(234,88,12,0.15); color: #fdba74; border: 1px solid rgba(234,88,12,0.28); }
.service-card .category-tag.software   { background: rgba(0,217,255,0.12);  color: #67e8f9; border: 1px solid rgba(0,217,255,0.22); }
.service-card .category-tag.consulting { background: rgba(0,217,255,0.12);  color: #67e8f9; border: 1px solid rgba(0,217,255,0.22); }

.service-card .service-title {
  font-size: 0.82rem; font-weight: 700; color: #e8f0ff;
  line-height: 1.3; transition: color 0.3s ease;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.service-card:hover .service-title { color: #fdba74; }

/* ── Description ── */
.service-card .service-desc {
  font-size: 0.72rem; color: #4e6080; line-height: 1.55;
  padding: 0 18px 10px; position: relative; z-index: 2;
  transition: color 0.3s ease;
}
.service-card:hover .service-desc { color: #64748b; }

/* ── Feature chips inline ── */
.service-card .feature-chips {
  list-style: none; padding: 0 18px; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 4px;
  position: relative; z-index: 2;
}
.service-card .feature-chips li {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.7rem; color: #475569;
  padding: 4px 8px; border-radius: 6px;
  background: rgba(255,255,255,0.025);
  border-left: 2px solid rgba(234,88,12,0.35);
  transition: background 0.25s ease, border-color 0.25s ease,
              color 0.25s ease, transform 0.3s ease;
}
.service-card .feature-chips li i { font-size: 0.58rem; color: #ea580c; flex-shrink: 0; }
.service-card:hover .feature-chips li          { color: #94a3b8; background: rgba(234,88,12,0.05); border-color: rgba(234,88,12,0.6); }
.service-card:hover .feature-chips li:nth-child(1) { transform: translateX(4px); transition-delay: 0s; }
.service-card:hover .feature-chips li:nth-child(2) { transform: translateX(4px); transition-delay: 0.07s; }
.service-card:hover .feature-chips li:nth-child(3) { transform: translateX(4px); transition-delay: 0.14s; }

/* ── Card footer ── */
.service-card .card-footer {
  display: flex; align-items: center; gap: 8px;
  padding: 0 18px; margin-top: auto; position: relative; z-index: 2;
}

/* Button — scan + gradient slide */
.service-card .btn-explore {
  flex: 1; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px 14px; border: none; border-radius: 10px; cursor: pointer;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.2px;
  background: radial-gradient(ellipse at 20% 50%, #00d9ff 0%, #ea580c 50%, #9a3412 100%);
  background-size: 220% 100%; background-position: 100% 0%;
  color: #fff;
  box-shadow: 0 4px 16px rgba(234,88,12,0.45), 0 0 10px rgba(0,217,255,0.2);
  transition: background-position 0.5s ease, box-shadow 0.3s ease, transform 0.25s ease;
}
.service-card .btn-explore::before {
  content: ''; position: absolute;
  top: 0; left: -70%; width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg); pointer-events: none;
  transition: left 0s;
}
.service-card .btn-explore:hover::before  { left: 130%; transition: left 0.5s ease; }
.service-card .btn-explore:hover {
  background-position: 0% 0%;
  box-shadow: 0 7px 24px rgba(234,88,12,0.55), 0 0 20px rgba(0,217,255,0.3);
  transform: translateY(-2px);
}
.service-card .btn-explore i { font-size: 0.68rem; transition: transform 0.3s cubic-bezier(.34,1.56,.64,1); }
.service-card .btn-explore:hover i { transform: translateX(5px) scale(1.25); }
.service-card .btn-explore:active { transform: scale(0.97); }

/* Quick buttons */
.service-card .quick-actions { display: flex; gap: 5px; }
.service-card .quick-btn {
  position: relative; overflow: hidden;
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: #2d3f5c; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.25s, border-color 0.25s, transform 0.2s;
}
.service-card .quick-btn i { font-size: 0.66rem; position: relative; z-index: 1; }
.service-card .quick-btn::after {
  content: ''; position: absolute; inset: 0; border-radius: 9px;
  background: radial-gradient(circle, rgba(0,217,255,0.2) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.25s ease;
}
.service-card .quick-btn:hover { color: #00d9ff; border-color: rgba(0,217,255,0.3); transform: translateY(-2px); }
.service-card .quick-btn:hover::after { opacity: 1; }

/* Shine overlay on hover */
.service-card .card-shine {
  position: absolute; inset: 0; border-radius: 18px; pointer-events: none; z-index: 1;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.05) 0%, transparent 40%,
    rgba(0,217,255,0.03) 70%, rgba(234,88,12,0.03) 100%);
  opacity: 0; transition: opacity 0.4s ease;
}
.service-card:hover .card-shine { opacity: 1; }

/* ══════════════════════════════════════
   nth-child 3-way accent
   ══════════════════════════════════════ */
/* ODD — cam */
.service-card:nth-child(odd):hover {
  border-color: rgba(234,88,12,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(234,88,12,0.18);
}

/* EVEN — cyan */
.service-card:nth-child(even) .card-accent {
  background: linear-gradient(90deg, transparent, #00d9ff, #39e8ff, #00d9ff, transparent);
  background-size: 300% 100%;
}
.service-card:nth-child(even) .icon-bg-glow {
  background: radial-gradient(circle, rgba(0,217,255,0.32) 0%, rgba(57,232,255,0.15) 55%, transparent 75%);
}
.service-card:nth-child(even) .icon-orbit { border-color: rgba(0,217,255,0.5); }
.service-card:nth-child(even) .icon-box {
  background: radial-gradient(circle at 35% 35%, #b0f4ff 0%, #00d9ff 45%, #0094b3 100%);
  box-shadow: 0 6px 22px rgba(0,217,255,0.5), 0 0 14px rgba(57,232,255,0.3);
  animation: icon-float 2.8s ease-in-out infinite alternate, icon-pulse-cyan 2.8s ease-in-out infinite;
}
@keyframes icon-pulse-cyan {
  0%,100% { box-shadow: 0 6px 22px rgba(0,217,255,0.5), 0 0 14px rgba(57,232,255,0.3), 0 0 0 0 rgba(0,217,255,0.5); }
  55%     { box-shadow: 0 6px 22px rgba(0,217,255,0.5), 0 0 22px rgba(57,232,255,0.4), 0 0 0 12px rgba(0,217,255,0); }
}
.service-card:nth-child(even):hover .icon-box {
  background: radial-gradient(circle at 35% 35%, #fff 0%, #00d9ff 45%, #0094b3 100%);
  box-shadow: 0 12px 36px rgba(0,217,255,0.7), 0 0 28px rgba(57,232,255,0.45);
}
.service-card:nth-child(even) .icon-spark { background: #00d9ff; }
.service-card:nth-child(even) .s2 { background: #ea580c; }
.service-card:nth-child(even) .feature-chips li { border-color: rgba(0,217,255,0.3); }
.service-card:nth-child(even) .feature-chips li i { color: #00d9ff; }
.service-card:nth-child(even):hover .feature-chips li { background: rgba(0,217,255,0.05); border-color: rgba(0,217,255,0.6); }
.service-card:nth-child(even) .btn-explore {
  background: radial-gradient(ellipse at 20% 50%, #b0f4ff 0%, #00d9ff 50%, #0094b3 100%);
  background-size: 220% 100%; background-position: 100% 0%;
  color: #020d1a;
  box-shadow: 0 4px 16px rgba(0,217,255,0.45), 0 0 10px rgba(57,232,255,0.2);
}
.service-card:nth-child(even) .btn-explore:hover {
  box-shadow: 0 7px 24px rgba(0,217,255,0.6), 0 0 22px rgba(57,232,255,0.35);
}
.service-card:nth-child(even):hover { border-color: rgba(0,217,255,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0,217,255,0.15); }
.service-card:nth-child(even):hover .service-title { color: #67e8f9; }

/* 3n — gold warm accent */
.service-card:nth-child(3n) .card-accent {
  background: linear-gradient(90deg, transparent, #f97316, #fdba74, #f97316, transparent);
  background-size: 300% 100%;
}
.service-card:nth-child(3n) .icon-orbit { border-color: rgba(249,115,22,0.5); }
.service-card:nth-child(3n) .icon-box {
  background: radial-gradient(circle at 35% 35%, #fff5e6 0%, #f97316 45%, #ea580c 100%);
  box-shadow: 0 6px 22px rgba(249,115,22,0.5), 0 0 14px rgba(0,217,255,0.25);
  animation: icon-float 2.8s ease-in-out infinite alternate, icon-pulse-warm 2.8s ease-in-out infinite;
}
@keyframes icon-pulse-warm {
  0%,100% { box-shadow: 0 6px 22px rgba(249,115,22,0.5), 0 0 14px rgba(0,217,255,0.25), 0 0 0 0 rgba(249,115,22,0.5); }
  55%     { box-shadow: 0 6px 22px rgba(249,115,22,0.5), 0 0 20px rgba(0,217,255,0.35), 0 0 0 12px rgba(249,115,22,0); }
}
.service-card:nth-child(3n):hover { border-color: rgba(249,115,22,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(249,115,22,0.18); }
.service-card:nth-child(3n):hover .service-title { color: #fdba74; }
.service-card:nth-child(3n) .feature-chips li { border-color: rgba(249,115,22,0.35); }
.service-card:nth-child(3n) .feature-chips li i { color: #f97316; }
.service-card:nth-child(3n):hover .feature-chips li { border-color: rgba(249,115,22,0.7); background: rgba(249,115,22,0.06); }
.service-card:nth-child(3n) .btn-explore {
  background: radial-gradient(ellipse at 20% 50%, #00d9ff 0%, #f97316 50%, #ea580c 100%);
  background-size: 220% 100%; background-position: 100% 0%;
  box-shadow: 0 4px 16px rgba(249,115,22,0.45), 0 0 10px rgba(0,217,255,0.2);
}
.service-card:nth-child(3n) .btn-explore:hover { box-shadow: 0 7px 24px rgba(249,115,22,0.6), 0 0 20px rgba(0,217,255,0.3); }



/* ── Top accent bar ── */
.service-card .card-accent {
  height: 3px; width: 100%;
  background: linear-gradient(90deg, #ea580c, #f97316 50%, #ea580c);
  background-size: 200% 100%;
  animation: accent-slide 2.5s linear infinite;
}
@keyframes accent-slide { to { background-position: 200% 0%; } }

/* ── Number depth ── */
.service-card .card-num {
  position: absolute; right: 14px; top: 60px;
  font-size: 5.5rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.028); font-family: 'Courier New', monospace;
  pointer-events: none; user-select: none; z-index: 0;
}

/* ══════════════════════════════════════
   ICON HERO — nhân vật chính
   ══════════════════════════════════════ */
.service-card .icon-hero {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 148px;
  z-index: 2;
}

/* Radial glow nền — thở theo pulse */
.service-card .icon-bg-glow {
  position: absolute; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,0.22) 0%, rgba(0,217,255,0.18) 50%, transparent 75%);
  filter: blur(18px);
  animation: glow-breathe 2.6s ease-in-out infinite alternate;
}
@keyframes glow-breathe {
  from { opacity: 0.45; transform: scale(0.88); }
  to   { opacity: 1;    transform: scale(1.12); }
}

/* Orbit ring 1 — xoay chậm */
.service-card .icon-orbit {
  position: absolute; width: 100px; height: 100px; border-radius: 50%;
  border: 1.5px dashed rgba(234,88,12,0.35);
  animation: orbit-spin 9s linear infinite;
}
/* Orbit ring 2 — xoay ngược, nhỏ hơn */
.service-card .icon-orbit-2 {
  width: 120px; height: 120px;
  border: 1px solid rgba(234,88,12,0.15);
  animation-duration: 14s;
  animation-direction: reverse;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

/* Icon box chính */
.service-card .icon-box {
  position: relative; z-index: 3;
  width: 68px; height: 68px; border-radius: 20px;
  background: radial-gradient(circle at 30% 30%, #00d9ff 0%, #ea580c 55%, #9a3412 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(234,88,12,0.45), 0 0 16px rgba(0,217,255,0.25), 0 0 0 0 rgba(234,88,12,0.35);
  animation: icon-float 3s ease-in-out infinite alternate,
             icon-pulse-ring 3s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card .icon-box i {
  font-size: 1.6rem; color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  transition: transform 0.35s ease;
}
@keyframes icon-float {
  from { transform: translateY(0px); }
  to   { transform: translateY(-7px); }
}
@keyframes icon-pulse-ring {
  0%, 100% { box-shadow: 0 8px 28px rgba(234,88,12,0.45), 0 0 16px rgba(0,217,255,0.25), 0 0 0 0   rgba(234,88,12,0.4); }
  50%       { box-shadow: 0 8px 28px rgba(234,88,12,0.45), 0 0 24px rgba(0,217,255,0.4),  0 0 0 14px rgba(234,88,12,0);   }
}

/* Hover icon — scale + spin nhẹ */
.service-card:hover .icon-box {
  transform: scale(1.14) rotate(-5deg);
  box-shadow: 0 14px 40px rgba(234,88,12,0.6), 0 0 30px rgba(0,217,255,0.35), 0 0 0 0 rgba(234,88,12,0);
}
.service-card:hover .icon-box i { transform: scale(1.08); }
.service-card:hover .icon-bg-glow { opacity: 1; transform: scale(1.25); }

/* Sparks — tiny dots float quanh icon */
.service-card .icon-spark {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: #ea580c; opacity: 0;
  animation: spark-float 3s ease-in-out infinite;
}
.service-card .icon-spark.s1 { top: 28%;  left: 28%;  animation-delay: 0s;    animation-duration: 2.8s; }
.service-card .icon-spark.s2 { top: 22%;  right: 28%; animation-delay: 0.7s;  animation-duration: 3.2s; background: #f97316; }
.service-card .icon-spark.s3 { bottom: 24%; left: 35%; animation-delay: 1.4s;  animation-duration: 2.5s; }
.service-card .icon-spark.s4 { bottom: 20%; right: 30%; animation-delay: 2.1s; animation-duration: 3.6s; background: #f97316; }
@keyframes spark-float {
  0%   { opacity: 0;   transform: translate(0, 0)  scale(0.5); }
  30%  { opacity: 0.9; }
  100% { opacity: 0;   transform: translate(var(--dx,8px), var(--dy,-14px)) scale(0.2); }
}
.service-card .s1 { --dx: -10px; --dy: -16px; }
.service-card .s2 { --dx:  10px; --dy: -12px; }
.service-card .s3 { --dx: -8px;  --dy:  14px; }
.service-card .s4 { --dx:  12px; --dy:  10px; }

/* ── Card body ── */
.service-card .card-body {
  display: flex; flex-direction: column; gap: 0;
  padding: 4px 18px 18px; flex: 1; position: relative; z-index: 2;
}
.service-card .category-tag {
  display: inline-flex; align-items: center; gap: 5px; align-self: flex-start;
  padding: 3px 9px; border-radius: 20px; font-size: 0.6rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.service-card .category-tag i { font-size: 0.55rem; }
.service-card .category-tag.accounting { background: rgba(234,88,12,0.15); color: #fdba74; border: 1px solid rgba(234,88,12,0.25); }
.service-card .category-tag.software   { background: rgba(0,217,255,0.12);  color: #67e8f9; border: 1px solid rgba(0,217,255,0.22); }
.service-card .category-tag.consulting { background: rgba(0,217,255,0.12);  color: #67e8f9; border: 1px solid rgba(0,217,255,0.22); }

.service-card .service-title {
  font-size: 0.88rem; font-weight: 700; color: #f0f6ff; line-height: 1.35;
  margin-bottom: 6px; transition: color 0.3s ease;
}
.service-card .service-desc {
  font-size: 0.75rem; color: #64748b; line-height: 1.55; margin-bottom: 12px;
}

/* Feature chips */
.service-card .feature-chips {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 5px;
}
.service-card .feature-chips li {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.73rem; color: #94a3b8;
  padding: 4px 9px; border-radius: 7px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.25s ease, transform 0.25s ease;
}
.service-card .feature-chips li i { font-size: 0.62rem; color: #ea580c; flex-shrink: 0; }
.service-card:hover .feature-chips li { background: rgba(234,88,12,0.06); }
.service-card:hover .feature-chips li:nth-child(1) { transform: translateX(3px); transition-delay: 0s;    }
.service-card:hover .feature-chips li:nth-child(2) { transform: translateX(3px); transition-delay: 0.05s; }
.service-card:hover .feature-chips li:nth-child(3) { transform: translateX(3px); transition-delay: 0.1s;  }

/* Card footer */
.service-card .card-footer {
  display: flex; align-items: center; gap: 8px; margin-top: auto;
}

/* ── BTN EXPLORE — radial gradient + scan + ripple ── */
.service-card .btn-explore {
  flex: 1; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border: none; border-radius: 12px; cursor: pointer;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3px;
  background: radial-gradient(ellipse at 30% 50%, #00d9ff 0%, #ea580c 45%, #9a3412 100%);
  background-size: 200% 100%; background-position: 100% 0%;
  color: #fff;
  box-shadow: 0 4px 18px rgba(234,88,12,0.4), 0 0 12px rgba(0,217,255,0.2);
  transition: background-position 0.5s ease, box-shadow 0.35s ease, transform 0.25s ease;
}
/* Scan line sweep nằm ngang */
.service-card .btn-explore::before {
  content: ''; position: absolute;
  top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0s;
}
.service-card .btn-explore:hover::before { left: 130%; transition: left 0.55s ease; }
.service-card .btn-explore:hover {
  background-position: 0% 0%;   /* slide gradient sang cyan */
  box-shadow: 0 8px 28px rgba(234,88,12,0.5), 0 0 22px rgba(0,217,255,0.35);
  transform: translateY(-2px);
}
.service-card .btn-explore i {
  font-size: 0.72rem;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.service-card .btn-explore:hover i { transform: translateX(5px) scale(1.2); }
.service-card .btn-explore:active { transform: scale(0.97); }

/* ── QUICK BUTTONS — glow morph ── */
.service-card .quick-actions { display: flex; gap: 6px; }
.service-card .quick-btn {
  position: relative; overflow: hidden;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
  color: #334155; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}
.service-card .quick-btn i { font-size: 0.68rem; position: relative; z-index: 1; }
.service-card .quick-btn::after {
  content: ''; position: absolute; inset: 0; border-radius: 10px;
  background: radial-gradient(circle at center, rgba(0,217,255,0.25) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.25s ease;
}
.service-card .quick-btn:hover { color: #00d9ff; border-color: rgba(0,217,255,0.35); transform: translateY(-2px); }
.service-card .quick-btn:hover::after { opacity: 1; }

/* Shine sweep */
.service-card .card-shine {
  position: absolute; inset: 0; border-radius: 22px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%, rgba(255,255,255,0.02) 100%);
  opacity: 0; transition: opacity 0.35s ease;
}
.service-card:hover .card-shine { opacity: 1; }

/* ══════════════════════════════════════
   nth-child 3-way: styles biến tấu
   ══════════════════════════════════════ */

/* 3n+1 — CAM × CYAN (mặc định odd) */
.service-card:nth-child(odd):hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.55), 0 0 50px rgba(234,88,12,0.22);
}
.service-card:nth-child(odd):hover .service-title { color: #fdba74; }

/* 3n — card thứ 3,6,9… — PURPLE accent */
.service-card:nth-child(3n) .card-accent {
  background: linear-gradient(90deg, #f97316, #fdba74 50%, #f97316);
  background-size: 200% 100%;
}
.service-card:nth-child(3n) .icon-bg-glow {
  background: radial-gradient(circle, rgba(249,115,22,0.25) 0%, rgba(0,217,255,0.15) 50%, transparent 75%);
}
.service-card:nth-child(3n) .icon-orbit  { border-color: rgba(249,115,22,0.4); }
.service-card:nth-child(3n) .icon-orbit-2 { border-color: rgba(249,115,22,0.18); }
.service-card:nth-child(3n) .icon-box {
  background: radial-gradient(circle at 30% 30%, #00d9ff 0%, #f97316 50%, #ea580c 100%);
  box-shadow: 0 8px 28px rgba(249,115,22,0.5), 0 0 16px rgba(0,217,255,0.25);
  animation: icon-float 3s ease-in-out infinite alternate, icon-pulse-ring-purple 3s ease-in-out infinite;
}
@keyframes icon-pulse-ring-purple {
  0%,100% { box-shadow: 0 8px 28px rgba(249,115,22,0.5), 0 0 16px rgba(0,217,255,0.2), 0 0 0 0 rgba(249,115,22,0.4); }
  50%      { box-shadow: 0 8px 28px rgba(249,115,22,0.5), 0 0 22px rgba(0,217,255,0.35), 0 0 0 14px rgba(249,115,22,0); }
}
.service-card:nth-child(3n):hover .icon-box { box-shadow: 0 14px 40px rgba(249,115,22,0.65), 0 0 30px rgba(0,217,255,0.3); }
.service-card:nth-child(3n) .icon-spark { background: #f97316; }
.service-card:nth-child(3n) .icon-spark.s2,
.service-card:nth-child(3n) .icon-spark.s4 { background: #fdba74; }
.service-card:nth-child(3n) .feature-chips li i { color: #f97316; }
.service-card:nth-child(3n):hover .feature-chips li { background: rgba(249,115,22,0.07); }
.service-card:nth-child(3n) .btn-explore {
  background: radial-gradient(ellipse at 30% 50%, #00d9ff 0%, #f97316 45%, #ea580c 100%);
  background-size: 200% 100%; background-position: 100% 0%;
  color: #fff;
  box-shadow: 0 4px 18px rgba(249,115,22,0.4), 0 0 12px rgba(0,217,255,0.2);
}
.service-card:nth-child(3n) .btn-explore:hover {
  background-position: 0% 0%;
  box-shadow: 0 8px 28px rgba(249,115,22,0.55), 0 0 22px rgba(0,217,255,0.35);
}
.service-card:nth-child(3n):hover .service-title { color: #fdba74; }
.service-card:nth-child(3n):hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.55), 0 0 50px rgba(249,115,22,0.2);
}

/* EVEN (non-3n) — CYAN */
.service-card:nth-child(even) .card-accent {
  background: linear-gradient(90deg, #00d9ff, #39e8ff 50%, #00d9ff);
  background-size: 200% 100%;
}
.service-card:nth-child(even) .icon-bg-glow {
  background: radial-gradient(circle, rgba(0,217,255,0.25) 0%, rgba(57,232,255,0.12) 55%, transparent 75%);
}
.service-card:nth-child(even) .icon-orbit  { border-color: rgba(0,217,255,0.35); }
.service-card:nth-child(even) .icon-orbit-2 { border-color: rgba(0,217,255,0.15); }
.service-card:nth-child(even) .icon-box {
  background: radial-gradient(circle at 30% 30%, #39e8ff 0%, #00d9ff 50%, #0094b3 100%);
  box-shadow: 0 8px 28px rgba(0,217,255,0.45), 0 0 0 0 rgba(0,217,255,0.35);
  animation: icon-float 3s ease-in-out infinite alternate, icon-pulse-ring-cyan 3s ease-in-out infinite;
}
@keyframes icon-pulse-ring-cyan {
  0%, 100% { box-shadow: 0 8px 28px rgba(0,217,255,0.45), 0 0 0 0   rgba(0,217,255,0.4); }
  50%       { box-shadow: 0 8px 28px rgba(0,217,255,0.45), 0 0 0 14px rgba(0,217,255,0);   }
}
.service-card:nth-child(even):hover .icon-box { box-shadow: 0 14px 40px rgba(0,217,255,0.65), 0 0 30px rgba(57,232,255,0.3); }
.service-card:nth-child(even) .icon-spark { background: #00d9ff; }
.service-card:nth-child(even) .icon-spark.s2,
.service-card:nth-child(even) .icon-spark.s4 { background: #39e8ff; }
.service-card:nth-child(even) .feature-chips li i { color: #00d9ff; }
.service-card:nth-child(even):hover .feature-chips li { background: rgba(0,217,255,0.06); }
.service-card:nth-child(even) .btn-explore {
  background: radial-gradient(ellipse at 30% 50%, #39e8ff 0%, #00d9ff 50%, #0094b3 100%);
  background-size: 200% 100%; background-position: 100% 0%;
  color: #020d1a;
  box-shadow: 0 4px 18px rgba(0,217,255,0.35), 0 0 12px rgba(57,232,255,0.2);
}
.service-card:nth-child(even) .btn-explore:hover {
  background-position: 0% 0%;
  box-shadow: 0 8px 28px rgba(0,217,255,0.6), 0 0 22px rgba(57,232,255,0.35);
}
.service-card:nth-child(even):hover .service-title { color: #67e8f9; }
.service-card:nth-child(even):hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.55), 0 0 50px rgba(0,217,255,0.18);
}

/* === MODAL STYLES === */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.9); backdrop-filter: blur(10px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn 0.3s ease;
}
.modal-container {
  background: linear-gradient(145deg, #2d3f5f, #0a1628);
  border-radius: 28px; max-width: 900px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
}
@media (max-width: 768px) { .modal-container { max-height: 95vh; border-radius: 20px; } }

.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 48px; height: 48px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  color: #ffffff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; z-index: 10;
}
.modal-close i { font-size: 1.2rem; }
.modal-close:hover { background: #ff6b6b; border-color: #ff6b6b; transform: rotate(90deg); }

.modal-header { position: relative; padding: 60px 40px; text-align: center; overflow: hidden; }
.modal-header .header-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #ea580c, #ea580c); z-index: 0;
}
.modal-header .header-circuit {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(10,22,40,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,22,40,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}
.modal-header .header-glow {
  position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  border-radius: 50%;
}
.modal-header .header-content { position: relative; z-index: 1; }
.modal-header .modal-icon {
  width: 100px; height: 100px; background: #ffffff; border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 25px; position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.modal-header .modal-icon .icon-pulse {
  position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px;
  border: 3px solid rgba(255,255,255,0.5); border-radius: 32px;
  animation: pulse-glow 2s ease-in-out infinite;
}
.modal-header .modal-icon i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ea580c, #0a1628);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.modal-header .modal-title {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  color: #0a1628; margin: 0 0 15px;
}
.modal-header .modal-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: rgba(10,22,40,0.2);
  border-radius: 20px; font-size: 0.8rem; font-weight: 600; color: #0a1628;
}
.modal-header .modal-badge i { color: #ff7f50; }

.modal-body { padding: 40px; }
@media (max-width: 768px) { .modal-body { padding: 25px; } }

.modal-section { margin-bottom: 35px; }
.modal-section:last-child { margin-bottom: 0; }
.modal-section h3 {
  font-size: 1.3rem; font-weight: 700; color: #ffffff;
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.modal-section h3 i { color: #ea580c; font-size: 1.1em; }
.modal-section p { font-size: 1.05rem; color: #cbd5e1; line-height: 1.8; }
.modal-section.value-section {
  display: flex; gap: 20px; padding: 25px;
  background: rgba(234,88,12,0.1); border-radius: 16px; border-left: 4px solid #ea580c;
}
.modal-section.value-section .section-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #ea580c, #ea580c);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.modal-section.value-section .section-icon i { font-size: 1.3rem; color: #0a1628; }
.modal-section.value-section .section-content { flex: 1; }
.modal-section.value-section .section-content h3 { margin-bottom: 10px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.feature-card {
  display: flex; align-items: flex-start; gap: 12px; padding: 18px;
  background: rgba(255,255,255,0.03); border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease;
}
.feature-card .feature-check {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #00d9ff, #00b8d9);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-card .feature-check i { font-size: 0.8rem; color: #0a1628; }
.feature-card span { font-size: 0.95rem; color: #e2e8f0; line-height: 1.5; }
.feature-card:hover { background: rgba(0,217,255,0.1); border-color: rgba(0,217,255,0.3); transform: translateX(5px); }

.chars-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.char-item {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  background: rgba(255,255,255,0.02); border-radius: 10px; transition: all 0.3s ease;
}
.char-item i { color: #00d9ff; font-size: 0.9rem; }
.char-item span { font-size: 0.95rem; color: #cbd5e1; font-weight: 500; }
.char-item:hover { background: rgba(0,217,255,0.1); transform: translateX(5px); }
.char-item:hover i { transform: rotate(90deg); }

.benefits-section .benefits-card {
  display: flex; gap: 25px; padding: 30px;
  background: linear-gradient(135deg, rgba(234,88,12,0.15), rgba(0,217,255,0.1));
  border-radius: 20px; border: 1px solid rgba(234,88,12,0.2);
}
@media (max-width: 600px) { .benefits-section .benefits-card { flex-direction: column; align-items: center; text-align: center; } }
.benefits-section .benefits-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #ea580c, #ea580c);
  border-radius: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(234,88,12,0.3);
}
.benefits-section .benefits-icon i { font-size: 2rem; color: #0a1628; }
.benefits-section .benefits-content { flex: 1; }
.benefits-section .benefits-content h3 { margin-bottom: 12px; }

.modal-footer {
  padding: 25px 40px 35px; display: flex; gap: 15px;
  justify-content: center; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.05);
}
@media (max-width: 600px) { .modal-footer { flex-direction: column; padding: 20px 25px 30px; } }

.btn-contact-pro {
  display: flex; align-items: center; gap: 8px; padding: 12px 24px;
  background: linear-gradient(135deg, #ea580c, #ea580c);
  border: none; border-radius: 10px; color: #0a1628;
  font-size: 0.92rem; font-weight: 700; cursor: pointer;
  position: relative; overflow: hidden; transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(234,88,12,0.4);
}
.btn-contact-pro .btn-shine {
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
}
.btn-contact-pro:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(234,88,12,0.5); }
.btn-contact-pro:hover .btn-shine { animation: shimmer 0.8s ease; }
.btn-contact-pro i { font-size: 1.2rem; }

.btn-quote {
  display: flex; align-items: center; gap: 8px; padding: 12px 24px;
  background: rgba(0,217,255,0.1); border: 1.5px solid #00d9ff;
  border-radius: 10px; color: #00d9ff; font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease;
}
.btn-quote:hover { background: #00d9ff; color: #0a1628; }

.btn-close-modal {
  padding: 12px 24px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  color: #94a3b8; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease;
}
.btn-close-modal:hover { background: rgba(255,255,255,0.1); color: #ffffff; }

/* === SCROLLBAR === */
.modal-container::-webkit-scrollbar { width: 8px; }
.modal-container::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
.modal-container::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #ea580c, #00d9ff); border-radius: 4px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; } }
@media (max-width: 768px) {
  .hero-section { padding-top: 100px; }
  .hero-stats { padding: 20px; }
  .stat-item .stat-number { font-size: 2rem; }
  .service-card .icon-container { width: 100px; height: 100px; }
  .service-card .icon-core { width: 60px; height: 60px; }
  .service-card .icon-core i { font-size: 1.5rem; }
  .service-card .service-title { font-size: 1.1rem; min-height: auto; }
  .service-card .features-preview li { font-size: 0.8rem; }
  .tech-stack { gap: 15px; }
  .tech-item { padding: 20px; min-width: 120px; }
  .tech-item .tech-icon { width: 55px; height: 55px; }
  .tech-item .tech-icon i { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-title .title-highlight { flex-direction: column; gap: 15px; }
  .hero-cta { width: 100%; }
  .hero-cta button { width: 100%; justify-content: center; }
  .service-card .service-number { font-size: 2rem; }
  .service-card .category-tag { font-size: 0.7rem; padding: 6px 10px; }
  .service-card .action-section { flex-direction: column; }
  .service-card .quick-actions { width: 100%; justify-content: center; }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* === customelistpage.css === */
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1280px - 6rem));
  }
}
@keyframes slideLoopMobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1120px - 4rem));
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes lineExpand {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
.customer-slider-section {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, rgb(16.7916666667, 16.7916666667, 29.7083333333) 100%);
  background-size: 200% 200%;
  animation: gradientMove 15s ease infinite;
  overflow: hidden;
}
.customer-slider-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0,217,255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding: 0 2rem;
}

.header-line {
  flex: 1;
  max-width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF6B35, #00d9ff, transparent);
  border-radius: 2px;
  animation: lineExpand 1s ease-out forwards;
}
.header-line.left {
  background: linear-gradient(90deg, transparent, #00d9ff, #FF6B35);
}
.header-line.right {
  background: linear-gradient(90deg, #FF6B35, #00d9ff, transparent);
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.section-title .title-icon {
  font-size: 1.2em;
  animation: pulse 2s ease-in-out infinite;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin: 0 0 3rem;
  padding: 0 1rem;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.slider-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  padding: 2rem 0;
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  animation: slideLoop 20s linear infinite;
}
.slider-track.paused {
  animation-play-state: paused;
}
.slider-track:hover {
  animation-play-state: paused;
}

.customer-card {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  min-height: 280px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.customer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #00d9ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.customer-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 107, 53, 0.2), 0 0 60px rgba(0,217,255, 0.1);
}
.customer-card:hover::before {
  transform: scaleX(1);
}
.customer-card:hover .card-glow {
  opacity: 1;
}
.customer-card:hover .avatar-ring {
  animation: ringPulse 1s ease-in-out infinite;
}
.customer-card:hover .card-shine {
  animation: shimmer 1.5s ease-in-out;
}
.customer-card:hover .customer-avatar {
  transform: scale(1.1) rotate(5deg);
}
.customer-card.highlighted {
  border-color: rgba(255, 107, 53, 0.3);
}
.customer-card.highlighted .customer-badge {
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.customer-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.avatar-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 3px solid transparent;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35, #00d9ff) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.avatar-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(0,217,255, 0.2));
  border-radius: 50%;
}

.customer-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.4;
  min-height: 2.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.customer-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FF6B35, #00d9ff);
  border-radius: 2px;
  margin-bottom: 1rem;
  transition: width 0.3s ease;
}
.customer-card:hover .customer-divider {
  width: 100px;
}

.customer-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.customer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #00d9ff, #39e8ff);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.customer-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.control-btn {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.control-btn svg {
  width: 24px;
  height: 24px;
}
.control-btn:hover {
  background: linear-gradient(135deg, #FF6B35, #00d9ff);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}
.control-btn:active {
  transform: scale(0.95);
}

.slider-indicators {
  display: flex;
  gap: 0.75rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}
.indicator.active {
  background: linear-gradient(135deg, #FF6B35, #00d9ff);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}
.particle.particle-0 {
  left: 74 %;
  top: 88 %;
  animation-delay: 0s;
  animation-duration: 14s;
  background: rgba(255, 107, 53, 0.3);
  width: 12px;
  height: 12px;
}
.particle.particle-1 {
  left: 73 %;
  top: 59 %;
  animation-delay: 0.5s;
  animation-duration: 11s;
  background: rgba(0,217,255, 0.3);
}
.particle.particle-2 {
  left: 20 %;
  top: 30 %;
  animation-delay: 1s;
  animation-duration: 11s;
  background: rgba(255, 107, 53, 0.3);
}
.particle.particle-3 {
  left: 16 %;
  top: 7 %;
  animation-delay: 1.5s;
  animation-duration: 10s;
  background: rgba(0,217,255, 0.3);
  width: 12px;
  height: 12px;
}
.particle.particle-4 {
  left: 71 %;
  top: 5 %;
  animation-delay: 2s;
  animation-duration: 12s;
  background: rgba(255, 107, 53, 0.3);
}
.particle.particle-5 {
  left: 97 %;
  top: 10 %;
  animation-delay: 2.5s;
  animation-duration: 13s;
  background: rgba(0,217,255, 0.3);
  width: 6px;
  height: 6px;
}
.particle.particle-6 {
  left: 6 %;
  top: 85 %;
  animation-delay: 3s;
  animation-duration: 10s;
  background: rgba(255, 107, 53, 0.3);
  width: 12px;
  height: 12px;
}
.particle.particle-7 {
  left: 27 %;
  top: 10 %;
  animation-delay: 3.5s;
  animation-duration: 9s;
  background: rgba(0,217,255, 0.3);
}
.particle.particle-8 {
  left: 25 %;
  top: 53 %;
  animation-delay: 4s;
  animation-duration: 14s;
  background: rgba(255, 107, 53, 0.3);
}
.particle.particle-9 {
  left: 4 %;
  top: 91 %;
  animation-delay: 4.5s;
  animation-duration: 10s;
  background: rgba(0,217,255, 0.3);
  width: 12px;
  height: 12px;
}
.particle.particle-10 {
  left: 65 %;
  top: 14 %;
  animation-delay: 5s;
  animation-duration: 11s;
  background: rgba(255, 107, 53, 0.3);
  width: 6px;
  height: 6px;
}
.particle.particle-11 {
  left: 59 %;
  top: 16 %;
  animation-delay: 5.5s;
  animation-duration: 16s;
  background: rgba(0,217,255, 0.3);
}
.particle.particle-12 {
  left: 18 %;
  top: 70 %;
  animation-delay: 6s;
  animation-duration: 11s;
  background: rgba(255, 107, 53, 0.3);
  width: 12px;
  height: 12px;
}
.particle.particle-13 {
  left: 47 %;
  top: 61 %;
  animation-delay: 6.5s;
  animation-duration: 12s;
  background: rgba(0,217,255, 0.3);
}
.particle.particle-14 {
  left: 55 %;
  top: 78 %;
  animation-delay: 7s;
  animation-duration: 11s;
  background: rgba(255, 107, 53, 0.3);
}

@media screen and (max-width: 1024px) {
  .customer-slider-section {
    padding: 3rem 0;
  }
  .customer-card {
    width: 280px;
    min-height: 260px;
  }
  .slider-track {
    animation-name: slideLoopMobile;
  }
  .header-line {
    max-width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .customer-slider-section {
    padding: 2.5rem 0;
  }
  .section-header {
    flex-direction: column;
    gap: 0.75rem;
  }
  .header-line {
    display: none;
  }
  .section-title {
    flex-direction: column;
    gap: 0.5rem;
  }
  .customer-card {
    width: 260px;
    min-height: 240px;
  }
  .customer-card .card-content {
    padding: 1.5rem;
  }
  .customer-avatar {
    width: 65px;
    height: 65px;
  }
  .avatar-icon {
    font-size: 2rem;
    width: 65px;
    height: 65px;
  }
  .customer-name {
    font-size: 0.95rem;
  }
  .control-btn {
    width: 44px;
    height: 44px;
  }
  .control-btn svg {
    width: 20px;
    height: 20px;
  }
  .slider-controls {
    gap: 1rem;
  }
  .indicator {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 480px) {
  .customer-slider-section {
    padding: 2rem 0;
  }
  .section-subtitle {
    margin-bottom: 2rem;
  }
  .customer-card {
    width: 240px;
    min-height: 220px;
    border-radius: 18px;
  }
  .customer-card .card-content {
    padding: 1.25rem;
  }
  .customer-avatar {
    width: 55px;
    height: 55px;
    margin-bottom: 1rem;
  }
  .avatar-icon {
    font-size: 1.75rem;
    width: 55px;
    height: 55px;
  }
  .customer-name {
    font-size: 0.9rem;
    min-height: auto;
  }
  .customer-description {
    font-size: 0.85rem;
  }
  .customer-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
  .slider-wrapper {
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  }
  .control-btn {
    width: 40px;
    height: 40px;
  }
  .control-btn svg {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 360px) {
  .customer-card {
    width: 220px;
    min-height: 200px;
  }
  .section-title {
    font-size: 1.25rem;
  }
  .slider-controls {
    gap: 0.75rem;
  }
  .slider-indicators {
    gap: 0.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .slider-track {
    animation: none;
  }
  .particle {
    animation: none;
  }
  .customer-card {
    transition: none;
  }
  .avatar-ring {
    animation: none;
  }
}




